/* VARIABLES ET CONFIGURATION GLOBALE */
:root {
    /* Couleurs exactes de la capture d'écran */
    --primary: #063E26; /* Vert foncé du header et du fond */
    --primary-light: #0A5A38;
    --primary-dark: #042D1C;
    --accent: #E2FFB3; /* Vert clair des badges/boutons au hover */
    --accent-light: #F0FFD6;
    --accent-dark: #C6E696;
    --white: #ffffff;
    --dark: #121212;
    --gray: #666666;
    --gray-light: #999999;
    --gray-lighter: #f0f0f0;
    --bg-light: #F9F9F9;
    --bg-cream: #F5F5F0;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* RESET ET TYPOGRAPHIE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1400px; /* Plus large pour correspondre à la capture */
    margin: 0 auto;
    padding: 0 2rem; /* Plus d'espace sur les côtés */
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

/* TYPOGRAPHIE */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em; /* Caractéristique du style de la capture */
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 500; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 500; }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 500; }

p {
    font-size: 1.125rem; /* Plus grand pour plus de lisibilité */
    color: var(--gray);
    line-height: 1.6;
}

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

.lead { font-size: 1.125rem; line-height: 1.8; }

/* BUTTONS */
.btn { 
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.25rem; border-radius: 50px; /* Style pilule */
    font-family: 'Outfit', sans-serif; font-weight: 500; font-size: 0.9375rem;
    text-decoration: none; transition: all 0.3s ease; 
    cursor: pointer; border: none; position: relative; overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: rgba(255, 255, 255, 0.15); color: var(--white); backdrop-filter: blur(10px); }
.btn-primary:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }

.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--gray-lighter); transform: translateY(-2px); }

.btn-outline { border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); background: transparent; }
.btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }

.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1rem; }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.9; } }

.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* PAGE LOADER */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.loader-logo { width: 80px; height: auto; animation: pulse 1.5s ease-in-out infinite; }

/* HEADER */
.header { 
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000; 
    padding: 1.25rem 0; background: transparent; 
    transition: all 0.3s ease; 
}

