/* ============================================================
               GLOBAL STYLES — Prime Fire System
               ============================================================ */

        /* ---------- CSS Variables ---------- */
        :root {
            --navy: #0b1a2e;
            --navy-light: #122c44;
            --navy-dark: #060f1a;
            --blue-deep: #1a3a5c;
            --blue-primary: #1e4a6f;
            --blue-accent: #2a6b9c;
            --blue-bright: #3a8fd4;
            --red-accent: #c0392b;
            --red-fire: #e74c3c;
            --orange-accent: #e67e22;
            --gold-accent: #f1c40f;
            --white: #ffffff;
            --off-white: #f8fafc;
            --gray-light: #eef2f7;
            --gray-mid: #b0c4d9;
            --gray-text: #5a7188;
            --text-dark: #0b1a2e;
            --shadow-sm: 0 4px 20px rgba(11, 26, 46, 0.08);
            --shadow-md: 0 8px 40px rgba(11, 26, 46, 0.12);
            --shadow-lg: 0 16px 60px rgba(11, 26, 46, 0.16);
            --radius: 16px;
            --radius-sm: 8px;
            --radius-xl: 24px;
            --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'DM Sans', sans-serif;
            --max-width: 1200px;
            --header-height: 76px;
        }

        /* ---------- Reset & Base ---------- */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

       

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul,
        ol {
            list-style: none;
        }
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ---------- Typography ---------- */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
        }

        .heading-xl {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 800;
        }
        .heading-lg {
            font-size: clamp(2rem, 3.5vw, 1.8rem);
            font-weight: 700;
        }
        .heading-md {
            font-size: clamp(1.4rem, 2.2vw, 1.8rem);
            font-weight: 600;
        }
        .heading-sm {
            font-size: clamp(1.1rem, 1.6vw, 1.3rem);
            font-weight: 600;
            margin-top: 15px
        }
        .body-lg {
            font-size: 1.125rem;
            line-height: 1.8;
        }
        .body-md {
            font-size: 1rem;
            line-height: 1.7;
        }
        .body-sm {
            font-size: 0.9rem;
            line-height: 1.6;
        }
        .text-muted {
            color: var(--gray-text);
        }
        .text-white {
            color: #fff;
        }
        .text-center {
            text-align: center;
        }
        .text-uppercase {
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .eyebrow {
            font-family: var(--font-heading);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--red-accent);
            display: inline-block;
            margin-bottom: 0.5rem;
            position: relative;
            padding-left: 2.2rem;
        }
        .eyebrow::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 1.6rem;
            height: 2px;
            background: var(--red-accent);
            transform: translateY(-50%);
        }
        .eyebrow.white {
            color: var(--gold-accent);
        }
        .eyebrow.white::before {
            background: var(--gold-accent);
        }

        .section-padding {
            padding: 80px 0;
        }
        .section-padding-sm {
            padding: 56px 0;
        }
        .section-padding-lg {
            padding: 100px 0;
        }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 14px 32px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        .btn .arrow {
            transition: var(--transition);
        }
        .btn:hover .arrow {
            transform: translateX(4px);
        }

        .btn-primary {
            background: var(--red-accent);
            color: #fff;
            box-shadow: 0 4px 20px rgba(192, 57, 43, 0.35);
        }
        .btn-primary:hover {
            background: #a93226;
            box-shadow: 0 8px 30px rgba(192, 57, 43, 0.45);
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.4);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            transform: translateY(-2px);
            color: #fff;
        }

        .btn-outline {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }
        .btn-outline:hover {
            background: var(--navy);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-white {
            background: #fff;
            color: var(--navy);
            box-shadow: var(--shadow-sm);
        }
        .btn-white:hover {
            background: var(--off-white);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-gold {
            background: var(--gold-accent);
            color: var(--navy);
        }
        .btn-gold:hover {
            background: #f39c12;
            transform: translateY(-2px);
            color: var(--navy);
        }

        /* ---------- Cards ---------- */
        .card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(11, 26, 46, 0.04);
        }
        .card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-6px);
        }
        .card-icon {
            font-size: 2.4rem;
            color: var(--red-accent);
            margin: auto;
            display: inline-block;
        }
        .card-icon.blue {
            color: var(--blue-primary);
        }

        /* ---------- Section Titles ---------- */
        .section-title {
            margin-bottom: 48px;
        }
        .section-title .eyebrow {
            margin-bottom: 0.25rem;
        }
        .section-title h2 {
            margin-bottom: 0.75rem;
        }
        .section-title p {
            max-width: 640px;
            color: var(--gray-text);
            font-size: 1.1rem;
        }
        .section-title.centered {
            text-align: center;
        }
        .section-title.centered p {
            margin: 0 auto;
        }

        /* ---------- Grid Helpers ---------- */
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        /* ---------- Backgrounds ---------- */
        .bg-navy {
            background: var(--navy);
            color: #fff;
        }
        .bg-navy h2,
        .bg-navy h3,
        .bg-navy .heading-lg,
        .bg-navy .heading-md {
            color: #fff;
        }
        .bg-navy .text-muted {
            color: rgba(255, 255, 255, 0.65);
        }
        .bg-light {
            background: var(--off-white);
        }
        .bg-white {
            background: #fff;
        }

        /* ---------- Reveal Animations ---------- */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }
        .delay-2 {
            transition-delay: 0.2s;
        }
        .delay-3 {
            transition-delay: 0.3s;
        }
        .delay-4 {
            transition-delay: 0.4s;
        }
        /* ============================================================
               HERO / BANNER (inner pages)
               ============================================================ */
        .page-hero {
            position: relative;
            min-height: 320px;
            display: flex;
            align-items: center;
            background: var(--navy);
            overflow: hidden;
            padding: 60px 0;
        }
        .page-hero .bg-image {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.3;
            z-index: 0;
        }
        .page-hero .bg-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at 30% 50%, rgba(192, 57, 43, 0.15) 0%, transparent 70%),
                radial-gradient(ellipse at 70% 50%, rgba(26, 74, 111, 0.3) 0%, transparent 70%);
        }
        .page-hero .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .page-hero .breadcrumb {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 1rem;
            font-weight: 400;
            justify-content: center;
        }
        .page-hero .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
        }
        .page-hero .breadcrumb a:hover {
            color: #fff;
        }
        .page-hero .breadcrumb span {
            margin: 0 6px;
        }
        .page-hero h1 {
            color: #fff;
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            font-weight: 800;
        }
        .page-hero .subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.15rem;
            max-width: 560px;
            margin-top: 0.5rem;
            font-weight: 400;
        }
        .page-hero .glow-line {
            width: 60px;
            height: 3px;
            background: var(--red-accent);
            border-radius: 4px;
            margin-top: 1rem;
            box-shadow: 0 0 20px rgba(192, 57, 43, 0.4);
        }


        /* ============================================================
               RESPONSIVE
               ============================================================ */
        @media (max-width: 1024px) {
            .grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .grid-3 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --header-height: 64px;
            }
            .section-padding {
                padding: 56px 0;
            }
            .section-padding-lg {
                padding: 72px 0;
            }

            .grid-2 {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .grid-3 {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .grid-4 {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .page-hero {
                min-height: 200px;
                padding: 40px 0;
            }
            .page-hero h1 {
                font-size: 2rem;
            }
            .page-hero .subtitle {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 16px;
            }
            .grid-4 {
                grid-template-columns: 1fr;
            }
            .footer .grid-4 {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .page-hero h1 {
                font-size: 1.7rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.85rem;
            }
        }

        /* ============================================================
               UTILITY
               ============================================================ */
        .skip-link {
            position: absolute;
            top: -100%;
            left: 50%;
            transform: translateX(-50%);
            background: var(--red-accent);
            color: #fff;
            padding: 12px 24px;
            border-radius: 0 0 var(--radius-sm) var(--radius-sm);
            z-index: 9999;
            font-weight: 600;
            transition: top 0.3s;
        }
        .skip-link:focus {
            top: 0;
        }

        /* ============================================================
               PAGE-SPECIFIC — ABOUT US
               ============================================================ */
        .mission-box {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius);
            padding: 32px 28px;
            border-left: 4px solid var(--red-accent);
        }
        .mission-box h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        .mission-box p {
            color: rgba(255, 255, 255, 0.7);
        }

        .about-checklist li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            padding: 6px 0;
        }
        .about-checklist li i {
            color: var(--red-accent);
            font-size: 1.1rem;
            flex-shrink: 0;
        }