:root {
    /* Palette: Dark Forest & Olive */
    --bg-dark: #020f0b;
    --forest-deep: #061f17;
    --forest-mid: #143d2e;
    --olive: #a3c585;
    --olive-glow: #d1faa6;
    --cyan-subtle: #0e4b44;
    
    /* UI Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(163, 197, 133, 0.15);
    --text-main: #f0fdf4;
    --text-muted: #94a3b8;
    
    /* Font Families */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s ease; }
ul { list-style: none; }

/* --- AMBIENT BACKGROUND --- */
.ambient-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at 15% 50%, var(--forest-deep), var(--bg-dark));
}

.tech-grid {
    position: absolute;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    opacity: 0.4;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: drift infinite linear;
}

.orb-1 { width: 50vw; height: 50vw; background: var(--forest-mid); top: -10%; left: -10%; animation-duration: 25s; }
.orb-2 { width: 40vw; height: 40vw; background: var(--cyan-subtle); bottom: -5%; right: -5%; animation-duration: 30s; animation-direction: reverse; }
.orb-3 { width: 20vw; height: 20vw; background: rgba(163, 197, 133, 0.15); top: 40%; left: 60%; animation-duration: 20s; }

.glow-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--forest-mid), var(--olive), var(--forest-mid), transparent);
    opacity: 0.3;
    margin: 4rem 0;
}

@keyframes drift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
    100% { transform: translate(0, 0); }
}

/* --- NAVBAR SYSTEM (FIXED) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky; top: 0; z-index: 100;
    height: 80px; /* Fixed height to prevent jumping */
}

.logo-link { display: flex; align-items: center; }

.logo-img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(1.15) contrast(1.25);
    transition: filter 0.2s ease;
}

/* --- DESKTOP ELEMENTS --- */
.desktop-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a { 
    font-size: 0.9rem; font-weight: 500; color: var(--text-muted); 
    position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--olive-glow); }

.nav-actions {
    display: flex; 
    align-items: center; 
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600; font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-primary { background: var(--olive); color: var(--bg-dark); border: 1px solid var(--olive); }
.btn-primary:hover { background: var(--olive-glow); box-shadow: 0 0 20px rgba(163, 197, 133, 0.4); transform: translateY(-2px); }

.btn-outline { background: transparent; border: 1px solid var(--glass-border); color: var(--text-main); }
.btn-outline:hover { border-color: var(--olive); color: var(--olive-glow); }

.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 0.6rem 1.5rem; font-size: 0.9rem; }
.btn-ghost:hover { background: rgba(255,255,255,0.05); border-color: #fff; }

/* --- MOBILE ELEMENTS (Default Hidden) --- */
.mobile-toggle {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--olive);
    border-radius: 10px;
    transition: all 0.3s linear;
}

.mobile-menu-overlay {
    display: none; /* Hidden on Desktop */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2, 15, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000; /* Very high z-index */
    flex-direction: column;
    padding: 2rem 5%;
    transform: translateX(0);
    border-left: 1px solid var(--glass-border);
}

/* MOBILE MENU STYLING */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 1rem;
}

.mobile-logo {
    height: 60px;
    width: auto;
}

/* UX FIX: Visually Clear Close Button */
.close-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
}

.close-menu-btn:hover {
    background: rgba(255,100,100,0.2); /* Red tint on hover for "Stop" action */
    border-color: rgba(255,100,100,0.4);
}

.close-menu-btn svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.mobile-link:hover, .mobile-link:active {
    color: var(--olive);
    padding-left: 10px;
}

.mobile-link-special {
    font-size: 1.5rem;
    opacity: 0.8;
}

.mobile-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 1rem 0;
}

.mobile-cta {
    margin-top: 2rem;
    width: 100%;
    padding: 1rem;
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out forwards;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    background: rgba(163, 197, 133, 0.1);
    border: 1px solid rgba(163, 197, 133, 0.3);
    color: var(--olive-glow);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 20%, #a3c585 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto; margin-right: auto;
}

/* Cards & Grids */
.section-padding { padding: 6rem 5%; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.card:hover { border-color: rgba(163, 197, 133, 0.4); transform: translateY(-5px); background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%); }

.card-icon { width: 50px; height: 50px; background: rgba(163, 197, 133, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--olive-glow); margin-bottom: 1.5rem; }