.header.scrolled {
    background: rgba(6, 62, 38, 0.95); /* var(--primary) transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1rem 0;
}

.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { 
    display: flex; align-items: center; gap: 0.75rem; 
    font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 500; 
    color: var(--white); text-decoration: none; transition: opacity 0.3s ease; 
}
.logo:hover { opacity: 0.9; }
.logo .logo-img { height: 32px; width: auto; object-fit: contain; }

.nav-main { display: none; align-items: center; gap: 2.5rem; }
.nav-main a { 
    color: var(--white); text-decoration: none; font-size: 1.05rem; font-weight: 400;
    transition: opacity 0.25s ease; opacity: 0.9;
}
.nav-main a:hover, .nav-main a.active { opacity: 1; }

.nav-dropdown {
    display: flex; align-items: center; gap: 0.25rem; color: var(--white); 
    cursor: pointer; opacity: 0.9; transition: opacity 0.25s;
}
.nav-dropdown:hover { opacity: 1; }
.nav-dropdown a { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-actions .btn-pill { display: none; }

.btn-pill {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1.5rem; border-radius: 50px;
    background: rgba(255,255,255,0.15); color: var(--white);
    font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 400;
    text-decoration: none; transition: all 0.3s ease;
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}
.btn-pill:hover { background: rgba(255,255,255,0.25); }
.btn-pill.full-width { width: 100%; justify-content: center; }

.dot {
    display: block; width: 10px; height: 10px; 
    border-radius: 50%; background: var(--primary-light);
}

.mobile-menu-btn { 
    display: flex; flex-direction: column; gap: 5px; 
    background: transparent; border: none; padding: 0.5rem; cursor: pointer;
}
.mobile-menu-btn span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }

@media (min-width: 992px) { 
    .nav-main { display: flex; }
    .header-actions .btn-pill { display: inline-flex; }
    .mobile-menu-btn { display: none; }
}

/* HERO */
.hero { 
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    align-items: flex-end; 
    padding-bottom: 4rem;
    padding-top: 120px;
    background-color: var(--primary-dark);
    overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide { 
    position: absolute; inset: 0; background-size: cover; background-position: center; 
    opacity: 0; transition: opacity 1.2s ease-in-out; transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Dégradé repensé pour laisser voir le carrousel tout en assombrissant légèrement pour le texte */
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-end;
    color: var(--white);
}

.hero-content-left {
    color: rgba(255, 255, 255, 0.85); /* Texte grisâtre clair */
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.hero-tag .leaf-icon {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50% 0 50% 50%;
    transform: rotate(-45deg);
}

.hero-description {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 3rem;
    max-width: 550px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-link:hover {
    border-color: var(--white);
    color: var(--white);
    gap: 1rem;
}

.hero-coordinates {
    margin-top: 4rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.7;
}

.hero-title-wrapper {
    text-align: right;
}

.hero-title {
    font-size: clamp(3.5rem, 6.5vw, 6.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--white); /* Le gros titre reste bien blanc */
}

@media (max-width: 991px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title-wrapper {
        text-align: left;
    }
    .hero-coordinates {
        display: none;
    }
}

.hero-grid { display: grid; gap: 3rem; align-items: center; min-height: 100vh; padding: 8rem 0 4rem; }
@media (min-width: 992px) { .hero-grid { grid-template-columns: 1.2fr 1fr; padding: 10rem 0 6rem; } }

.hero-content { max-width: 680px; }
.hero-badge { 
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    padding: 0.5rem 1rem; border-radius: 50px; margin-bottom: 1.5rem;
    font-size: 0.875rem; color: var(--accent-lighter); border: 1px solid rgba(255,255,255,0.15);
}
.hero-badge svg { width: 16px; height: 16px; }

.hero-content h1 { 
    color: var(--white); margin-bottom: 1.5rem; 
    font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.15; font-weight: 600;
}
.hero-content h1 span { color: var(--accent-lighter); }

.hero-content p { 
    color: rgba(255,255,255,0.85); font-size: clamp(1rem, 1.5vw, 1.125rem); 
    line-height: 1.8; margin-bottom: 2rem; max-width: 540px;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-buttons .btn-white { background: var(--white); color: var(--primary); font-weight: 600; }
.hero-buttons .btn-white:hover { background: var(--bg-cream); }
.hero-buttons .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-stats { display: flex; gap: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.15); }
.hero-stat { text-align: left; }
.hero-stat .number { display: block; font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero-stat .label { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.8); margin-top: 0.5rem; }

.hero-visual { display: none; position: relative; }
@media (min-width: 992px) { .hero-visual { display: block; } }
.hero-image-main { 
    width: 100%; max-width: 480px; aspect-ratio: 4/5; object-fit: cover; 
    border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.hero-image-float { 
    position: absolute; bottom: -30px; left: -60px; width: 200px; height: 200px; 
    object-fit: cover; border-radius: 16px; border: 4px solid var(--white);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); animation: float 4s ease-in-out infinite;
}

.scroll-indicator { 
    position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%); z-index: 2; 
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem; 
    color: rgba(255,255,255,0.7); font-size: 0.8125rem; 
}
.scroll-icon { 
    width: 24px; height: 40px; border: 2px solid rgba(255,255,255,0.4); 
    border-radius: 12px; position: relative; 
}
.scroll-icon::after { 
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); 
    width: 4px; height: 8px; background: var(--white); border-radius: 2px; 
    animation: scrollBounce 1.5s infinite; 
}
@keyframes scrollBounce { 0%, 100% { opacity: 1; top: 8px; } 50% { opacity: 0.4; top: 16px; } }

/* SECTION COMMON */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-lg { padding: 8rem 0; }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-light { background: var(--bg-light); }
.section-cream { background: var(--bg-cream); }

.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header .label { 
    display: inline-block; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 1rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 600px; }
.section-header.center p { margin: 0 auto; }

@media (max-width: 768px) { .section { padding: 4rem 0; } .section-lg { padding: 5rem 0; } }

/* INTRO SECTION */
.intro-section { padding: 6rem 0; background: var(--white); }
.intro-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .intro-grid { grid-template-columns: 1fr 1fr; } }

.intro-content .label { 
    display: inline-block; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 1rem;
}
.intro-content h2 { margin-bottom: 1.5rem; }
.intro-content p { margin-bottom: 1.5rem; }

.intro-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.intro-tag { 
    padding: 0.5rem 1rem; background: var(--bg-light); border-radius: 50px; 
    font-size: 0.875rem; color: var(--gray); transition: all 0.25s ease;
}
.intro-tag:hover { background: var(--primary); color: var(--white); }

.intro-image { position: relative; }
.intro-image img { width: 100%; border-radius: 20px; }
.intro-image-badge { 
    position: absolute; bottom: -20px; right: -20px; background: var(--primary); color: var(--white);
    padding: 1.5rem; border-radius: 16px; text-align: center; box-shadow: 0 20px 40px rgba(27,67,50,0.3);
}
.intro-image-badge .number { display: block; font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 700; line-height: 1; }
.intro-image-badge .text { font-size: 0.875rem; opacity: 0.9; }

/* STATS SECTION */
.stats-section { padding: 5rem 0; background: var(--white); border-top: 1px solid var(--gray-lighter); border-bottom: 1px solid var(--gray-lighter); }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }

