/* ===== CSS Custom Properties ===== */
:root {
    --color-forest: #1a5632;
    --color-forest-dark: #134226;
    --color-forest-light: #236b40;
    --color-forest-muted: #2d7a4e;
    --color-cream: #faf8f4;
    --color-cream-dark: #f0ece4;
    --color-warm-white: #fefdfb;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-border: #e5e0d8;
    --color-border-light: #f0ece4;
    --color-white: #ffffff;
    --color-shadow: rgba(26, 86, 50, 0.08);
    --color-shadow-md: rgba(26, 86, 50, 0.12);
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px var(--color-shadow), 0 1px 2px var(--color-shadow);
    --shadow-md: 0 4px 16px var(--color-shadow), 0 2px 4px var(--color-shadow);
    --shadow-lg: 0 12px 40px var(--color-shadow-md), 0 4px 12px var(--color-shadow);
    --shadow-xl: 0 20px 60px var(--color-shadow-md), 0 8px 20px var(--color-shadow);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-forest-muted);
    background: rgba(26, 86, 50, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag--light {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
    color: var(--color-forest-dark);
}

.section-subtitle {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-forest);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(26, 86, 50, 0.25);
}

.btn--primary:hover {
    background: var(--color-forest-dark);
    box-shadow: 0 6px 20px rgba(26, 86, 50, 0.35);
    transform: translateY(-1px);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-forest);
    box-shadow: var(--shadow-md);
}

btn--light:hover {
    background: var(--color-cream);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-forest);
    line-height: 1.3;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-forest);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-forest);
}

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

.nav-link--cta {
    background: var(--color-forest);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--color-forest-dark);
    color: var(--color-white) !important;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
    
    .nav-toggle {
        display: none;
    }
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0f3d1f 0%, #1a5632 40%, #236b40 100%);
    overflow: hidden;
    padding: 120px 0 0;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(35, 107, 64, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(19, 66, 38, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    max-width: 680px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 48px;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 28px;
}

.hero-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-headline em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.hero-subheadline {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero-card {
        padding: 56px 48px;
    }
}

/* ===== Floating Stat Cards ===== */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.stat-card--1 { transform: translateY(-12px); }
.stat-card--1:hover { transform: translateY(-16px); }
.stat-card--2 { transform: translateY(0); }
.stat-card--3 { transform: translateY(-6px); }
.stat-card--3:hover { transform: translateY(-10px); }

.stat-card-number {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-white);
}

.stat-card-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

.stat-card-icon {
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        flex-direction: row;
        padding: 16px 20px;
        text-align: left;
        gap: 16px;
    }
    
    .stat-card--1, .stat-card--2, .stat-card--3 {
        transform: none;
    }
    
    .stat-card-icon {
        margin-top: 0;
        flex-shrink: 0;
    }
}

/* ===== Hero Image Strip ===== */
.hero-image-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: auto;
}

.hero-image-item {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.hero-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .hero-image-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 48px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .hero-card {
        margin-bottom: 0;
        background: rgba(255, 255, 255, 0.08);
    }
    
    .hero-stats {
        margin-bottom: 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card {
        flex-direction: row;
        padding: 16px 20px;
        text-align: left;
        gap: 14px;
        transform: none !important;
    }
    
    .stat-card-icon {
        margin-top: 0;
    }
    
    .hero-image-strip {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
        width: 42%;
        height: 70vh;
        margin: 0;
    }
    
    .hero-image-item {
        aspect-ratio: auto;
    }
}

/* ===== Services ===== */
.services {
    padding: 100px 0;
    background: var(--color-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-forest), var(--color-forest-light));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 50, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-forest);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-card-icon {
    background: var(--color-forest);
    color: var(--color-white);
}

.service-card-title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-forest-dark);
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* ===== About ===== */
.about {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-warm-white);
}

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

.about-experience-badge {
    position: absolute;
    top: -16px;
    left: -16px;
    background: var(--color-forest);
    color: var(--color-white);
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-experience-number {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.about-experience-text {
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.about-value {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
}

.about-value svg {
    color: var(--color-forest);
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

/* ===== Areas ===== */
.areas {
    padding: 100px 0;
    background: var(--color-cream);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.area-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/4;
    cursor: pointer;
    group: true;
}

.area-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.area-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 45, 25, 0.85) 0%, rgba(15, 45, 25, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: all var(--transition-base);
}

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

.area-card:hover .area-card-overlay {
    background: linear-gradient(to top, rgba(15, 45, 25, 0.9) 0%, rgba(15, 45, 25, 0.3) 60%, transparent 100%);
}

.area-card-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.area-card-detail {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 100px 0;
    background: var(--color-warm-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--color-cream);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition-base);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-quote {
    color: var(--color-forest-muted);
    opacity: 0.3;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 24px;
    font-style: italic;
}

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

.testimonial-author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest);
    border-radius: 50%;
    color: var(--color-white);
    flex-shrink: 0;
}

.testimonial-author-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
}

.testimonial-author-location {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #0f3d1f 0%, #1a5632 50%, #236b40 100%);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 50% 80% at 80% 50%, rgba(35, 107, 64, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 20%, rgba(19, 66, 38, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--color-cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 86, 50, 0.08);
    border-radius: var(--radius-sm);
    color: var(--color-forest);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.5;
}

.contact-link {
    color: var(--color-forest);
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-forest-dark);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-forest-dark);
}

.contact-form-desc {
    font-size: 15px;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-cream);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    border-color: var(--color-forest);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(26, 86, 50, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M3 4.5l3 3 3-3' stroke='%236b6b6b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-forest);
}

.form-success-title {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--color-forest-dark);
}

.form-success-text {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== Footer ===== */
.footer {
    background: #0f2b18;
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 56px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition-fast);
}

.footer-contact-link:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.footer-copyright,
.footer-legal {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Menu Overlay ===== */
.nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 32px 24px;
    gap: 24px;
    z-index: 999;
    animation: fadeInUp 0.3s ease;
}

.nav-links.mobile-open .nav-link {
    font-size: 18px;
    padding: 8px 0;
}

.nav-links.mobile-open .nav-link--cta {
    display: inline-flex;
    justify-content: center;
    max-width: 280px;
    margin-top: 8px;
}
