       /* ============================================================
                   GLOBAL RESET & VARIABLES (mirroring index)
                   ============================================================ */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0f2b5c;
            --primary-blue-dark: #091b3d;
            --accent-gold: #dfb76c;
            --accent-gold-dark: #c9a55a;
            --dark-bg: #0b132b;
            --slate-dark: #0f172a;
            --slate-mid: #1e293b;
            --light-bg: #f8fafc;
            --pure-white: #ffffff;
            --text-dark: #1e293b;
            --text-muted: #94a3b8;
            --text-light: #f1f5f9;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --container-max: 1200px;
            --card-radius: 6px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-dark);
            background-color: var(--light-bg);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* ============================================================
                   TYPOGRAPHY (mirroring index)
                   ============================================================ */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.15;
            letter-spacing: -0.02em;
        }
        h2 {
            font-size: 2.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.25;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
        }
        h4 {
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.4;
        }
        h5 {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        h6 {
            font-size: 0.75rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }

        p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-dark);
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.75rem;
            }
            h3 {
                font-size: 1.25rem;
            }
            h4 {
                font-size: 1.1rem;
            }
        }

        /* ============================================================
                   BUTTONS (mirroring index)
                   ============================================================ */
        .btn-primary {
            display: inline-block;
            background-color: var(--accent-gold);
            color: var(--primary-blue);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 1rem 2.2rem;
            border-radius: var(--card-radius);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(223, 183, 108, 0.3);
            text-align: center;
        }

        .btn-primary:hover {
            background-color: var(--accent-gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(223, 183, 108, 0.4);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--pure-white);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 1rem 2.2rem;
            border-radius: var(--card-radius);
            border: 2px solid rgba(255, 255, 255, 0.25);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-secondary:hover {
            border-color: var(--pure-white);
            background: rgba(255, 255, 255, 0.06);
            transform: translateY(-2px);
        }

        .btn-gold-outline {
            display: inline-block;
            background: transparent;
            color: var(--accent-gold);
            font-family: var(--font-body);
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 0.9rem 2rem;
            border-radius: var(--card-radius);
            border: 2px solid var(--accent-gold);
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }

        .btn-gold-outline:hover {
            background: var(--accent-gold);
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        /* ============================================================
                   SECTION HEADERS
                   ============================================================ */
        .section-header {
            text-align: center;
            max-width: 720px;
            margin: 0 auto 3.5rem auto;
        }

        .section-header .badge {
            display: inline-block;
            background: rgba(223, 183, 108, 0.12);
            color: var(--accent-gold);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            border: 1px solid rgba(223, 183, 108, 0.2);
            margin-bottom: 1rem;
        }

        .section-header h2 {
            margin-bottom: 1rem;
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        /* ============================================================
                   NAVBAR – GLOBAL (mirroring index)
                   ============================================================ */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background: rgba(15, 43, 92, 0.92);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 2px solid var(--accent-gold);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
            transition: var(--transition);
        }

        .nav-container {
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0.7rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo a {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 1.6rem;
            color: var(--pure-white);
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .logo .gold-text {
            color: var(--accent-gold);
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #e2e8f0;
            font-weight: 600;
            font-size: 0.92rem;
            padding: 0.4rem 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--accent-gold);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .emergency-cta {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(223, 183, 108, 0.2);
            padding: 0.45rem 1.2rem 0.45rem 0.8rem;
            border-radius: var(--card-radius);
            transition: var(--transition);
        }

        .emergency-cta:hover {
            border-color: var(--accent-gold);
            background: rgba(223, 183, 108, 0.08);
            transform: translateY(-1px);
        }

        .cta-pulse {
            width: 10px;
            height: 10px;
            background: #22c55e;
            border-radius: 50%;
            position: relative;
            flex-shrink: 0;
        }

        .cta-pulse::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: #22c55e;
            animation: pulse-dot 2s infinite ease-in-out;
        }

        @keyframes pulse-dot {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(2.8);
                opacity: 0;
            }
        }

        .cta-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .cta-label {
            font-size: 0.6rem;
            text-transform: uppercase;
            color: var(--accent-gold);
            letter-spacing: 1px;
            font-weight: 700;
        }

        .cta-number {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--pure-white);
            font-family: var(--font-heading);
        }

        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .mobile-menu-btn .bar {
            width: 26px;
            height: 2.5px;
            background: var(--pure-white);
            border-radius: 4px;
            transition: var(--transition);
        }

        .mobile-menu-btn.open .bar:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
        }
        .mobile-menu-btn.open .bar:nth-child(2) {
            opacity: 0;
        }
        .mobile-menu-btn.open .bar:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
        }

        .mobile-drawer {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 380px;
            height: 100vh;
            background: var(--primary-blue-dark);
            z-index: 9998;
            padding: 6rem 2.5rem 2.5rem 2.5rem;
            transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow-y: auto;
            box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
        }

        .mobile-drawer.open {
            right: 0;
        }

        .mobile-drawer .drawer-links {
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            list-style: none;
            margin-bottom: 3rem;
        }

        .mobile-drawer .drawer-links a {
            color: #e2e8f0;
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 600;
            transition: var(--transition);
        }

        .mobile-drawer .drawer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(6px);
        }

        .mobile-drawer .drawer-contacts {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 2rem;
        }

        .mobile-drawer .drawer-contacts p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0.4rem;
        }

        .mobile-drawer .drawer-contacts a {
            color: var(--pure-white);
            font-weight: 700;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 0.3rem;
        }

        .mobile-drawer .drawer-contacts .drawer-cta {
            margin-top: 1.5rem;
        }

        .drawer-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9997;
        }

        .drawer-overlay.open {
            display: block;
        }

        /* ============================================================
                   ABOUT PAGE SPECIFIC STYLES
                   ============================================================ */

        /* --- 1. IDENTITY MINI-HERO --- */
        .about-hero {
              position: relative;
    padding: 10rem 0 6rem 0;
    overflow: hidden;

    /* Premium layered background: dark overlay + cinematic image */
    background:
        linear-gradient(135deg, rgba(9, 27, 61, 0.90) 0%, rgba(11, 19, 43, 0.92) 100%),
        url('https://images.unsplash.com/photo-1582139329536-e7284fece509?w=1600&h=900&fit=crop&crop=center')
        center center / cover no-repeat;
}

        .about-hero::after {
            content: '';
            position: absolute;
            right: -5%;
            top: 10%;
            width: 40%;
            height: 80%;
            background: radial-gradient(ellipse, rgba(223, 183, 108, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .about-hero .hero-container {
            position: relative;
            z-index: 2;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 2rem;
        }

        .about-hero .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(223, 183, 108, 0.10);
            border: 1px solid rgba(223, 183, 108, 0.2);
            color: var(--accent-gold);
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.45rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.8rem;
        }

        .about-hero h1 {
            color: var(--pure-white);
            max-width: 800px;
            margin-bottom: 1.2rem;
        }

        .about-hero h1 .gold-highlight {
            color: var(--accent-gold);
        }

        .about-hero .hero-sub {
            color: #cbd5e1;
            font-size: 1.15rem;
            max-width: 600px;
            line-height: 1.7;
        }

        /* --- 2. LEGAL & CORPORATE HISTORY (split layout) --- */
        .history-section {
            padding: 6rem 0;
            background: var(--pure-white);
        }

        .history-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .history-content .badge {
            display: inline-block;
            background: rgba(223, 183, 108, 0.12);
            color: var(--accent-gold);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.3rem 1rem;
            border-radius: 50px;
            border: 1px solid rgba(223, 183, 108, 0.15);
            margin-bottom: 1.2rem;
        }

        .history-content h2 {
            margin-bottom: 1.2rem;
        }

        .history-content .legal-emphasis {
            font-weight: 700;
            color: var(--primary-blue);
            background: rgba(15, 43, 92, 0.04);
            padding: 0 0.3rem;
            border-radius: 2px;
        }

        .history-content p {
            color: var(--text-dark);
            margin-bottom: 1.2rem;
            font-size: 1.05rem;
        }

        .history-content .legal-stamp {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: rgba(15, 43, 92, 0.04);
            border-left: 4px solid var(--accent-gold);
            padding: 1rem 1.5rem;
            margin-top: 0.5rem;
            border-radius: 0 var(--card-radius) var(--card-radius) 0;
        }

        .history-content .legal-stamp i {
            color: var(--accent-gold);
            font-size: 1.4rem;
        }

        .history-content .legal-stamp span {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--primary-blue);
        }

        .history-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--light-bg);
            border-radius: var(--card-radius);
            padding: 2.5rem;
            border: 1px solid #eef2f6;
            min-height: 300px;
            position: relative;
            overflow: hidden;
        }

        .history-visual .visual-icon {
            font-size: 6rem;
            color: rgba(15, 43, 92, 0.06);
        }

        .history-visual .visual-overlay-text {
            position: absolute;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue);
            opacity: 0.06;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .history-visual .visual-badge {
            position: relative;
            z-index: 2;
            background: var(--pure-white);
            padding: 1.5rem 2.5rem;
            border-radius: var(--card-radius);
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef2f6;
            text-align: center;
        }

        .history-visual .visual-badge .year {
            font-family: var(--font-heading);
            font-weight: 900;
            font-size: 3.5rem;
            color: var(--accent-gold);
            line-height: 1;
        }

        .history-visual .visual-badge .label {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            font-weight: 600;
            margin-top: 0.2rem;
        }

        /* --- 3. VISION, MISSION & CORE VALUES --- */
        .vision-section {
            padding: 6rem 0;
            background: var(--light-bg);
        }

        .vision-mission-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .vm-card {
            background: var(--pure-white);
            border-radius: var(--card-radius);
            padding: 2.5rem 2.5rem;
            border: 1px solid #eef2f6;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
            transition: var(--transition);
        }

        .vm-card:hover {
            border-color: var(--primary-blue);
            box-shadow: 0 8px 30px rgba(15, 43, 92, 0.04);
        }

        .vm-card .vm-icon {
            font-size: 2.2rem;
            color: var(--accent-gold);
            margin-bottom: 1rem;
        }

        .vm-card h3 {
            margin-bottom: 0.6rem;
        }

        .vm-card p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        .vm-card .motto-highlight {
            color: var(--accent-gold);
            font-weight: 700;
            font-style: italic;
        }

        /* --- Core Values 4-column --- */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .value-card {
            background: var(--pure-white);
            border-radius: var(--card-radius);
            padding: 2rem 1.8rem;
            border: 2px solid var(--accent-gold);
            transition: var(--transition);
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }

        .value-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(223, 183, 108, 0.10);
        }

        .value-card .value-icon {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }

        .value-card h4 {
            margin-bottom: 0.4rem;
            font-size: 1.05rem;
        }

        .value-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* --- 4. 8-COUNTIES FOOTPRINT --- */
        .counties-section {
            padding: 6rem 0;
            background: var(--primary-blue-dark);
            color: var(--pure-white);
        }

        .counties-section .section-header h2 {
            color: var(--pure-white);
        }
        .counties-section .section-header p {
            color: #94a3b8;
        }
        .counties-section .section-header .badge {
            background: rgba(223, 183, 108, 0.12);
        }

        .counties-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .county-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: var(--card-radius);
            padding: 1.8rem 1.5rem;
            transition: var(--transition);
            text-align: center;
        }

        .county-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(223, 183, 108, 0.2);
            transform: translateY(-3px);
        }

        .county-card .pin {
            font-size: 1.6rem;
            color: var(--accent-gold);
            margin-bottom: 0.4rem;
        }

        .county-card .county-name {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--pure-white);
        }

        .county-card .county-spec {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: 0.2rem;
            letter-spacing: 0.03em;
        }

        /* --- 5. VERIFICATION BOTTOM BANNER --- */
        .verification-banner {
            padding: 5rem 0;
            background: var(--pure-white);
            border-top: 1px solid #eef2f6;
            border-bottom: 1px solid #eef2f6;
        }

        .verification-banner .banner-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .verification-banner .banner-badge {
            display: inline-block;
            background: rgba(223, 183, 108, 0.10);
            color: var(--accent-gold);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            border: 1px solid rgba(223, 183, 108, 0.15);
            margin-bottom: 1.2rem;
        }

        .verification-banner h2 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }

        .verification-banner h2 .gold-highlight {
            color: var(--accent-gold);
        }

        .verification-banner p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem auto;
        }

        /* ============================================================
                   GLOBAL FOOTER (mirroring index)
                   ============================================================ */
        .main-footer {
            background: var(--dark-bg);
            border-top: 2px solid var(--accent-gold);
            padding: 4rem 0 0 0;
            color: #e2e8f0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-brand .logo a {
            font-size: 1.8rem;
        }

        .footer-brand p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin: 1rem 0 1.5rem 0;
            max-width: 340px;
            line-height: 1.7;
        }

        .footer-brand .legal-note {
            font-size: 0.8rem;
            color: #64748b;
            line-height: 1.6;
            border-left: 2px solid var(--accent-gold);
            padding-left: 1rem;
        }

        .footer-col h5 {
            color: var(--accent-gold);
            font-weight: 700;
            letter-spacing: 0.12em;
            margin-bottom: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .footer-col ul a {
            color: #94a3b8;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--accent-gold);
            transform: translateX(4px);
            display: inline-block;
        }

        .footer-col .county-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.4rem 1rem;
        }

        .footer-col .county-grid span {
            font-size: 0.9rem;
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .footer-col .county-grid span i {
            color: var(--accent-gold);
            font-size: 0.65rem;
        }

        .footer-col .contact-detail {
            margin-bottom: 1rem;
        }

        .footer-col .contact-detail .label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--text-muted);
        }

        .footer-col .contact-detail a,
        .footer-col .contact-detail .value {
            font-weight: 600;
            color: var(--pure-white);
            font-size: 1rem;
        }

        .footer-col .contact-detail .address {
            color: #94a3b8;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col .contact-detail .address strong {
            color: #e2e8f0;
        }

        .sub-footer {
            padding: 1.5rem 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            font-size: 0.8rem;
            color: #64748b;
        }

        .sub-footer .sub-links {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .sub-footer .sub-links a {
            color: #64748b;
            transition: var(--transition);
            font-size: 0.8rem;
        }

        .sub-footer .sub-links a:hover {
            color: var(--accent-gold);
        }

        /* ============================================================
                   FLOATING WHATSAPP
                   ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 4rem;
            height: 4rem;
            background: #25d366;
            border-radius: 50%;
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.35);
            transition: var(--transition);
            animation: whatsapp-bounce 2.5s infinite ease-in-out;
        }

        .whatsapp-float:hover {
            transform: scale(1.06);
            box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float i {
            font-size: 2.2rem;
            color: var(--pure-white);
        }

        @keyframes whatsapp-bounce {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-6px);
            }
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2.5rem;
            }
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .counties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .nav-links {
                display: none;
            }
            .mobile-menu-btn {
                display: flex;
            }
            .emergency-cta .cta-text .cta-label {
                display: none;
            }
            .emergency-cta {
                padding: 0.45rem 0.8rem;
            }
              .history-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .history-visual {
        order: 0;            /* ← Removes the forced order – image goes below text */
        min-height: 240px;
        margin-top: 0.5rem;
    }
            .vision-mission-grid {
                grid-template-columns: 1fr;
            }
            .verification-banner h2 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 0.7rem 1.2rem;
            }
            .logo a {
                font-size: 1.3rem;
            }
            .about-hero {
                padding: 8rem 0 4rem 0;
            }
            .about-hero h1 {
                font-size: 2.2rem;
            }
            .about-hero .hero-sub {
                font-size: 1rem;
            }
            .values-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .counties-grid {
                grid-template-columns: 1fr 1fr;
                gap: 1rem;
            }
            .county-card {
                padding: 1.2rem 1rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-col .county-grid {
                grid-template-columns: 1fr 1fr;
            }
            .sub-footer {
                flex-direction: column;
                text-align: center;
            }
            .whatsapp-float {
                width: 3.4rem;
                height: 3.4rem;
                bottom: 1.2rem;
                right: 1.2rem;
            }
            .whatsapp-float i {
                font-size: 1.8rem;
            }
            .mobile-drawer {
                max-width: 100%;
                padding: 5rem 1.8rem 2rem 1.8rem;
            }
            .mobile-drawer .drawer-links a {
                font-size: 1.2rem;
            }
            .history-content p {
                font-size: 1rem;
            }
            .history-visual .visual-badge .year {
                font-size: 2.8rem;
            }
            .verification-banner h2 {
                font-size: 1.8rem;
            }
            .verification-banner p {
                font-size: 1rem;
            }
            .vm-card {
                padding: 1.8rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
            .counties-grid {
                grid-template-columns: 1fr 1fr;
            }
            .footer-col .county-grid {
                grid-template-columns: 1fr;
            }
            .about-hero h1 {
                font-size: 1.8rem;
            }
            .history-visual .visual-badge {
                padding: 1rem 1.5rem;
            }
            .history-visual .visual-badge .year {
                font-size: 2.2rem;
            }
            .verification-banner h2 {
                font-size: 1.5rem;
            }
            .section-header p {
                font-size: 1rem;
            }
        }
        /* ---- Mobile Drawer – FIXED ---- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--primary-blue-dark);
    z-index: 9998;
    padding: 6rem 2.5rem 2.5rem 2.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    /* ✅ REMOVED: display: none – this was the problem! */
}