.stat-item { text-align: center; padding: 1.5rem; }
.stat-item .number { 
    display: block; font-family: 'Outfit', sans-serif; 
    font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 0.5rem;
}
.stat-item .label { font-size: 0.9375rem; color: var(--gray); }
.stat-item .sublabel { font-size: 0.8125rem; color: var(--gray-light); margin-top: 0.25rem; }

/* FEATURES SECTION */
.features-section { padding: 6rem 0; background: var(--bg-light); }
.features-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature-card { 
    background: var(--white); padding: 2rem; border-radius: 16px; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid transparent;
}
.feature-card:hover { 
    transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: var(--accent-lighter);
}
.feature-card .icon { 
    width: 56px; height: 56px; background: var(--bg-light); border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.feature-card:hover .icon { background: var(--primary); }
.feature-card .icon svg { width: 28px; height: 28px; color: var(--primary); transition: color 0.3s ease; }
.feature-card:hover .icon svg { color: var(--white); }
.feature-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.9375rem; line-height: 1.7; }

/* IMAGE TEXT SECTION */
.image-text-section { padding: 6rem 0; }
.image-text-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .image-text-grid { grid-template-columns: 1fr 1fr; } }
.image-text-grid.reverse { direction: rtl; }
.image-text-grid.reverse > * { direction: ltr; }

.image-text-visual { position: relative; }
.image-text-visual img { width: 100%; border-radius: 20px; }
.image-text-visual .accent-shape { 
    position: absolute; width: 120px; height: 120px; background: var(--accent-lighter); 
    border-radius: 20px; z-index: -1; opacity: 0.5;
}
.image-text-visual .accent-shape.top-left { top: -20px; left: -20px; }
.image-text-visual .accent-shape.bottom-right { bottom: -20px; right: -20px; }

.image-text-content .label { 
    display: inline-block; font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; 
    letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 1rem;
}
.image-text-content h2 { margin-bottom: 1.5rem; }
.image-text-content p { margin-bottom: 1.5rem; }
.image-text-content ul { list-style: none; margin-bottom: 2rem; }
.image-text-content ul li { 
    display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; 
    font-size: 0.9375rem; color: var(--gray);
}
.image-text-content ul li svg { width: 20px; height: 20px; color: var(--primary-light); flex-shrink: 0; margin-top: 2px; }

/* PROCESS / STEPS SECTION */
.process-section { padding: 6rem 0; background: var(--white); }
.process-steps { display: grid; gap: 2rem; }
@media (min-width: 768px) { .process-steps { grid-template-columns: repeat(3, 1fr); } }

