/* =========================================================
   QuickLink Courier SACCO Limited — Main Stylesheet
   Design System: Premium Financial Institution
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ========================================================= */

/* ── 0. CSS RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Brand Colors */
    --green-deep:    #0A4A1E;
    --green-rich:    #0D6B2E;
    --green-mid:     #1A8C3E;
    --green-bright:  #22A84C;
    --green-light:   #5CC87B;
    --green-pale:    #D6F0E0;
    --green-mist:    #EAF7EE;
    --orange-warm:   #E87722;
    --orange-light:  #F5A156;
    --orange-pale:   #FFF0E0;

    /* Neutrals */
    --white:         #FFFFFF;
    --off-white:     #F8FAF9;
    --gray-50:       #F4F6F5;
    --gray-100:      #E8EDEA;
    --gray-200:      #C8D4CB;
    --gray-300:      #9DB0A3;
    --gray-500:      #6B8070;
    --gray-700:      #3A4F43;
    --gray-900:      #1A2B21;

    /* Functional */
    --text-primary:   #1A2B21;
    --text-secondary: #3A4F43;
    --text-muted:     #6B8070;
    --text-light:     #9DB0A3;
    --border-light:   #E0EAE4;
    --border-mid:     #C0D4C8;

    /* Shadows */
    --shadow-xs:  0 1px 3px rgba(10,74,30,0.06), 0 1px 2px rgba(10,74,30,0.04);
    --shadow-sm:  0 2px 8px rgba(10,74,30,0.08), 0 1px 3px rgba(10,74,30,0.05);
    --shadow-md:  0 4px 20px rgba(10,74,30,0.10), 0 2px 8px rgba(10,74,30,0.06);
    --shadow-lg:  0 8px 40px rgba(10,74,30,0.12), 0 4px 16px rgba(10,74,30,0.08);
    --shadow-xl:  0 16px 60px rgba(10,74,30,0.14), 0 8px 24px rgba(10,74,30,0.08);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', -apple-system, sans-serif;
    --font-mono:    'DM Mono', monospace;

    /* Spacing Scale */
    --space-1:  0.25rem;
    --space-2:  0.5rem;
    --space-3:  0.75rem;
    --space-4:  1rem;
    --space-5:  1.25rem;
    --space-6:  1.5rem;
    --space-8:  2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Radii */
    --radius-sm:   6px;
    --radius-md:   12px;
    --radius-lg:   20px;
    --radius-xl:   28px;
    --radius-2xl:  40px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:  0.3s var(--ease-out);
    --transition-slow: 0.6s var(--ease-out);

    /* Layout */
    --container-max: 1200px;
    --section-py:    5rem;
}

/* ── 1. BASE ─────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── 2. TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.2;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { margin-bottom: var(--space-4); color: var(--text-secondary); }
p:last-child { margin-bottom: 0; }

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ── 3. LAYOUT HELPERS ───────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-4); } }

.section { padding: var(--section-py) 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--green-deep); color: var(--white); }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ── 4. SECTION HEADERS ──────────────────────────────── */
.section-header {
    margin-bottom: var(--space-12);
}
.section-header.centered {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: var(--space-4);
}
.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-bright);
    border-radius: 2px;
}

.section-title {
    margin-bottom: var(--space-4);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── 5. BUTTONS ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-bright);
    color: var(--white);
    border-color: var(--green-bright);
    box-shadow: 0 4px 15px rgba(34,168,76,0.35);
}
.btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34,168,76,0.40);
}

