* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a4d;
    --primary-dark: #1e3d34;
    --secondary: #e8b86d;
    --accent: #d4896a;
    --text-dark: #2c3e3a;
    --text-light: #f8f6f3;
    --bg-light: #fdfcfb;
    --bg-cream: #f5f2ed;
    --bg-sage: #e8ede9;
    --shadow: 0 8px 32px rgba(45, 90, 77, 0.12);
    --shadow-hover: 0 12px 48px rgba(45, 90, 77, 0.18);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 252, 251, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.06);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--text-light);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Split Section */
.split-section {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
}

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

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

.split-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 77, 0.15), transparent);
}

/* Hero Specific */
.hero-tag {
    display: inline-block;
    background: var(--bg-sage);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text {
    font-size: 1.2rem;
    color: #5a6b67;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--text-light);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--bg-sage);
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-cream {
    background: var(--bg-cream);
}

.section-sage {
    background: var(--bg-sage);
}

.section-dark {
    background: var(--primary);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-dark .section-title {
    color: var(--text-light);
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b7c78;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Cards */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 32px;
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-desc {
    color: #6b7c78;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-cream);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}

.price-unit {
    font-size: 0.875rem;
    color: #8a9a96;
    font-weight: 500;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    color: var(--secondary);
}

/* Features Split */
.features-split {
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.features-visual {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.features-list {
    flex: 1;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-sage);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-text p {
    color: #6b7c78;
    font-size: 0.95rem;
}

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials-wrapper {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 420px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.author-info h4 {
    font-weight: 700;
    color: var(--text-dark);
}

.author-info span {
    font-size: 0.875rem;
    color: #8a9a96;
}

/* Process Section */
.process-flow {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    padding: 40px 28px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.process-step p {
    color: #6b7c78;
    font-size: 0.9rem;
}

/* Form Section */
.form-split {
    display: flex;
    gap: 64px;
    align-items: stretch;
}

.form-info {
    flex: 1;
    padding: 48px;
    background: var(--primary);
    border-radius: 20px;
    color: var(--text-light);
}

.form-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-info p {
    opacity: 0.9;
    margin-bottom: 32px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-list svg {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.form-container {
    flex: 1;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--bg-cream);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 80px 0 40px;
}

.footer-grid {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 280px;
}

.footer-brand .logo {
    color: var(--text-light);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    opacity: 0.7;
    max-width: 320px;
    line-height: 1.8;
}

.footer-col {
    flex: 1;
    min-width: 160px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

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

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-weight: 700;
    margin-bottom: 6px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: #6b7c78;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--bg-cream);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-reject:hover {
    border-color: var(--primary);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--secondary);
    color: var(--text-dark);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 32px rgba(232, 184, 109, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    display: none;
}

.sticky-cta.show {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

/* Page Headers */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-sage) 0%, var(--bg-cream) 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.2rem;
    color: #6b7c78;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-story {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-story-content {
    flex: 1;
}

.about-story-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-story-content p {
    color: #6b7c78;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-story-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.value-icon {
    width: 72px;
    height: 72px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.value-card p {
    color: #6b7c78;
}

/* Team Section */
.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: center;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-sage);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.team-card span {
    color: var(--secondary);
    font-weight: 500;
}

/* Contact Page */
.contact-grid {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.contact-info p {
    color: #6b7c78;
    margin-bottom: 32px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-sage);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-text h4 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-text p {
    margin: 0;
    font-size: 0.95rem;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: var(--bg-cream);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a9a96;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 48px 0 20px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: #5a6b67;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0 24px 24px;
    color: #5a6b67;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
}

.thanks-icon svg {
    width: 60px;
    height: 60px;
    color: var(--primary);
}

.thanks-content h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #6b7c78;
    margin-bottom: 40px;
}

.thanks-service {
    background: var(--bg-cream);
    padding: 24px 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: inline-block;
}

.thanks-service span {
    color: var(--primary);
    font-weight: 700;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 16px;
}

.mobile-nav a {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        min-height: auto;
    }

    .split-section.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 60px 24px;
    }

    .split-visual {
        height: 400px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .form-split {
        flex-direction: column;
    }

    .about-story {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .process-step {
        min-width: 100%;
    }

    .stats-bar {
        gap: 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .sticky-cta {
        bottom: 80px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}
