
        :root {
            --green: #7CB342;
            --green-dark: #558B2F;
            --orange: #FF9800;
            --orange-dark: #F57C00;
            --blue: #03A9F4;
            --blue-dark: #0288D1;
            --yellow: #FFD600;
            --yellow-dark: #FFC107;
            --dark: #2D3436;
            --light: #FAFAFA;
            --gray: #636E72;
            --bg-light: #FFF9F0;
            --bg-gradient: linear-gradient(135deg, #FFF9F0 0%, #E8F5E9 50%, #E3F2FD 100%);
        }

        .dark {
            --dark: #FAFAFA;
            --light: #1a1a2e;
            --gray: #B2BEC3;
            --bg-light: #16213e;
            --bg-gradient: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg-gradient);
            color: var(--dark);
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* ============ LOADER / WELCOME ============ */
        .welcome-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #7CB342 0%, #03A9F4 50%, #FF9800 100%);
            z-index: 10000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .welcome-overlay.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .welcome-mascot {
            width: 150px;
            height: 150px;
            animation: bounce 1s ease-in-out infinite;
        }

        .welcome-text {
            color: white;
            font-family: 'Nunito', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            text-align: center;
            margin-top: 30px;
            padding: 0 20px;
            max-width: 500px;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.5s forwards;
        }

        .welcome-btn {
            margin-top: 30px;
            padding: 15px 40px;
            background: white;
            color: var(--green);
            border: none;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            opacity: 0;
            animation: fadeInUp 0.8s ease 1s forwards;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .welcome-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ============ MASCOT ============ */
        .mascot-container {
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .mascot-container:hover {
            transform: scale(1.1);
        }

        .mascot {
            width: 80px;
            height: 80px;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
        }

        .mascot-bubble {
            position: absolute;
            bottom: 90px;
            left: 0;
            background: white;
            padding: 15px 20px;
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            max-width: 280px;
            font-size: 0.9rem;
            color: var(--dark);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .mascot-bubble.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mascot-bubble::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 30px;
            border: 10px solid transparent;
            border-top-color: white;
            border-bottom: 0;
        }

        .dark .mascot-bubble {
            background: #2D3436;
            color: white;
        }

        .dark .mascot-bubble::after {
            border-top-color: #2D3436;
        }

        /* ============ HEADER ============ */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 10px 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            transition: background 0.3s ease;
        }

        .dark header {
            background: rgba(26,26,46,0.95);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            height: 90px;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--dark);
            cursor: pointer;
        }

        nav {
            display: flex;
            gap: 5px;
        }

        nav a, .dropdown > span {
            padding: 10px 15px;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        nav a:hover, .dropdown:hover > span {
            background: var(--green);
            color: white;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            padding: 10px;
        }

        .dark .dropdown-menu {
            background: #2D3436;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 15px;
            color: var(--dark);
            border-radius: 8px;
        }

        .dropdown-menu a:hover {
            background: var(--green);
            color: white;
        }

        .cta-header {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: white !important;
            font-weight: 600 !important;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(255,152,0,0.4); }
            50% { box-shadow: 0 0 0 10px rgba(255,152,0,0); }
        }

        /* ============ HERO SECTION ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 120px 20px 60px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(124,179,66,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(3,169,244,0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(255,152,0,0.2) 0%, transparent 50%);
            animation: bgFloat 20s ease-in-out infinite;
        }

        @keyframes bgFloat {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
        }

        .hero h1 {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(2rem, 6vw, 4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--green), var(--blue), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.3rem);
            color: var(--gray);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 50px;
            font-family: 'Nunito', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            color: white;
            box-shadow: 0 5px 20px rgba(124,179,66,0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(124,179,66,0.5);
        }

        .btn-secondary {
            background: white;
            color: var(--dark);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .dark .btn-secondary {
            background: #2D3436;
            color: white;
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: white;
            box-shadow: 0 5px 20px rgba(255,152,0,0.4);
        }

        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255,152,0,0.5);
        }

        /* Stats */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.8);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }

        .dark .stat-item {
            background: rgba(45,52,54,0.8);
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-family: 'Nunito', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--green), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
            margin-top: 5px;
        }

        /* ============ SECTIONS ============ */
        section {
            padding: 80px 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        /* ============ ABOUT SECTION ============ */
        .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .about-card {
            background: white;
            border-radius: 24px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dark .about-card {
            background: #2D3436;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--green), var(--blue), var(--orange), var(--yellow));
        }

        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .about-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
            color: white;
        }

        .about-icon.green { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
        .about-icon.blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }
        .about-icon.orange { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
        .about-icon.yellow { background: linear-gradient(135deg, var(--yellow), var(--yellow-dark)); }

        .about-card h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .about-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* ============ ENGAGEMENTS SECTION ============ */
        .engagements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .engagement-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dark .engagement-card {
            background: #2D3436;
        }

        .engagement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .engagement-img {
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: white;
        }
        

        .engagement-img.sante { background: linear-gradient(135deg, #E91E63, #9C27B0); }
        .engagement-img.education { background: linear-gradient(135deg, var(--blue), #1976D2); }
        .engagement-img.environnement { background: linear-gradient(135deg, var(--green), #388E3C); }
        .engagement-img.femmes { background: linear-gradient(135deg, var(--orange), #E65100); }

        .engagement-content {
            padding: 25px;
        }

        .engagement-content h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .engagement-content p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ============ MAP SECTION ============ */
        .map-section {
            background: white;
            border-radius: 30px;
            padding: 60px 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            margin: 40px 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .dark .map-section {
            background: #2D3436;
        }

        .map-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 900px) {
            .map-container {
                grid-template-columns: 1fr;
            }
        }

        .map-svg {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .map-svg svg {
            width: 100%;
            height: auto;
        }

        .map-region {
            fill: #E8F5E9;
            stroke: var(--green);
            stroke-width: 2;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dark .map-region {
            fill: #1B5E20;
        }

        .map-region:hover, .map-region.active {
            fill: var(--green);
        }

        .map-point {
            fill: var(--orange);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .map-point:hover {
            fill: var(--yellow);
            transform: scale(1.3);
        }

        .map-info h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .map-legend {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--bg-light);
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .dark .legend-item {
            background: rgba(255,255,255,0.05);
        }

        .legend-item:hover {
            transform: translateX(10px);
            background: var(--green);
            color: white;
        }

        .legend-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        /* ============ PROJECTS SECTION ============ */
        .projects-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 10px 40px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .projects-slider::-webkit-scrollbar {
            height: 8px;
        }

        .projects-slider::-webkit-scrollbar-track {
            background: #E0E0E0;
            border-radius: 10px;
        }

        .projects-slider::-webkit-scrollbar-thumb {
            background: var(--green);
            border-radius: 10px;
        }

        .project-card {
            min-width: 320px;
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            scroll-snap-align: start;
            transition: all 0.3s ease;
        }

        .dark .project-card {
            background: #2D3436;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .project-img {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
        }

        .project-content {
            padding: 25px;
        }

        .project-tag {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(124,179,66,0.1);
            color: var(--green);
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .dark .project-tag {
            background: rgba(124,179,66,0.2);
        }

        .project-content h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .project-content p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-stats {
            display: flex;
            gap: 20px;
            padding-top: 15px;
            border-top: 1px solid #E0E0E0;
        }

        .dark .project-stats {
            border-top-color: #444;
        }

        .project-stat {
            text-align: center;
        }

        .project-stat-value {
            font-family: 'Nunito', sans-serif;
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--green);
        }

        .project-stat-label {
            font-size: 0.75rem;
            color: var(--gray);
        }

        /* ============ NEWS SECTION ============ */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .news-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .dark .news-card {
            background: #2D3436;
        }

        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .news-img {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(135deg, var(--orange), var(--yellow));
            color: white;
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .news-content h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.4;
        }

        .news-content p {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .news-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green);
            font-weight: 600;
            margin-top: 15px;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .news-link:hover {
            gap: 15px;
        }

        /* ============ GALLERY SECTION ============ */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            position: relative;
            background: linear-gradient(135deg, var(--green), var(--blue));
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .gallery-item i {
            font-size: 3rem;
            color: white;
            opacity: 0.8;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2rem;
            opacity: 1;
        }



        .gallery-item {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ============ CTA lightbox ============ */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 4000;
}

.lightbox.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    padding: 10px;
}

.lightbox-close {
    top: 20px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


        /* ============ CTA SECTION ============ */
        .cta-section {
            background: linear-gradient(135deg, var(--green), var(--blue));
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            color: white;
            margin: 40px 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: ctaFloat 15s ease-in-out infinite;
        }

        @keyframes ctaFloat {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-20%, 20%); }
        }

        .cta-section h2 {
            font-family: 'Nunito', sans-serif;
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
        }

        .cta-section p {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
            position: relative;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
        }

        .cta-buttons .btn {
            background: white;
            color: var(--green);
        }

        .cta-buttons .btn:hover {
            background: var(--yellow);
            color: var(--dark);
        }

        /* ============ CONTACT SECTION ============ */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 900px) {
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--blue));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .contact-text h4 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact-text p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .contact-form {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
        }

        .dark .contact-form {
            background: #2D3436;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E0E0E0;
            border-radius: 12px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            transition: border-color 0.3s ease;
            background: var(--bg-light);
            color: var(--dark);
        }

        .dark .form-group input,
        .dark .form-group textarea,
        .dark .form-group select {
            border-color: #444;
            background: rgba(255,255,255,0.05);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--green);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        @media (max-width: 600px) {
            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* ============ FOOTER ============ */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 20px 30px;
            margin-top: 80px;
        }

        .dark footer {
            background: #0f0f1a;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-brand {
            max-width: 300px;
        }

        .footer-brand img {
            height: 60px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--green);
            transform: translateY(-3px);
        }

        .footer-links h4 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--green);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 30px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.85rem;
        }

        /* ============ MODALS ============ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.show {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            background: white;
            border-radius: 24px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(50px);
            transition: transform 0.3s ease;
        }

        .dark .modal {
            background: #2D3436;
        }

        .modal-overlay.show .modal {
            transform: translateY(0);
        }

        .modal-header {
            padding: 25px 30px;
            border-bottom: 1px solid #E0E0E0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .dark .modal-header {
            border-bottom-color: #444;
        }

        .modal-header h3 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .modal-close {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #F5F5F5;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--gray);
            transition: all 0.3s ease;
        }

        .dark .modal-close {
            background: rgba(255,255,255,0.1);
        }

        .modal-close:hover {
            background: var(--green);
            color: white;
        }

        .modal-body {
            padding: 30px;
        }

        /* ============ CHATBOT ============ */
        .chatbot-toggle {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue), var(--green));
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(3,169,244,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            z-index: 998;
            transition: all 0.3s ease;
        }

        .chatbot-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(3,169,244,0.5);
        }

        .chatbot-container {
            position: fixed;
            bottom: 100px;
            right: 20px;
            width: 380px;
            max-width: calc(100vw - 40px);
            height: 500px;
            max-height: calc(100vh - 150px);
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
            z-index: 999;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.95);
            transition: all 0.3s ease;
        }

        .dark .chatbot-container {
            background: #2D3436;
        }

        .chatbot-container.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .chatbot-header {
            padding: 20px;
            background: linear-gradient(135deg, var(--blue), var(--green));
            color: white;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .chatbot-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
        }

        .chatbot-info h4 {
            font-family: 'Nunito', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
        }

        .chatbot-info p {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .chatbot-messages {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .chat-message {
            max-width: 85%;
            padding: 12px 18px;
            border-radius: 18px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .chat-message.bot {
            background: #F5F5F5;
            align-self: flex-start;
            border-bottom-left-radius: 5px;
        }

        .dark .chat-message.bot {
            background: rgba(255,255,255,0.1);
        }

        .chat-message.user {
            background: linear-gradient(135deg, var(--green), var(--blue));
            color: white;
            align-self: flex-end;
            border-bottom-right-radius: 5px;
        }

        .chat-message.loading {
            display: flex;
            gap: 5px;
            padding: 15px 20px;
        }

        .chat-message.loading span {
            width: 8px;
            height: 8px;
            background: var(--gray);
            border-radius: 50%;
            animation: chatLoading 1.4s ease-in-out infinite;
        }

        .chat-message.loading span:nth-child(2) { animation-delay: 0.2s; }
        .chat-message.loading span:nth-child(3) { animation-delay: 0.4s; }

        @keyframes chatLoading {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .chatbot-input {
            padding: 15px 20px;
            border-top: 1px solid #E0E0E0;
            display: flex;
            gap: 10px;
        }

        .dark .chatbot-input {
            border-top-color: #444;
        }

        .chatbot-input input {
            flex: 1;
            padding: 12px 18px;
            border: 2px solid #E0E0E0;
            border-radius: 25px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            background: var(--bg-light);
            color: var(--dark);
        }

        .dark .chatbot-input input {
            border-color: #444;
            background: rgba(255,255,255,0.05);
        }

        .chatbot-input input:focus {
            outline: none;
            border-color: var(--green);
        }

        .chatbot-input button {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--green), var(--blue));
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .chatbot-input button:hover {
            transform: scale(1.1);
        }

        /* ============ MOBILE NAV ============ */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 1001;
            padding: 80px 30px 30px;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
        }

        .dark .mobile-nav {
            background: var(--light);
        }

        .mobile-nav.show {
            transform: translateX(0);
        }

        .mobile-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #F5F5F5;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .dark .mobile-nav-close {
            background: rgba(255,255,255,0.1);
        }

        .mobile-nav a {
            display: block;
            padding: 15px 0;
            color: var(--dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid #E0E0E0;
        }

        .dark .mobile-nav a {
            border-bottom-color: #444;
        }

        .mobile-nav .mobile-dropdown-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            font-weight: 500;
            font-size: 1.1rem;
            border-bottom: 1px solid #E0E0E0;
        }

        .mobile-dropdown-content {
            display: none;
            padding-left: 20px;
        }

        .mobile-dropdown-content.show {
            display: block;
        }

        .mobile-dropdown-content a {
            font-size: 1rem;
            color: var(--gray);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1100px) {
            nav {
                display: none;
            }
            .nav-toggle {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 20px 40px;
            }
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            section {
                padding: 60px 20px;
            }
            .map-section, .cta-section {
                padding: 40px 20px;
                margin: 20px 10px;
                border-radius: 20px;
            }
            .contact-form {
                padding: 25px;
            }
            .mascot-container {
                bottom: 10px;
                left: 10px;
            }
            .mascot {
                width: 60px;
                height: 60px;
            }
            .mascot-bubble {
                max-width: 220px;
                font-size: 0.8rem;
            }
            .chatbot-toggle {
                bottom: 10px;
                right: 10px;
                width: 50px;
                height: 50px;
            }
            .chatbot-container {
                bottom: 70px;
                right: 10px;
                left: 10px;
                width: auto;
            }
        }

        /* Toast notifications */
        .toast {
            position: fixed;
            bottom: 100px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: var(--dark);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 0.95rem;
            z-index: 3000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .dark .toast {
            background: white;
            color: var(--light);
        }

        .toast.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .toast.success {
            background: var(--green);
        }

        .toast.error {
            background: #E53935;
        }
  