.btn-secondary {
    background: transparent;
    color: var(--green-rich);
    border-color: var(--green-rich);
}
.btn-secondary:hover {
    background: var(--green-rich);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-orange {
    background: var(--orange-warm);
    color: var(--white);
    border-color: var(--orange-warm);
    box-shadow: 0 4px 15px rgba(232,119,34,0.35);
}
.btn-orange:hover {
    background: #D06518;
    border-color: #D06518;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,119,34,0.40);
}

.btn-white-solid {
    background: var(--white);
    color: var(--green-rich);
    border-color: var(--white);
}
.btn-white-solid:hover {
    background: var(--green-pale);
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-join { background: var(--green-bright); color: var(--white); border-color: var(--green-bright); }
.btn-join:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-1px); }
.btn-app { background: transparent; color: var(--gray-700); border-color: var(--border-mid); }
.btn-app:hover { border-color: var(--green-mid); color: var(--green-mid); }

/* ── TOPBAR ───────────────────────────────────────── */
.topbar {
    background: var(--green-deep);
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    padding: 0.5rem 0;
    z-index: 1001;
    position: relative;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.topbar-item a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar-item a:hover { color: #fff; }
.topbar-item .fa-solid,
.topbar-item .fa-brands { color: var(--green-light); font-size: 0.72rem; }
.topbar-social { display: flex; gap: 0.6rem; }
.topbar-social a {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
}
.topbar-social a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.btn-topbar-login {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--green-bright);
    color: #fff !important;
    padding: 0.28rem 0.85rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: background 0.2s;
    white-space: nowrap;
}
.btn-topbar-login:hover { background: var(--green-mid); }
@media (max-width: 768px) {
    .topbar-left { display: none; }
    .topbar-inner { justify-content: flex-end; }
}
@media (max-width: 480px) { .topbar { display: none; } }

/* ── HEADER / NAVBAR ──────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(10,74,30,0.10); }

.navbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    position: relative;
}

/* ── LOGO ─────────────────────────────────────────── */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 10;
}

/* Real logo image */
.logo-img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* Text fallback mark */
.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-bright) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}
.logo-q, .logo-l {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: -0.05em;
}
.logo-l { margin-left: -2px; opacity: 0.8; }

/* Logo text */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: -0.01em;
}
.logo-type {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ── DESKTOP NAV LINKS ────────────────────────────── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
    list-style: none;
}
.nav-links > li { position: relative; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
    color: var(--green-rich);
    background: var(--green-mist);
}
.nav-chevron {
    font-size: 0.55rem;
    transition: transform 0.25s;
    opacity: 0.6;
}

/* ── DROPDOWN MENU ────────────────────────────────── */
.nav-dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(10,74,30,0.14), 0 2px 8px rgba(10,74,30,0.06);
    min-width: 230px;
    padding: 0.75rem 0.5rem 0.5rem; /* extra top padding bridges the gap */
    margin-top: 0; /* no gap — dropdown starts at 100% */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 500;
    list-style: none;
}
/* Arrow pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
}
/* Invisible bridge fills gap between link and menu so hover doesn't break */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

/* Show on hover (desktop) */
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.nav-dropdown:hover > .nav-link .nav-chevron { transform: rotate(180deg); }

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.9rem;
    font-size: 0.83rem;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.18s;
    text-decoration: none;
    font-weight: 400;
}
.dropdown-menu li a i {
    width: 16px;
    text-align: center;
    color: var(--green-bright);
    font-size: 0.8rem;
    flex-shrink: 0;
}
.dropdown-menu li a:hover {
    background: var(--green-mist);
    color: var(--green-rich);
    padding-left: 1.1rem;
}

/* ── DESKTOP CTA ──────────────────────────────────── */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
}
/* Override global .btn for nav-cta buttons */
.nav-cta .btn-app,
.nav-cta a.btn-app {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.5rem 1.1rem !important;
    border-radius: 99px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: 1.5px solid var(--border-mid) !important;
    color: var(--text-secondary) !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-shadow: none !important;
}
.nav-cta .btn-app:hover,
.nav-cta a.btn-app:hover {
    border-color: var(--green-mid) !important;
    color: var(--green-mid) !important;
    background: var(--green-mist) !important;
    transform: none !important;
}
.nav-cta .btn-join,
.nav-cta a.btn-join {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.55rem 1.3rem !important;
    border-radius: 99px !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    background: var(--green-bright) !important;
    color: #fff !important;
    border: none !important;
    transition: all 0.2s !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    box-shadow: 0 3px 12px rgba(34,168,76,0.35) !important;
}
.nav-cta .btn-join:hover,
.nav-cta a.btn-join:hover {
    background: var(--green-mid) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(34,168,76,0.40) !important;
    color: #fff !important;
}