.mobile-drawer.open {
    right: 0;
}

/* ---- Overlay ---- */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9997;
}

.drawer-overlay.open {
    display: block;
}

/* Make sure drawer content is visible */
.mobile-drawer .drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.mobile-drawer .drawer-links a {
    color: #e2e8f0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.mobile-drawer .drawer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(6px);
}

.mobile-drawer .drawer-contacts {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.mobile-drawer .drawer-contacts p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    font-weight: 300;
}

.mobile-drawer .drawer-contacts a {
    color: var(--pure-white);
    font-weight: 500;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.3rem;
    text-decoration: none;
}

.mobile-drawer .drawer-contacts .drawer-cta {
    margin-top: 1.5rem;
}
/* ============================================================
   MOBILE DRAWER – FORCE VISIBILITY FIX
   ============================================================ */
.mobile-drawer {
    background: #091b3d !important; /* Force dark background */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important; /* Ensure it's rendered */
}

.mobile-drawer .drawer-links a {
    color: #e2e8f0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-drawer .drawer-contacts p {
    color: #94a3b8 !important;
}

.mobile-drawer .drawer-contacts a {
    color: #ffffff !important;
    opacity: 1 !important;
}

.mobile-drawer .drawer-contacts .drawer-cta .btn-primary {
    display: block !important;
    background: #dfb76c !important;
    color: #0f2b5c !important;
}
/* ---------- Image-Only History Visual ---------- */
.history-visual-image {
    position: relative;
    padding: 0;
    min-height: 340px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--slate-dark);
}

