/* ============================================================
   ETHMAN EVERGREEN — Main Stylesheet
   Color Palette: Forest Green, Tech Blue, Sand/Earth
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Primary Colors */
    --forest-green: #1B4332;
    --forest-green-light: #2D6A4F;
    --forest-green-dark: #0D2818;
    --tech-blue: #2D6A4F;
    --tech-teal: #40916C;
    --emerald: #52B788;
    --emerald-light: #74C69D;
    --mint: #95D5B2;
    --sand: #D8E2DC;
    --sand-light: #F0F4F2;
    --earth: #B7B7A4;
    --earth-dark: #6B705C;
    --cream: #FAFDF6;

    /* Accent & UI Colors */
    --accent-gold: #E6C05E;
    --accent-coral: #E07A5F;
    --accent-blue: #81B4FF;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-900: #111111;
    --gray-800: #1A1A1A;
    --gray-700: #2A2A2A;
    --gray-600: #3A3A3A;
    --gray-500: #555555;
    --gray-400: #888888;
    --gray-300: #BBBBBB;
    --gray-200: #E0E0E0;
    --gray-100: #F0F0F0;

    /* Gradients */
    --gradient-green: linear-gradient(135deg, #1B4332 0%, #2D6A4F 50%, #40916C 100%);
    --gradient-dark: linear-gradient(135deg, #0D2818 0%, #1B4332 100%);
    --gradient-accent: linear-gradient(135deg, #52B788 0%, #2D6A4F 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    --gradient-card: linear-gradient(180deg, rgba(27, 67, 50, 0.0) 0%, rgba(27, 67, 50, 0.85) 60%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);
    --shadow-glow: 0 0 40px rgba(82, 183, 136, 0.3);

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 500ms;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--duration-fast) var(--ease-smooth);
}

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

ul {
    list-style: none;
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.925rem;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(82, 183, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(82, 183, 136, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

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

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

/* --- Section Tags & Headers --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--forest-green-dark);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--emerald);
    position: relative;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-header .section-desc {
    margin: 0 auto;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.site-header.scrolled {
    background: rgba(250, 253, 246, 0.92);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
    padding: 0.6rem 0;
}

.site-header.scrolled .nav-link {
    color: var(--forest-green-dark);
}

.site-header.scrolled .logo {
    color: var(--forest-green);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--white);
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-primary {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.logo-secondary {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--emerald);
    background: rgba(82, 183, 136, 0.08);
}

.nav-chevron {
    transition: transform var(--duration-fast) var(--ease-smooth);
}

.has-mega-menu:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.2rem;
    overflow: hidden;
}

.site-header.scrolled .lang-switcher {
    background: rgba(82, 183, 136, 0.05);
    border-color: rgba(27, 67, 50, 0.2);
}

.lang-btn {
    background: none;
    border: none;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.site-header.scrolled .lang-btn {
    color: rgba(27, 67, 50, 0.5);
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.site-header.scrolled .lang-btn:hover {
    color: var(--forest-green);
}

.lang-btn.active {
    background: var(--white);
    color: var(--forest-green);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .lang-btn.active {
    background: var(--forest-green);
    color: var(--white);
}

/* Google Translate Widget overrides */
.skiptranslate.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0px !important;
}

#google_translate_element {
    display: none !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

/* google popup */
.VIpgJd-ZVi9od-aZ2wEe-wOHMyf {
    display: none !important;
}

/* RTL OVERRIDES */
html[lang="ar"],
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .logo,
html[dir="rtl"] .logo {
    direction: ltr;
    /* keep logo layout untouched */
}

html[lang="ar"] .btn svg,
html[dir="rtl"] .btn svg {
    transform: rotate(180deg);
}

.btn-header {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 95vw;
    max-width: 1200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2xl);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all var(--duration-normal) var(--ease-smooth);
    z-index: 100;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-lg);
}

.mega-menu-category {
    display: block;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.mega-menu-category:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
}

.mega-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.mega-menu-category h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: var(--space-sm);
}

.mega-menu-category ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-category li {
    font-size: 0.8rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.mega-menu-category li a {
    color: var(--gray-500);
    transition: all 0.2s ease;
    display: block;
    padding: 2px 0;
}

.mega-menu-category li a:hover {
    color: var(--emerald);
    padding-left: 6px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.site-header.scrolled .mobile-toggle span {
    background: var(--forest-green);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80') center/cover no-repeat;
    opacity: 0.35;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(13, 40, 24, 0.7) 0%,
            rgba(27, 67, 50, 0.5) 40%,
            rgba(27, 67, 50, 0.8) 70%,
            rgba(13, 40, 24, 0.95) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-5xl) var(--space-xl) var(--space-3xl);
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
    line-height: 1.05;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--emerald) 0%, var(--mint) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight {
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--emerald);
    opacity: 0.3;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--white);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald-light);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--emerald), transparent);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ============================================================
   GLOBAL BRIDGE SECTION
   ============================================================ */