/* ── HAMBURGER BUTTON ─────────────────────────────── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 8px;
    background: var(--green-mist);
    border: 1px solid var(--border-light);
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.2s;
    z-index: 1100;
}
.nav-toggle:hover { background: var(--green-pale); }
.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--green-deep);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BACKDROP (mobile) ────────────────────────────── */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 998;
    backdrop-filter: blur(2px);
}
.nav-backdrop.active { display: block; }

/* ── MOBILE NAV EXTRAS ────────────────────────────── */
.mobile-only-nav { display: none; }
.mobile-nav-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0.5rem 0;
}
.mobile-join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--green-bright);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 0.25rem;
}
.mobile-join-btn:hover { background: var(--green-mid); }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {

    /* Show hamburger, hide desktop items */
    .nav-toggle { display: flex; }
    .nav-cta    { display: none; }

    /* Mobile drawer */
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        background: #fff;
        border-left: 1px solid var(--border-light);
        box-shadow: -8px 0 40px rgba(10,74,30,0.12);
        padding: 80px 1rem 2rem;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.35s cubic-bezier(0.16,1,0.3,1);
        margin-left: 0;
    }
    .nav-links.open {
        right: 0;
    }

    /* Show mobile-only items */
    .mobile-only-nav { display: block; }

    /* Nav links in drawer */
    .nav-links > li { width: 100%; }
    .nav-link {
        width: 100%;
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 500;
        justify-content: space-between;
    }
    .nav-link.active {
        background: var(--green-mist);
        color: var(--green-rich);
    }

    /* Mobile dropdowns — accordion style */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        box-shadow: none;
        border: none;
        border-radius: 10px;
        background: var(--green-mist);
        padding: 0.35rem 0.5rem;
        margin: 0.25rem 0 0.25rem 1rem;
        display: none;
        min-width: unset;
    }
    .dropdown-menu::before { display: none; }
    .dropdown-menu.open { display: block; }

    .dropdown-menu li a {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    .dropdown-menu li a:hover { padding-left: 0.9rem; }

    /* Chevron rotation on open */
    .nav-dropdown.open > .nav-link .nav-chevron { transform: rotate(180deg); }
}

@media (max-width: 600px) {
    .logo-type { display: none; }
    .logo-img  { height: 46px; }
    .logo-name { font-size: 1rem; }
}

@media (max-width: 380px) {
    .logo-name { font-size: 0.9rem; }
    .logo-img  { height: 40px; }
}