.card h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 1rem; color: #fff; }
.card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; flex-grow: 1; }

/* Principles */
.principles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.principle-item { text-align: left; padding: 1.5rem; background: rgba(255, 255, 255, 0.02); border-left: 3px solid var(--olive); border-radius: 0 8px 8px 0; transition: 0.3s; }
.principle-item:hover { background: rgba(255, 255, 255, 0.04); padding-left: 2rem; }
.principle-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; color: #fff; }
.principle-item p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 0; }

/* Process */
.process-flow { display: flex; justify-content: space-between; margin-top: 3rem; position: relative; gap: 2rem; flex-wrap: wrap; }
.process-step { flex: 1; min-width: 200px; position: relative; z-index: 1; text-align: left; }
.step-content h4 { color: var(--olive); margin-bottom: 0.5rem; font-size: 1.1rem; position: relative; }
.step-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Mini Cards */
.mini-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); padding: 2rem 1.5rem; border-radius: 12px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; justify-content: center; height: 100%; }
.mini-card:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-3px); border-color: rgba(163, 197, 133, 0.4); }
.mini-card h4 { margin-bottom: 0.8rem; color: #fff; font-size: 1.2rem; }
.mini-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* Mission */
.mission-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }

/* CTA */
.cta-section { text-align: center; padding: 6rem 1rem; background: radial-gradient(circle at center, rgba(163, 197, 133, 0.1) 0%, transparent 60%); border-top: 1px solid var(--glass-border); margin-top: 4rem; }

/* Footer */
footer { border-top: 1px solid var(--glass-border); padding: 4rem 5% 2rem; background: rgba(2, 15, 11, 0.8); backdrop-filter: blur(10px); }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: #fff; margin-bottom: 1.5rem; }
.footer-col ul li { margin-bottom: 0.8rem; color: var(--text-muted); font-size: 0.9rem; cursor: pointer; }
.footer-col ul li:hover { color: var(--olive); }
.copyright { text-align: center; color: var(--text-muted); font-size: 0.8rem; border-top: 1px solid var(--glass-border); padding-top: 2rem; }

/* Utils */
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.04; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E"); }

.section-variant { background: radial-gradient(circle at 80% 20%, rgba(14, 75, 68, 0.15), transparent 40%); }

.expand-trigger { margin-top: auto; background: transparent; border: none; color: var(--olive); font-weight: 600; font-size: 0.9rem; cursor: pointer; text-align: left; padding: 0; display: flex; align-items: center; gap: 5px; }
.expand-trigger:hover { text-decoration: underline; }
.expand-trigger::after { content: '+'; font-size: 1.2em; }
.expand-trigger.active::after { content: '-'; }

.expand-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out, opacity 0.4s ease; opacity: 0; margin-top: 0; border-top: 1px solid transparent; }
.expand-content.open { opacity: 1; margin-top: 1rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

.guidance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 4rem; background: rgba(255, 255, 255, 0.02); padding: 3rem; border-radius: 20px; border: 1px solid var(--glass-border); }
.guide-item { display: flex; gap: 1rem; }
.guide-icon { color: var(--olive-glow); min-width: 24px; }
.guide-item h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.guide-item p { color: var(--text-muted); font-size: 0.9rem; }

.compliance-badges { display: flex; gap: 1.5rem; margin-top: 1rem; font-size: 0.8rem; color: var(--olive); border-top: 1px solid var(--glass-border); padding-top: 1rem; }
.compliance-badge { display: flex; align-items: center; gap: 6px; }
.compliance-badge::before { content: ''; display: block; width: 6px; height: 6px; background: var(--olive); border-radius: 50%; }

.stat-number { font-family: var(--font-heading); font-size: 3rem; color: var(--olive); font-weight: 700; line-height: 1; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; margin-top: 0.5rem; }

/* Animation */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Unified Icon System */
.icon-box { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: rgba(163, 197, 133, 0.15); border: 1px solid rgba(163, 197, 133, 0.3); border-radius: 12px; margin-bottom: 1.5rem; color: #ffffff; flex-shrink: 0; transition: transform 0.3s ease, background 0.3s ease; }
.icon-box svg { width: 28px; height: 28px; stroke-width: 1.75px; }
.card:hover .icon-box, .principle-item:hover .icon-box, .mini-card:hover .icon-box { transform: translateY(-3px); background: rgba(163, 197, 133, 0.25); border-color: var(--olive-glow); }

.principle-item { text-align: left; padding: 2rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); border-radius: 16px; display: flex; flex-direction: column; align-items: flex-start; transition: 0.3s; }
.principle-item:hover { border-color: rgba(163, 197, 133, 0.5); background: rgba(255, 255, 255, 0.04); transform: translateY(-5px); }

