/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C3E50;
    --accent-color: #C69774;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent-color);
    color: var(--white);
}

.cta-button.primary:hover {
    background: #b08565;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

/* Split Sections */
.value-split,
.process-split,
.testimonials-split,
.cta-split {
    display: flex;
    align-items: stretch;
}

.value-split {
    min-height: 600px;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.split-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 6rem 2rem;
}

.philosophy-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.9;
}

.philosophy-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Process Section */
.process-split {
    min-height: 700px;
}

.process-content {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Pricing Section */
.services-pricing {
    padding: 6rem 2rem;
    background: var(--white);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}

.service-card.featured {
    border-color: var(--accent-color);
    border-width: 3px;
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-price {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

.service-cta {
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--accent-color);
}

/* Testimonials Section */
.testimonials-split {
    min-height: 650px;
}

.testimonials-split.reverse {
    flex-direction: row-reverse;
}

.testimonials-content {
    flex: 1;
    padding: 5rem 4rem;
    background: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonials-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonials-image {
    flex: 1;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Materials Section */
.materials-section {
    padding: 6rem 2rem;
    background: var(--white);
}

.materials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.materials-wrapper h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-color);
}

.materials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.material-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.material-item:hover {
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.material-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.material-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Split Section */
.cta-split {
    background: var(--accent-color);
    color: var(--white);
    padding: 0;
    min-height: 400px;
}

.cta-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.cta-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.1);
}

.cta-action .cta-button {
    background: var(--white);
    color: var(--accent-color);
}

.cta-action .cta-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Order Section */
.order-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.order-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.order-info {
    flex: 1;
}

.order-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.order-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.order-form-container {
    flex: 1;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    padding: 1.2rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col a {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #b08565;
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn.reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .process-split,
    .testimonials-split,
    .cta-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .testimonials-split.reverse {
        flex-direction: column;
    }

    .hero-split {
        min-height: auto;
    }

    .hero-left,
    .hero-right,
    .split-content,
    .split-image,
    .process-content,
    .process-image,
    .testimonials-content,
    .testimonials-image,
    .cta-content,
    .cta-action {
        padding: 3rem 2rem;
    }

    .hero-right,
    .split-image,
    .process-image,
    .testimonials-image {
        min-height: 400px;
    }

    .philosophy-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .order-wrapper {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .split-content h2,
    .process-content h2,
    .testimonials-content h2 {
        font-size: 2rem;
    }

    .philosophy-text h2 {
        font-size: 2.2rem;
    }

    .services-header h2,
    .materials-wrapper h2 {
        font-size: 2.2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .material-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-left {
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .split-content,
    .process-content,
    .testimonials-content {
        padding: 2rem 1.5rem;
    }

    .cta-button {
        padding: 0.9rem 2rem;
    }
}