.history-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 340px;
}

.history-visual-image:hover .history-image {
    transform: scale(1.03);
}

.history-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2.5rem;
    background: linear-gradient(
        to top,
        rgba(11, 19, 43, 0.85) 0%,
        rgba(11, 19, 43, 0.4) 60%,
        transparent 100%
    );
    text-align: center;
}

.history-image-overlay .year {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.history-image-overlay .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 0.2rem;
}
/* ============================================================
   CEO SECTION – Premium Leadership Card (No Cropping)
   ============================================================ */

.ceo-section {
    padding: 5rem 0;
    background: var(--light-bg);
    position: relative;
}

.ceo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(223, 183, 108, 0.02), transparent 60%);
    pointer-events: none;
}

/* ---------- CEO Card ---------- */
.ceo-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 43, 92, 0.06);
    border: 1px solid rgba(15, 43, 92, 0.04);
    transition: all 0.4s ease;
}

.ceo-card:hover {
    box-shadow: 0 30px 80px rgba(15, 43, 92, 0.08);
    transform: translateY(-4px);
}

/* ---------- CEO Image – No Cropping! ---------- */
.ceo-image-wrap {
    position: relative;
    width: 100%;
    height: auto; /* Auto height, controlled by aspect-ratio */
    aspect-ratio: 4 / 5; /* Perfect portrait ratio – no cropping */
    overflow: hidden;
    background: var(--slate-dark);
}