.mini-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); padding: 2.5rem 1.5rem; border-radius: 16px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; align-items: center; height: 100%; }
.mini-card:hover { border-color: rgba(163, 197, 133, 0.5); background: rgba(255, 255, 255, 0.05); transform: translateY(-5px); }

.process-step { flex: 1; min-width: 200px; text-align: left; }
.section-header-with-icon { text-align: center; margin: 0 auto 4rem auto; max-width: 800px; padding: 0 1rem; }
.principles-section-wrapper { text-align: center; }

/* Infra */
.infra-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; padding: 6rem 5%; position: relative; }
.infra-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: radial-gradient(circle at 90% 50%, rgba(163, 197, 133, 0.05), transparent 40%), linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px); background-size: 100% 100%, 40px 40px, 40px 40px; z-index: -1; pointer-events: none; }
.infra-text-content h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 1.5rem; color: #fff; }
.infra-text-content p { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; max-width: 500px; }
.infra-modules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.infra-module { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(163, 197, 133, 0.15); padding: 1.5rem; border-radius: 8px; display: flex; flex-direction: column; align-items: flex-start; transition: 0.3s; position: relative; }
.infra-module::after { content: ''; position: absolute; top: -1px; right: -1px; width: 10px; height: 10px; border-top: 2px solid var(--olive); border-right: 2px solid var(--olive); opacity: 0; transition: 0.3s; }
.infra-module:hover { background: rgba(163, 197, 133, 0.05); border-color: rgba(163, 197, 133, 0.4); transform: translateY(-3px); }
.infra-module:hover::after { opacity: 1; }
.infra-module .icon-box { width: 40px; height: 40px; padding: 8px; margin-bottom: 1rem; background: rgba(163, 197, 133, 0.1); }
.infra-module h4 { font-size: 1rem; margin-bottom: 0.5rem; color: #fff; }
.infra-module span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; }

/* About Page */
.transformation-flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; position: relative; }
.transformation-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--glass-border); padding: 2.5rem 2rem; border-radius: 16px; text-align: center; transition: 0.3s; position: relative; overflow: hidden; }
.transformation-card:hover { transform: translateY(-5px); }
.tf-problem { border-color: rgba(255, 100, 100, 0.1); }
.tf-problem:hover { border-color: rgba(255, 100, 100, 0.3); background: rgba(255, 100, 100, 0.02); }
.tf-solution { border-color: var(--olive); background: rgba(163, 197, 133, 0.03); }
.tf-solution:hover { background: rgba(163, 197, 133, 0.06); box-shadow: 0 0 20px rgba(163, 197, 133, 0.1); }
.tf-result { border-color: rgba(255, 255, 255, 0.1); }
.tf-result:hover { border-color: #fff; background: rgba(255, 255, 255, 0.04); }
.tf-icon-large { width: 64px; height: 64px; margin-bottom: 1.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.05); }