/* ── 8. HERO SECTION ─────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,74,30,0.97) 0%,
        rgba(13,107,46,0.90) 40%,
        rgba(26,140,62,0.82) 75%,
        rgba(34,168,76,0.70) 100%);
    z-index: 2;
}
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(34,168,76,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232,119,34,0.10) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(92,200,123,0.08) 0%, transparent 35%);
    z-index: 1;
}
.hero-bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    z-index: 1;
}

/* Animated shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    animation: heroFloat 8s ease-in-out infinite;
    z-index: 1;
}
.hero-shape-1 {
    width: 500px; height: 500px;
    background: var(--green-light);
    top: -10%; right: -8%;
    animation-delay: 0s;
}
.hero-shape-2 {
    width: 300px; height: 300px;
    background: var(--orange-warm);
    bottom: 10%; right: 25%;
    animation-delay: 3s;
    opacity: 0.04;
}
.hero-shape-3 {
    width: 200px; height: 200px;
    background: var(--green-bright);
    top: 40%; left: -5%;
    animation-delay: 5s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-20px) scale(1.03); }
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    width: 100%;
    padding: var(--space-24) 0;
}

.hero-content { color: var(--white); }

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--green-light);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-6);
    width: fit-content;
}
.hero-label i { font-size: 0.7rem; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}
.hero-title .accent { color: var(--green-light); font-style: italic; }
.hero-title .accent-orange { color: var(--orange-light); }

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.8;
    margin-bottom: var(--space-10);
    max-width: 500px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

.hero-stats {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat {}
.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.60);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-card-stack {
    position: relative;
    width: 380px;
    height: 420px;
}
.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    color: var(--white);
    transition: var(--transition-slow);
}
.hero-card-main {
    width: 320px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
}
.hero-card-back1 {
    width: 300px;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%) rotate(-4deg);
    z-index: 2;
    background: rgba(34,168,76,0.20);
}
.hero-card-back2 {
    width: 280px;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%) rotate(3deg);
    z-index: 1;
    background: rgba(232,119,34,0.12);
}

.hcard-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-bright), var(--green-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--space-4);
}
.hcard-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-1);
    font-family: var(--font-body);
}
.hcard-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
}
.hcard-caption {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    margin-top: var(--space-2);
    font-family: var(--font-body);
}
.hcard-badges {
    display: flex;
    gap: var(--space-2);
    margin-top: var(--space-4);
}
.hcard-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.12);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-family: var(--font-body);
}
.hcard-badge.green { background: rgba(34,168,76,0.25); color: var(--green-light); }
.hcard-badge.orange { background: rgba(232,119,34,0.25); color: var(--orange-light); }

@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
}

/* ── 9. CARDS ────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--green-pale);
}

.card-img { aspect-ratio: 16/9; overflow: hidden; }
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.card:hover .card-img img { transform: scale(1.06); }

.card-body { padding: var(--space-6); }
.card-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: var(--space-3);
    background: var(--green-mist);
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    line-height: 1.3;
}
.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.card-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
    font-size: 0.82rem;
    color: var(--text-light);
}

/* Service / Feature Cards */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--green-bright), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--green-pale);
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: var(--space-5);
    transition: var(--transition);
}
.feature-icon.green  { background: var(--green-mist);  color: var(--green-rich); }
.feature-icon.orange { background: var(--orange-pale); color: var(--orange-warm); }
.feature-icon.dark   { background: var(--green-deep);  color: var(--white); }
.feature-card:hover .feature-icon.green { background: var(--green-bright); color: var(--white); }

.feature-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--text-primary);
}
.feature-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Product Cards */
.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.product-card.featured {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    border-color: transparent;
    color: var(--white);
}
.product-card.featured .product-title,
.product-card.featured .product-rate-label,
.product-card.featured .product-feature-item { color: rgba(255,255,255,0.85); }
.product-card.featured .product-label { background: rgba(255,255,255,0.15); color: var(--green-light); }
.product-card.featured .product-rate { color: var(--white); }

.product-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--orange-warm);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-icon {
    width: 60px; height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-5);
}
.product-icon.green  { background: var(--green-mist);  color: var(--green-rich); }
.product-icon.orange { background: var(--orange-pale); color: var(--orange-warm); }
.product-icon.white  { background: rgba(255,255,255,0.15); color: var(--white); }

.product-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-bright);
    background: var(--green-mist);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: var(--space-3);
}
.product-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}
.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-5);
}
.product-rate-row { margin-bottom: var(--space-5); }
.product-rate-label { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 2px; }
.product-rate {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-rich);
    line-height: 1;
}
.product-rate span { font-size: 0.9rem; font-family: var(--font-body); font-weight: 400; }

.product-features { margin-bottom: var(--space-6); }
.product-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--border-light);
}
.product-feature-item:last-child { border-bottom: none; }
.product-feature-item i { color: var(--green-bright); font-size: 0.8rem; margin-top: 3px; flex-shrink: 0; }