.process-step { 
    text-align: center; padding: 2rem; position: relative;
    transition: all 0.3s ease;
}
.process-step:hover { transform: translateY(-4px); }
.process-step .step-number { 
    width: 48px; height: 48px; background: var(--primary); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    margin: 0 auto 1.5rem; font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700;
}
.process-step .step-icon { 
    width: 72px; height: 72px; background: var(--bg-light); border-radius: 20px; 
    display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}
.process-step:hover .step-icon { background: var(--primary); }
.process-step .step-icon svg { width: 32px; height: 32px; color: var(--primary); transition: color 0.3s ease; }
.process-step:hover .step-icon svg { color: var(--white); }
.process-step h4 { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9375rem; color: var(--gray); max-width: 280px; margin: 0 auto; line-height: 1.7; }

/* TEAM SECTION */
.team-section { padding: 6rem 0; background: var(--bg-light); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 992px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card { 
    background: var(--white); border-radius: 16px; overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.team-card .photo { 
    aspect-ratio: 1; overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .info { padding: 1.25rem; text-align: center; }
.team-card .info h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--dark); }
.team-card .info span { font-size: 0.875rem; color: var(--gray); }
.team-card .social { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.75rem; }
.team-card .social a { 
    width: 32px; height: 32px; background: var(--bg-light); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; color: var(--gray);
    transition: all 0.25s ease;
}
.team-card .social a:hover { background: var(--primary); color: var(--white); }
.team-card .social svg { width: 14px; height: 14px; }

/* PROGRAMS SECTION */
.programs-section { padding: 6rem 0; background: var(--white); }
.programs-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card { 
    background: var(--white); border-radius: 16px; overflow: hidden; 
    border: 1px solid var(--gray-lighter); transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.program-card:hover { 
    transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: transparent;
}
.program-card .card-img { 
    height: 220px; overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}
.program-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.program-card:hover .card-img img { transform: scale(1.05); }
.program-card .card-img .badge { 
    position: absolute; top: 1rem; left: 1rem; background: var(--white); 
    padding: 0.375rem 0.875rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; color: var(--primary);
}
.program-card .card-body { padding: 1.5rem; }
.program-card h4 { font-family: 'Outfit', sans-serif; font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--dark); }
.program-card p { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.program-card .meta { display: flex; gap: 1.25rem; margin-bottom: 1rem; }
.program-card .meta span { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--gray-light); }
.program-card .meta svg { width: 16px; height: 16px; }
.program-card .card-link { 
    display: inline-flex; align-items: center; gap: 0.5rem; 
    font-size: 0.9375rem; font-weight: 600; color: var(--primary); text-decoration: none;
    transition: gap 0.25s ease;
}
.program-card .card-link:hover { gap: 0.75rem; }
.program-card .card-link svg { width: 18px; height: 18px; }

/* PRODUCTS SECTION */
.products-section { padding: 6rem 0; background: var(--bg-light); }
.products-grid { display: grid; gap: 2rem; }
@media (min-width: 576px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { 
    background: var(--white); border-radius: 16px; overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid var(--gray-lighter);
}
.product-card:hover { 
    transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
    border-color: transparent;
}
.product-card .card-img { 
    aspect-ratio: 1; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}
.product-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .card-img img { transform: scale(1.05); }
.product-card .badge { 
    position: absolute; top: 1rem; left: 1rem; background: var(--primary-light); color: var(--white);
    padding: 0.375rem 0.875rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
}
.product-card .card-body { padding: 1.25rem; }
.product-card h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--dark); }
.product-card .category { font-size: 0.8125rem; color: var(--gray-light); margin-bottom: 0.75rem; }
.product-card .price-row { display: flex; align-items: center; justify-content: space-between; }
.product-card .price { font-size: 1.125rem; color: var(--primary); font-weight: 700; }
.product-card .cart-btn { 
    width: 40px; height: 40px; background: var(--bg-light); border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center; cursor: pointer; 
    transition: all 0.25s ease;
}
.product-card .cart-btn:hover { background: var(--primary); color: var(--white); }
.product-card .cart-btn svg { width: 18px; height: 18px; }