.ceo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center; /* Keeps the face visible */
    display: block;
    transition: transform 0.7s ease;
    filter: brightness(0.95) contrast(1.05);
}

.ceo-card:hover .ceo-image {
    transform: scale(1.02);
}

/* ---------- Overlay Badge ---------- */
.ceo-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 2rem 1.8rem 2rem;
    background: linear-gradient(to top, rgba(9, 27, 61, 0.75) 0%, transparent 100%);
    pointer-events: none;
}

.ceo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    background: rgba(223, 183, 108, 0.08);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(223, 183, 108, 0.1);
}

/* ---------- CEO Content ---------- */
.ceo-content {
    padding: 2rem 3rem 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ceo-header h3 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0 0 0.2rem 0;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.ceo-title {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* ---------- Qualifications Badges ---------- */
.ceo-qualifications {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.2rem 0;
}

.qual-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3rem 0.9rem;
    background: rgba(15, 43, 92, 0.04);
    border: 1px solid rgba(15, 43, 92, 0.04);
    border-radius: 50px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.qual-badge i {
    color: var(--accent-gold);
    font-size: 0.7rem;
}

.qual-badge:hover {
    background: rgba(223, 183, 108, 0.06);
    border-color: rgba(223, 183, 108, 0.1);
    color: var(--text-dark);
}

/* ---------- CEO Bio ---------- */
.ceo-bio {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin: 0;
}

.ceo-bio strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* ---------- CEO Mission Quote ---------- */
.ceo-mission {
    position: relative;
    background: var(--light-bg);
    padding: 1.8rem 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
}

.ceo-mission .mission-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -0.5rem;
}

.ceo-mission blockquote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
    margin: 0.5rem 0 0.5rem 0;
    font-family: var(--font-body);
}