/* ── 10. STATS SECTION ───────────────────────────────── */
.stats-section {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item { text-align: center; }
.stat-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green-light);
    margin: 0 auto var(--space-4);
}
.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.60);
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* ── 11. WHY JOIN SECTION ────────────────────────────── */
.why-join-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: center;
}
@media (max-width: 900px) { .why-join-grid { grid-template-columns: 1fr; } }

.why-join-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.why-join-img-wrap {
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/5;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-join-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.why-join-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--green-mid);
    font-size: 0.85rem;
}
.why-join-img-placeholder i { font-size: 3rem; opacity: 0.4; }

.why-join-badge {
    position: absolute;
    bottom: var(--space-6);
    right: -var(--space-6);
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    right: calc(var(--space-4) * -1);
}
.wjb-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-rich);
    line-height: 1;
}
.wjb-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.reasons-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-6); }
.reason-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    background: var(--white);
}
.reason-item:hover {
    border-color: var(--green-pale);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}
.reason-icon {
    width: 44px; height: 44px;
    background: var(--green-mist);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--green-rich);
    flex-shrink: 0;
}
.reason-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: var(--space-1);
    color: var(--text-primary);
}
.reason-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── 12. TESTIMONIALS ────────────────────────────────── */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: var(--transition);
    position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--green-pale);
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    line-height: 1;
    font-style: normal;
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: var(--space-4); }
.testimonial-stars i { color: var(--orange-warm); font-size: 0.85rem; }
.testimonial-text {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: var(--space-6);
}
.testimonial-author { display: flex; align-items: center; gap: var(--space-3); }
.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green-rich);
    flex-shrink: 0;
    overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.author-title {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ── 13. EVENTS CARDS ────────────────────────────────── */
.event-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    gap: 0;
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.event-date-block {
    width: 80px;
    min-width: 80px;
    background: linear-gradient(180deg, var(--green-deep) 0%, var(--green-rich) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-3);
    color: var(--white);
}
.event-day {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}
.event-month {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.75;
    margin-top: 3px;
}

.event-body { padding: var(--space-5); flex: 1; }
.event-cat {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-bright);
    margin-bottom: var(--space-2);
}
.event-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}
.event-meta {
    display: flex;
    gap: var(--space-4);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}
.event-meta span { display: flex; align-items: center; gap: var(--space-1); }
.event-meta i { font-size: 0.7rem; color: var(--green-bright); }

/* ── 14. ANNOUNCEMENT / NEWS CARDS ──────────────────── */
.news-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-card.pinned { border-left: 3px solid var(--orange-warm); }

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-3);
    flex-wrap: wrap;
    gap: var(--space-2);
}
.news-cat-badge {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
}
.cat-notice { background: #FFF3CD; color: #856404; }
.cat-update { background: var(--green-mist); color: var(--green-rich); }
.cat-agm    { background: #E8D5FF; color: #6B21A8; }
.cat-news   { background: var(--orange-pale); color: var(--orange-warm); }
.cat-important { background: #FFE4E6; color: #991B1B; }

.news-date { font-size: 0.78rem; color: var(--text-light); }
.news-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.35;
    margin-bottom: var(--space-3);
}
.news-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}
.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-rich);
    transition: var(--transition);
}
.news-read-more:hover { color: var(--green-bright); gap: var(--space-2); }
.news-read-more i { font-size: 0.7rem; }

/* ── 15. GALLERY ─────────────────────────────────────── */
.gallery-grid {
    columns: 4 220px;
    gap: var(--space-4);
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: var(--space-4);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,74,30,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: var(--space-4);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-rich);
    font-size: 1rem;
}

/* Gallery filter tabs */
.filter-tabs {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}
.filter-tab {
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--border-mid);
    color: var(--text-secondary);
    background: var(--white);
    transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
    background: var(--green-bright);
    border-color: var(--green-bright);
    color: var(--white);
}