/* TESTIMONIAL SECTION */
.testimonial-section { padding: 6rem 0; background: var(--primary); }
.testimonial-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .testimonial-grid { grid-template-columns: 1fr 1.2fr; } }

.testimonial-content .label { color: var(--accent-lighter); margin-bottom: 1rem; }
.testimonial-content h2 { color: var(--white); margin-bottom: 1.5rem; }
.testimonial-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

.testimonial-card { 
    background: var(--white); border-radius: 20px; padding: 2.5rem; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.testimonial-card .quote { font-size: 2rem; color: var(--primary-light); margin-bottom: 1rem; }
.testimonial-card blockquote { 
    font-size: 1.125rem; line-height: 1.8; color: var(--dark); margin-bottom: 1.5rem;
    font-style: italic;
}
.testimonial-card .author { display: flex; align-items: center; gap: 1rem; }
.testimonial-card .author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial-card .author-info h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.125rem; }
.testimonial-card .author-info span { font-size: 0.875rem; color: var(--gray); }

/* FAQ SECTION */
.faq-section { padding: 6rem 0; background: var(--white); }
.faq-grid { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 992px) { .faq-grid { grid-template-columns: 1fr 1.5fr; } }

.faq-content .label { margin-bottom: 1rem; }
.faq-content h2 { margin-bottom: 1rem; }
.faq-content p { margin-bottom: 2rem; }

.faq-item { border-bottom: 1px solid var(--gray-lighter); }
.faq-question { 
    width: 100%; padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; 
    background: none; border: none; cursor: pointer; font-family: 'Outfit', sans-serif; 
    font-size: 1rem; font-weight: 600; text-align: left; color: var(--dark); transition: color 0.25s; 
}
.faq-question:hover { color: var(--primary); }
.faq-question .icon { 
    width: 32px; height: 32px; background: var(--bg-light); border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; 
}
.faq-question svg { width: 16px; height: 16px; color: var(--gray); transition: transform 0.3s; }
.faq-item.active .faq-question .icon { background: var(--primary); }
.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--white); }
.faq-answer { 
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--gray); line-height: 1.8; font-size: 0.9375rem; 
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* CTA SECTION */
.cta-section { padding: 6rem 0; background: var(--primary); text-align: center; }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* NEWSLETTER SECTION */
.newsletter-section { padding: 5rem 0; background: var(--bg-cream); }
.newsletter-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .newsletter-grid { grid-template-columns: 1fr 1fr; } }

.newsletter-content h3 { margin-bottom: 0.75rem; }
.newsletter-content p { color: var(--gray); }

.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.newsletter-form input { 
    flex: 1; min-width: 240px; padding: 1rem 1.5rem; 
    border: 2px solid var(--gray-lighter); border-radius: 8px; 
    font-family: 'Outfit', sans-serif; font-size: 1rem; outline: none; 
    transition: border-color 0.25s, box-shadow 0.25s; background: var(--white);
}
.newsletter-form input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,67,50,0.1); }
.newsletter-form .btn { white-space: nowrap; }

/* FOOTER */
.footer { padding: 5rem 0 2rem; background: var(--dark); color: var(--white); }
.footer-top { padding-bottom: 3rem; margin-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-cta { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 2rem; }
.footer-cta h3 { color: var(--white); font-size: 1.75rem; max-width: 400px; }
.footer-cta .btn { background: var(--primary-light); color: var(--white); }
.footer-cta .btn:hover { background: var(--accent-light); }

.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { color: var(--white); margin-bottom: 1.25rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.7; max-width: 300px; margin-bottom: 1.5rem; }
.footer-brand .social { display: flex; gap: 0.75rem; }
.footer-brand .social a { 
    width: 40px; height: 40px; background: rgba(255,255,255,0.08); border-radius: 10px; 
    display: flex; align-items: center; justify-content: center; color: var(--white); 
    transition: all 0.25s ease; 
}
.footer-brand .social a:hover { background: var(--primary-light); transform: translateY(-2px); }
.footer-brand .social svg { width: 18px; height: 18px; }

.footer-links h4 { 
    font-family: 'Outfit', sans-serif; font-size: 0.9375rem; font-weight: 600; 
    margin-bottom: 1.5rem; color: var(--white); 
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.875rem; }
.footer-links a { 
    color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9375rem; 
    transition: color 0.25s ease; display: inline-flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: var(--white); }
.footer-links a svg { width: 16px; height: 16px; opacity: 0; transform: translateX(-8px); transition: all 0.25s ease; }
.footer-links a:hover svg { opacity: 1; transform: translateX(0); }

.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; 
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
    color: rgba(255,255,255,0.5); font-size: 0.875rem; 
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--white); }