.bridge-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.bridge-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.08) 0%, transparent 70%);
}

.bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.bridge-locations {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--sand-light);
    border-radius: var(--radius-md);
    flex: 1;
    transition: all var(--duration-normal) var(--ease-smooth);
}

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

.location-flag {
    font-size: 2rem;
    line-height: 1;
}

.location-info h4 {
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.location-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}

.location-connector {
    color: var(--emerald);
    flex-shrink: 0;
}

/* Globe Visual */
.globe-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.globe {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: var(--gradient-dark);
    position: relative;
    box-shadow:
        inset 0 0 60px rgba(82, 183, 136, 0.2),
        0 0 60px rgba(82, 183, 136, 0.15),
        0 0 120px rgba(82, 183, 136, 0.05);
    animation: globeFloat 6s ease-in-out infinite;
}

.globe::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-image: url('logo.png');
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    /* Subtle watermark effect inside the globe */
    z-index: 1;
}

@keyframes globeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.globe-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: hidden;
}

.globe-grid {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(82, 183, 136, 0.15) 39px, rgba(82, 183, 136, 0.15) 40px),
        repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(82, 183, 136, 0.15) 39px, rgba(82, 183, 136, 0.15) 40px);
    animation: gridScroll 20s linear infinite;
}

@keyframes gridScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-40px);
    }
}

.globe-marker {
    position: absolute;
    width: 12px;
    height: 12px;
}

.marker-bangui {
    top: 55%;
    left: 45%;
}

.marker-doha {
    top: 40%;
    right: 25%;
}

.marker-pulse {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--emerald);
    box-shadow: 0 0 20px var(--emerald);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px var(--emerald);
    }

    50% {
        transform: scale(1.5);
        box-shadow: 0 0 40px var(--emerald);
    }
}

.globe-marker::after {
    content: attr(data-label);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--emerald-light);
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.globe-arc {
    position: absolute;
    top: 35%;
    left: 30%;
    width: 40%;
    height: 25%;
    border-top: 2px dashed rgba(82, 183, 136, 0.4);
    border-radius: 50%;
    transform: rotate(-15deg);
    animation: arcPulse 3s ease-in-out infinite;
}

@keyframes arcPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions-section {
    padding: var(--space-5xl) 0;
    background: var(--sand-light);
    position: relative;
}

.solutions-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(to top, var(--cream), transparent);
}

/* Filter Bar */
.filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--gray-200);
    background: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.filter-btn:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.filter-btn.active {
    background: var(--gradient-accent);
    color: var(--white);
    border-color: transparent;
}

/* SBU Cards Grid */
.sbu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.sbu-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 480px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all var(--duration-slow) var(--ease-smooth);
}

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

.sbu-card:nth-child(4),
.sbu-card:nth-child(5) {
    grid-column: span 1;
}

.sbu-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.sbu-card:hover .sbu-card-bg {
    transform: scale(1.08);
}

.sbu-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    z-index: 1;
}

.sbu-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: var(--space-2xl);
    color: var(--white);
}

.sbu-icon {
    width: 48px;
    height: 48px;
    margin-top: auto;
    margin-bottom: var(--space-md);
    color: var(--emerald-light);
}

.sbu-icon svg {
    width: 100%;
    height: 100%;
}

.sbu-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--emerald-light);
    margin-bottom: var(--space-xs);
}

.sbu-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
}

.sbu-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.sbu-pillars {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-lg);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all var(--duration-slow) var(--ease-smooth);
}

.sbu-card:hover .sbu-pillars {
    max-height: 200px;
    opacity: 1;
}

.sbu-pillars li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding-left: var(--space-md);
    position: relative;
}

.sbu-pillars li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--emerald-light);
    font-size: 0.7rem;
}

.sbu-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-light);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.sbu-link:hover {
    gap: var(--space-md);
}

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section {
    padding: var(--space-5xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    inset: 0;
}

.impact-section .section-title {
    color: var(--white);
}

.impact-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.impact-section .section-tag {
    background: rgba(82, 183, 136, 0.15);
    border-color: rgba(82, 183, 136, 0.3);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
}

.impact-card {
    padding: var(--space-2xl);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(82, 183, 136, 0.3);
    transform: translateY(-4px);
}

.impact-icon {
    width: 48px;
    height: 48px;
    color: var(--emerald);
    margin-bottom: var(--space-lg);
}

.impact-icon svg {
    width: 100%;
    height: 100%;
}

.impact-number {
    margin-bottom: var(--space-sm);
}

.counter {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald-light);
    line-height: 1;
}