/* ── 16. FORMS ───────────────────────────────────────── */
.form-section {
    background: var(--white);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.form-header {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    padding: var(--space-8);
    color: var(--white);
}
.form-body { padding: var(--space-8); }

.form-steps {
    display: flex;
    gap: 0;
    background: var(--gray-50);
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
}
.form-step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
    flex-shrink: 0;
}
.form-step.active {
    color: var(--green-rich);
    border-bottom-color: var(--green-bright);
    background: var(--white);
}
.form-step.completed { color: var(--green-rich); }
.step-num {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-step.active .step-num { background: var(--green-bright); }
.form-step.completed .step-num { background: var(--green-rich); }

.form-panel { display: none; padding: var(--space-8) var(--space-8); }
.form-panel.active { display: block; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
}
.form-row.full { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) {
    .form-row, .form-row.triple { grid-template-columns: 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}
.form-label .required { color: #EF4444; margin-left: 2px; }

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-mid);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
}
.form-control:focus {
    border-color: var(--green-bright);
    box-shadow: 0 0 0 3px rgba(34,168,76,0.12);
}
.form-control.error { border-color: #EF4444; }
.form-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.form-error {
    font-size: 0.75rem;
    color: #EF4444;
    margin-top: 2px;
    display: none;
}

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

.form-check-group { display: flex; flex-direction: column; gap: var(--space-2); }
.form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
}
.form-check input[type="checkbox"],
.form-check input[type="radio"] {
    width: 17px; height: 17px;
    accent-color: var(--green-bright);
    flex-shrink: 0;
    margin-top: 2px;
}
.form-check-label { font-size: 0.875rem; color: var(--text-secondary); }

.upload-area {
    border: 2px dashed var(--border-mid);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
}
.upload-area:hover {
    border-color: var(--green-bright);
    background: var(--green-mist);
}
.upload-icon { font-size: 2rem; color: var(--green-mid); margin-bottom: var(--space-3); }
.upload-title { font-weight: 600; color: var(--text-primary); margin-bottom: var(--space-1); }
.upload-hint { font-size: 0.8rem; color: var(--text-muted); }

.form-nav-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-8);
    border-top: 1px solid var(--border-light);
    background: var(--gray-50);
}

/* ── 17. CONTACT PAGE ────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-10);
    align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-card {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    color: var(--white);
    position: sticky;
    top: 100px;
}
.contact-info-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
}
.contact-info-sub {
    color: rgba(255,255,255,0.70);
    font-size: 0.9rem;
    margin-bottom: var(--space-8);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-5);
}
.contact-item-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--green-light);
    flex-shrink: 0;
}
.contact-item-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.50);
    margin-bottom: 3px;
}
.contact-item-value {
    font-size: 0.9rem;
    color: var(--white);
}
.contact-item-value a { color: var(--white); }
.contact-item-value a:hover { color: var(--green-light); }

/* ── 18. TIMELINE ────────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: 60px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-bright), var(--green-pale));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-10);
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -49px;
    top: 6px;
    width: 18px; height: 18px;
    background: var(--green-bright);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--green-pale);
}
.timeline-year {
    display: inline-block;
    background: var(--green-deep);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.2rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
    letter-spacing: 0.06em;
}
.timeline-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}
.timeline-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 540px;
}

/* ── 19. PAGE HERO / BANNER ──────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    padding: var(--space-16) 0 var(--space-12);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 32px 32px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb i { font-size: 0.6rem; }
.page-hero .breadcrumb .current { color: var(--green-light); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.15;
}
.page-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.70);
    max-width: 560px;
    line-height: 1.75;
}

/* ── 20. RESOURCE CENTRE ─────────────────────────────── */
.resource-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    transition: var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-pale); transform: translateY(-2px); }
.resource-icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.resource-icon.pdf { background: #FFEEEE; color: #EF4444; }
.resource-icon.doc { background: #EEF0FF; color: #4F46E5; }
.resource-icon.form { background: var(--green-mist); color: var(--green-rich); }

.resource-info { flex: 1; min-width: 0; }
.resource-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.resource-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    gap: var(--space-3);
}
.download-btn {
    width: 38px; height: 38px;
    background: var(--green-mist);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-rich);
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}
.download-btn:hover { background: var(--green-bright); color: var(--white); }