@media (max-width: 768px) { 
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-cta { flex-direction: column; text-align: center; }
}

/* PAGE HEADER */
.page-header { 
    background: var(--primary); padding: 10rem 0 4rem; text-align: center; color: var(--white);
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: url('/bg/pattern.svg') repeat; opacity: 0.05;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; font-size: 1.125rem; }
.page-header .breadcrumb { 
    display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem;
    font-size: 0.875rem; color: rgba(255,255,255,0.6);
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.25s; }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header .breadcrumb span { color: var(--accent-lighter); }

/* GALLERY PAGE */
.gallery-section { padding: 6rem 0; background: var(--bg-light); overflow: hidden; }

.gallery-strip-wrap { overflow: hidden; margin-bottom: 3rem; }
.gallery-strip-track { 
    display: flex; gap: 1.5rem; width: max-content; 
    animation: galleryScroll 40s linear infinite;
}
.gallery-strip-track img { 
    height: 280px; width: auto; object-fit: cover; border-radius: 16px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease;
}
.gallery-strip-track img:hover { transform: scale(1.02); }
.gallery-strip-wrap:hover .gallery-strip-track { animation-play-state: paused; }

@keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.gallery-masonry { column-count: 3; column-gap: 1.5rem; }
.gallery-masonry > div { break-inside: avoid; margin-bottom: 1.5rem; }
.gallery-masonry img { 
    width: 100%; border-radius: 16px; display: block; 
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-masonry img:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

@media (max-width: 991px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 576px) { 
    .gallery-masonry { column-count: 1; } 
    .gallery-strip-track img { height: 200px; }
}

/* DONATION PAGE */
.donation-section { padding: 6rem 0; background: var(--white); }
.donation-grid { display: grid; gap: 4rem; align-items: start; }
@media (min-width: 992px) { .donation-grid { grid-template-columns: 1fr 1.2fr; } }

.donation-info h2 { margin-bottom: 1.5rem; }
.donation-info > p { color: var(--gray); margin-bottom: 2.5rem; line-height: 1.8; }

.donation-benefits { list-style: none; margin-bottom: 2.5rem; }
.donation-benefits li { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; }
.benefit-icon { 
    width: 56px; height: 56px; background: var(--bg-light); border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon svg { width: 28px; height: 28px; color: var(--primary); }
.donation-benefits h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.375rem; }
.donation-benefits p { font-size: 0.9375rem; color: var(--gray); line-height: 1.7; }

.trust-badges { 
    display: flex; gap: 2rem; flex-wrap: wrap; padding: 2rem; 
    background: var(--bg-light); border-radius: 16px; 
}
.badge-item { text-align: center; flex: 1; min-width: 100px; }
.badge-number { display: block; font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); }
.badge-label { font-size: 0.8125rem; color: var(--gray); margin-top: 0.25rem; }

.donation-form-wrapper { 
    background: var(--white); border-radius: 20px; 
    box-shadow: 0 10px 60px rgba(0,0,0,0.1); padding: 2.5rem; 
}
.donation-form h3 { font-size: 1.5rem; margin-bottom: 2rem; text-align: center; }