.impact-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--white);
}

.impact-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.impact-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    width: 0;
    transition: width 2s var(--ease-out);
}

/* Dashboard Preview */
.dashboard-preview {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dashboard-dot.live {
    background: #4ADE80;
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

.dashboard-badge {
    padding: 0.3rem 0.75rem;
    background: rgba(82, 183, 136, 0.15);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald-light);
}

.dashboard-body {
    padding: var(--space-xl);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: var(--space-lg);
    height: 180px;
    padding-top: var(--space-lg);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.bar-fill {
    width: 100%;
    height: 0;
    background: var(--gradient-accent);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: height 1.5s var(--ease-out);
    opacity: 0.7;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -24px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    text-align: center;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.metric {
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    text-align: center;
}

.metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-light);
    line-height: 1;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.value-item:hover {
    background: var(--sand-light);
    transform: translateX(8px);
}

.value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    color: var(--emerald);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h4 {
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Leader Card */
.about-leader {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.leader-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.leader-image {
    position: relative;
    height: 400px;
    /* Increased from 280px to showcase the portrait */
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* Ensure hat and face remain in frame */
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.4) 0%, transparent 60%);
}

.leader-info {
    padding: var(--space-xl);
}

.leader-info h3 {
    font-size: 1.25rem;
    color: var(--forest-green);
    margin-bottom: 4px;
}

.leader-title {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: var(--space-md);
}

.leader-info p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Legal Card */
.legal-card {
    padding: var(--space-xl);
    background: var(--sand-light);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--emerald);
    transition: all var(--duration-normal) var(--ease-smooth);
}

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

.legal-icon {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.legal-card h4 {
    font-size: 1rem;
    color: var(--forest-green);
    margin-bottom: var(--space-sm);
}

.legal-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
    padding: var(--space-5xl) 0;
    background: var(--sand-light);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-xl);
}

.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-featured {
    grid-row: span 2;
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-featured .news-image {
    height: 300px;
}

.news-card:not(.news-featured) .news-image {
    height: 180px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 0.3rem 0.75rem;
    background: var(--emerald);
    color: var(--white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-content {
    padding: var(--space-xl);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.news-date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.news-category {
    padding: 0.2rem 0.5rem;
    background: rgba(82, 183, 136, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--emerald);
}

.news-content h3 {
    font-size: 1.1rem;
    color: var(--forest-green-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.news-featured .news-content h3 {
    font-size: 1.35rem;
}

.news-content p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.news-link {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    transition: all var(--duration-fast) var(--ease-smooth);
}

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

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: var(--space-5xl) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--emerald);
    margin-top: 2px;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: var(--forest-green);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Contact Form */
.contact-form-wrapper {
    padding: var(--space-2xl);
    background: var(--sand-light);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--forest-green);
    margin-bottom: var(--space-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: all var(--duration-fast) var(--ease-smooth);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--forest-green-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 600px;
    height: 600px;
    background-image: url('logo.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    margin-bottom: var(--space-lg);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--emerald-light);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .mega-menu-inner {
        grid-template-columns: repeat(3, 1fr);
    }

    .sbu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-featured {
        grid-column: span 2;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--forest-green-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-normal) var(--ease-smooth);
        z-index: 1000;
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-md);
    }

    .nav-link {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        background: rgba(255, 255, 255, 0.05);
        padding: var(--space-md);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border-radius: var(--radius-md);
        margin-top: var(--space-sm);
        display: none;
    }

    .has-mega-menu.open .mega-menu {
        display: block;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .mega-menu-category h3 {
        color: var(--white);
    }

    .mega-menu-category li {
        color: rgba(255, 255, 255, 0.5);
    }

    .btn-header {
        display: none;
    }

    .lang-switcher {
        /* Keep it visible on mobile, maybe adjust padding/size if needed */
        transform: scale(0.9);
        margin-right: 10px;
    }

    .header-actions {
        gap: var(--space-xs);
    }

    .bridge-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .bridge-locations {
        flex-direction: column;
    }

    .location-connector {
        transform: rotate(90deg);
    }

    .sbu-grid {
        grid-template-columns: 1fr;
    }

    .sbu-card {
        min-height: 380px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

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

    .sbu-card {
        min-height: 340px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}