/* ── 21. ALERT / NOTICE BANNERS ──────────────────────── */
.alert {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    margin-bottom: var(--space-4);
}
.alert-success { background: var(--green-mist); border: 1px solid var(--green-pale); color: var(--green-rich); }
.alert-warning { background: var(--orange-pale); border: 1px solid #FDDAB0; color: #9A5200; }
.alert-error   { background: #FFF0F0; border: 1px solid #FFC5C5; color: #991B1B; }
.alert i { font-size: 1rem; margin-top: 1px; }

/* ── 22. FOOTER ──────────────────────────────────────── */
.footer-cta-band {
    background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-rich) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 28px 28px;
}
.footer-cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-8);
    flex-wrap: wrap;
}
.footer-cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--white);
    margin-bottom: var(--space-2);
}
.footer-cta-text p { color: rgba(255,255,255,0.70); font-size: 0.95rem; margin: 0; }
.footer-cta-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.footer-main {
    background: var(--gray-900);
    padding: var(--space-16) 0 var(--space-8);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: var(--space-10);
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo .logo-name { color: var(--white); }
.footer-logo .logo-type { color: var(--gray-300); }
.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1rem;
    color: var(--green-light);
    margin: var(--space-4) 0 var(--space-4);
}
.footer-desc { font-size: 0.875rem; color: var(--gray-300); line-height: 1.7; margin-bottom: var(--space-4); }
.footer-reg {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: var(--space-5);
}
.footer-reg i { color: var(--green-light); }

.footer-social {
    display: flex;
    gap: var(--space-3);
}
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover {
    background: var(--green-bright);
    border-color: var(--green-bright);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--gray-300);
    transition: var(--transition);
    padding: 2px 0;
}
.footer-links a i { font-size: 0.55rem; color: var(--green-light); opacity: 0; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover i { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-6); }
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: var(--gray-300);
}
.footer-contact-list li i {
    color: var(--green-light);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}
.footer-contact-list li a { color: var(--gray-300); }
.footer-contact-list li a:hover { color: var(--white); }

.footer-app-badge p { font-size: 0.78rem; color: var(--gray-500); margin-bottom: var(--space-3); }
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    color: var(--white);
    transition: var(--transition);
}
.app-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.20); }
.app-badge i { font-size: 1.4rem; color: var(--green-light); }
.app-badge small { display: block; font-size: 0.65rem; color: var(--gray-300); line-height: 1; }
.app-badge span { line-height: 1; font-size: 0.9rem; font-weight: 600; }

.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: var(--space-5) 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-4);
    font-size: 0.8rem;
    color: var(--gray-500);
}
.footer-bottom-links { display: flex; gap: var(--space-5); }
.footer-bottom-links a { color: var(--gray-500); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── 23. MISC UTILITIES ──────────────────────────────── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: var(--radius-full);
}
.tag-green  { background: var(--green-mist);  color: var(--green-rich);  }
.tag-orange { background: var(--orange-pale); color: var(--orange-warm); }
.tag-gray   { background: var(--gray-100);    color: var(--gray-700);    }

.divider { height: 1px; background: var(--border-light); margin: var(--space-8) 0; }

.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-green   { color: var(--green-rich); }
.text-orange  { color: var(--orange-warm); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: var(--white); }
.font-display { font-family: var(--font-display); }

.mt-auto { margin-top: auto; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

/* ── 24. SCROLL ANIMATIONS ───────────────────────────── */
[data-aos] { /* AOS handles this */ }

/* Custom fade-up for hero */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 0.7s var(--ease-out) forwards;
}
.fade-up.delay-1 { animation-delay: 0.15s; }
.fade-up.delay-2 { animation-delay: 0.30s; }
.fade-up.delay-3 { animation-delay: 0.45s; }
.fade-up.delay-4 { animation-delay: 0.60s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* ── 25. FLOATING WHATSAPP BUTTON ────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 54px; height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 900;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.55);
    color: var(--white);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: calc(var(--space-6) + 66px);
    right: var(--space-6);
    width: 42px; height: 42px;
    background: var(--white);
    border: 1px solid var(--border-mid);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-rich);
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    z-index: 900;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    cursor: pointer;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-bright); border-color: var(--green-bright); color: var(--white); }