.form-section { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-lighter); }
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.form-section h4 { 
    font-family: 'Outfit', sans-serif; font-size: 0.8125rem; font-weight: 600; 
    color: var(--primary-light); margin-bottom: 1.25rem; text-transform: uppercase; letter-spacing: 0.1em; 
}

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

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.9375rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select { 
    width: 100%; padding: 1rem 1.25rem; border: 2px solid var(--gray-lighter); border-radius: 10px; 
    font-family: 'Outfit', sans-serif; font-size: 1rem; transition: all 0.25s; outline: none; 
    background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
    border-color: var(--primary); box-shadow: 0 0 0 4px rgba(27,67,50,0.1); 
}
.form-group textarea { resize: vertical; min-height: 120px; }

.partner-types, .amount-options, .frequency-options { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.partner-type, .amount-option, .frequency-option { flex: 1; min-width: 100px; }
.partner-type input, .amount-option input, .frequency-option input { display: none; }

.type-card, .amount-card, .frequency-card { 
    display: flex; flex-direction: column; align-items: center; justify-content: center; 
    padding: 1.25rem; border: 2px solid var(--gray-lighter); border-radius: 12px; 
    cursor: pointer; transition: all 0.25s; text-align: center; min-height: 80px; 
}
.type-card:hover, .amount-card:hover, .frequency-card:hover { border-color: var(--primary); }
.type-icon { font-size: 1.5rem; margin-bottom: 0.375rem; }
.type-name { font-size: 0.875rem; font-weight: 600; }

.amount-card, .frequency-card { font-weight: 600; font-size: 1rem; min-height: 56px; }

.partner-type input:checked + .type-card,
.amount-option input:checked + .amount-card,
.frequency-option input:checked + .frequency-card { 
    border-color: var(--primary); background: var(--primary); color: var(--white); 
}

.checkbox-group { margin-bottom: 1.25rem; }
.checkbox-label { 
    display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; 
    font-size: 0.9375rem; color: var(--gray); line-height: 1.6; 
}
.checkbox-label input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary); }
.checkbox-label a { color: var(--primary); text-decoration: underline; }

.btn-large { width: 100%; justify-content: center; padding: 1.125rem 2rem; font-size: 1rem; }

.form-note { 
    display: flex; align-items: center; justify-content: center; gap: 0.5rem; 
    margin-top: 1.25rem; font-size: 0.875rem; color: var(--gray-light); 
}
.form-note svg { width: 18px; height: 18px; }

/* SHOP PAGE */
.shop-section { padding: 6rem 0; background: var(--bg-light); }
.shop-filters { 
    display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; 
    padding: 1.5rem; background: var(--white); border-radius: 12px;
}
.shop-filter { 
    padding: 0.625rem 1.25rem; background: var(--bg-light); border: none; border-radius: 8px;
    font-family: 'Outfit', sans-serif; font-size: 0.9375rem; font-weight: 500; color: var(--gray);
    cursor: pointer; transition: all 0.25s;
}
.shop-filter:hover, .shop-filter.active { background: var(--primary); color: var(--white); }

/* ABOUT PAGE */
.about-hero { padding: 6rem 0; background: var(--white); }
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 992px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-content .label { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.5rem; }

.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; }
.about-image-overlay { 
    position: absolute; bottom: 2rem; left: 2rem; right: 2rem;
    background: var(--white); padding: 1.5rem; border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-image-overlay h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.about-image-overlay p { font-size: 0.875rem; color: var(--gray); margin: 0; }

/* MOBILE MENU */
.mobile-menu {
    position: fixed; inset: 0; background: var(--primary-dark); z-index: 999;
    display: flex; flex-direction: column; padding: 2rem;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 3rem; }
.mobile-menu-close { 
    width: 44px; height: 44px; background: rgba(255,255,255,0.1); border: none; border-radius: 10px;
    color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-nav { flex: 1; }
.mobile-menu-nav a { 
    display: block; padding: 1rem 0; font-size: 1.5rem; font-weight: 600; color: var(--white);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color 0.25s;
}
.mobile-menu-nav a:hover { color: var(--accent-lighter); }
.mobile-menu-footer { padding-top: 2rem; }
.mobile-menu-footer .btn { width: 100%; justify-content: center; }