.ceo-mission cite {
    font-size: 0.8rem;
    font-style: normal;
    color: var(--text-muted);
    font-weight: 400;
    display: block;
    margin-top: 0.3rem;
}

/* ---------- CEO CTA ---------- */
.ceo-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.2rem;
}

.ceo-cta .btn-primary,
.ceo-cta .btn-gold-outline {
    font-size: 0.85rem;
    padding: 0.9rem 2rem;
    border-radius: var(--card-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.ceo-cta .btn-primary {
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
}

.ceo-cta .btn-primary:hover {
    background: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(223, 183, 108, 0.3);
}

.ceo-cta .btn-gold-outline {
    background: transparent;
    color: var(--accent-gold);
    border: 1.5px solid var(--accent-gold);
}

.ceo-cta .btn-gold-outline:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE – CEO SECTION
   ============================================================ */

@media (max-width: 992px) {
    .ceo-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ceo-image-wrap {
        aspect-ratio: 4 / 5; /* Stays portrait on tablet */
        max-height: none;
    }

    .ceo-content {
        padding: 2rem 1.5rem 2rem 1.5rem;
    }

    .ceo-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 3.5rem 0;
    }

    .ceo-image-wrap {
        aspect-ratio: 3 / 4; /* Slightly taller on mobile for a better portrait */
    }

    .ceo-content {
        padding: 1.5rem 1rem 1.8rem 1rem;
    }

    .ceo-header h3 {
        font-size: 1.4rem;
    }

    .ceo-mission blockquote {
        font-size: 0.95rem;
    }

    .ceo-mission {
        padding: 1.2rem 1.2rem;
    }

    .ceo-cta {
        flex-direction: column;
    }

    .ceo-cta .btn-primary,
    .ceo-cta .btn-gold-outline {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .ceo-qualifications {
        gap: 0.4rem;
    }

    .qual-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.7rem;
    }
}

@media (max-width: 480px) {
    .ceo-image-wrap {
        aspect-ratio: 3 / 4; /* Maintains tall portrait */
    }

    .ceo-header h3 {
        font-size: 1.2rem;
    }

    .ceo-bio {
        font-size: 0.85rem;
    }

    .ceo-mission blockquote {
        font-size: 0.85rem;
    }

    .ceo-image-overlay {
        padding: 1.2rem 1.2rem 1rem 1.2rem;
    }

    .ceo-badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.8rem;
    }
}