/* ── 26. MEMBERSHIP BENEFITS ─────────────────────────── */
.benefit-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition);
}
.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--green-pale);
}
.benefit-icon {
    width: 64px; height: 64px;
    background: var(--green-mist);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--green-rich);
    margin: 0 auto var(--space-4);
    transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: var(--green-bright); color: var(--white); }
.benefit-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}
.benefit-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── 27. STEPS / PROCESS ─────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-1);
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--green-bright), var(--green-pale));
    z-index: 0;
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
}
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }

.step-item { text-align: center; padding: var(--space-4); position: relative; z-index: 1; }
.step-circle {
    width: 56px; height: 56px;
    background: var(--white);
    border: 3px solid var(--green-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-rich);
    margin: 0 auto var(--space-4);
    box-shadow: 0 0 0 6px var(--green-mist);
    transition: var(--transition);
}
.step-item:hover .step-circle { background: var(--green-bright); color: var(--white); }
.step-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}
.step-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* ── 28. APP DOWNLOAD PAGE ───────────────────────────── */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: center;
}
@media (max-width: 900px) { .app-showcase { grid-template-columns: 1fr; } }

.app-phone-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}
.phone-frame {
    width: 260px;
    background: var(--green-deep);
    border-radius: 38px;
    padding: 16px;
    box-shadow: var(--shadow-xl);
    position: relative;
}
.phone-screen {
    background: var(--green-mist);
    border-radius: 26px;
    aspect-ratio: 9/19;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    padding: var(--space-4);
}
.phone-screen i { font-size: 3rem; color: var(--green-mid); display: block; margin-bottom: var(--space-3); opacity: 0.4; }
.phone-notch {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 10px;
    background: var(--green-deep);
    border-radius: 8px;
    z-index: 2;
}

/* ── 29. IMPACT / MILESTONE ──────────────────────────── */
.impact-counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}
@media (max-width: 768px) { .impact-counter-grid { grid-template-columns: repeat(2, 1fr); } }

.impact-counter-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition);
}
.impact-counter-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.impact-counter-icon {
    width: 52px; height: 52px;
    background: var(--green-mist);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--green-rich);
    margin: 0 auto var(--space-4);
}
.impact-counter-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-rich);
    line-height: 1;
    margin-bottom: var(--space-2);
}
.impact-counter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── 30. SEARCH BAR ──────────────────────────────────── */
.search-bar {
    display: flex;
    background: var(--white);
    border: 1.5px solid var(--border-mid);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition);
    max-width: 480px;
}
.search-bar:focus-within {
    border-color: var(--green-bright);
    box-shadow: 0 0 0 3px rgba(34,168,76,0.12);
}
.search-bar input {
    flex: 1;
    padding: 0.7rem 1.2rem;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: transparent;
}
.search-bar button {
    padding: 0.7rem 1.2rem;
    background: var(--green-bright);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
}
.search-bar button:hover { background: var(--green-mid); }

/* ── 31. RESPONSIVE HELPERS ──────────────────────────── */
@media (max-width: 768px) {
    :root { --section-py: 3.5rem; }
    .hide-mobile { display: none !important; }
    .text-center-mobile { text-align: center; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-actions { justify-content: center; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (min-width: 769px) { .hide-desktop { display: none !important; } }

/* ── 32. PRINT ───────────────────────────────────────── */
@media print {
    .topbar, .site-header, .site-footer, .whatsapp-float, .scroll-top { display: none !important; }
    body { color: #000; }
}