.governance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.governance-item { text-align: left; padding: 1.5rem; border-left: 1px solid var(--glass-border); background: linear-gradient(90deg, rgba(255,255,255,0.02) 0%, transparent 100%); }
.governance-item h4 { color: #fff; margin-bottom: 0.5rem; font-size: 1.1rem; }
.governance-item p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

.mission-stats { display: flex; gap: 3rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--glass-border); }
.stat-box h3 { font-family: var(--font-heading); font-size: 2.5rem; color: #fff; line-height: 1; }
.stat-box p { color: var(--olive); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.5rem; }

.mission-split-container { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; padding: 6rem 5%; min-height: 80vh; }
.mission-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; perspective: 1000px; }
.mission-module { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(163, 197, 133, 0.15); padding: 2rem; border-radius: 12px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; transition: 0.3s ease; position: relative; }
.mission-module:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-5px); border-color: rgba(163, 197, 133, 0.4); }
.mission-module::before { content: ''; position: absolute; top: 0; left: 0; width: 20px; height: 2px; background: var(--olive); opacity: 0; transition: 0.3s; }
.mission-module:hover::before { opacity: 1; }
.mission-module .icon-box { width: 44px; height: 44px; margin-bottom: 1.25rem; background: rgba(163, 197, 133, 0.1); border-color: rgba(163, 197, 133, 0.2); }
.mission-module h4 { font-size: 1.1rem; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.mission-module p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Forms */
.form-card { max-width: 700px; margin: 0 auto; background: rgba(5, 31, 23, 0.6); border: 1px solid var(--glass-border); padding: 3rem; border-radius: 16px; backdrop-filter: blur(10px); }
.form-group { margin-bottom: 1.5rem; text-align: left; }
.form-label { display: block; margin-bottom: 0.5rem; color: var(--olive); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 1rem; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 1rem; transition: 0.3s ease; }
::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--olive); background: rgba(255, 255, 255, 0.05); box-shadow: 0 0 15px rgba(163, 197, 133, 0.1); }
.errorlist { color: #ff6b6b; margin-top: 0.5rem; font-size: 0.85rem; list-style: none; }
.form-select { appearance: none; -webkit-appearance: none; width: 100%; padding: 1rem; padding-right: 3.5rem; background-color: rgba(255, 255, 255, 0.03); border: 1px solid var(--glass-border); border-radius: 8px; color: #fff; font-family: var(--font-body); font-size: 1rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a3c585' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.2rem center; background-size: 20px 20px; cursor: pointer; transition: all 0.3s ease; }
.form-select:focus { outline: none; border-color: var(--olive); background-color: rgba(255, 255, 255, 0.05); box-shadow: 0 0 15px rgba(163, 197, 133, 0.1); }
.form-select-wrapper { color-scheme: dark; }
.form-select option { background-color: var(--bg-dark); color: #fff; padding: 1rem; }

/* ============================================================
   MOBILE MEDIA QUERY (Strict Visibility Logic)
   ============================================================ */
@media (max-width: 768px) {
    
    /* 1. HIDE DESKTOP ELEMENTS */
    .desktop-nav-wrapper {
        display: none !important;
    }

    /* 2. SHOW MOBILE ELEMENTS */
    .mobile-toggle {
        display: flex;
    }

    .mobile-menu-overlay {
        display: flex;
        transform: translateX(100%); /* Start off-screen */
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu-overlay.active {
        transform: translateX(0); /* Slide in */
    }

    /* 3. ADJUSTMENTS */
    .navbar { padding: 1rem 5%; }
    .logo-img { height: 60px; }
    .hero { min-height: 90vh; padding-top: 5rem; justify-content: center; }
    .hero h1 { font-size: 2.5rem; }
    
    .infra-section { grid-template-columns: 1fr; gap: 3rem; text-align: center; padding: 4rem 5%; }
    .infra-text-content p { margin: 0 auto 2rem; }
    .infra-modules-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .infra-module { align-items: center; text-align: center; }

    .grid-3, .principles-grid, .guidance-grid, .transformation-flow, .governance-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .mission-block { grid-template-columns: 1fr; gap: 3rem; }
    .mission-split-container { grid-template-columns: 1fr; padding: 4rem 5%; min-height: auto; }
    .mission-visual-grid { grid-template-columns: 1fr; }
    .mission-stats { flex-direction: column; gap: 2rem; }

    .process-flow { flex-direction: column; position: relative; gap: 3rem; margin-top: 2rem; }
    .process-flow::before { content: ''; position: absolute; top: 0; left: 24px; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--olive) 0%, transparent 100%); opacity: 0.2; z-index: 0; }
    .process-step { display: flex; flex-direction: column; align-items: flex-start; padding-left: 4rem; position: relative; width: 100%; }
    .process-step .icon-box { position: absolute; left: 0; top: 0; margin-bottom: 0; border-color: var(--bg-dark); background: var(--bg-dark); z-index: 1; }
    .step-content { margin-top: 1rem; }

    .section-padding { padding: 4rem 5%; }
    .section-header h2 { font-size: 2rem; }
    .form-card { padding: 1.5rem; }
    
    .footer-content { flex-direction: column; gap: 2.5rem; }
    .footer-col { width: 100%; text-align: left; }
    .compliance-badges { flex-wrap: wrap; gap: 1rem; }
}