/* ===========================
   CO-ELECTRIC — DESIGN SYSTEM
   Modern Industrial Corporate
   Official Brand Palette:
   Navy #1b3a6e · Black #0a0a0a · Gold #f5c200 · Silver #b8c5d6
   =========================== */

:root {
    /* === OFFICIAL BRAND COLORS === */
    --brand-navy:   #1b3a6e;  /* Official navy blue */
    --brand-black:  #0a0a0a;  /* Official black */
    --brand-gold:   #f5c200;  /* Official gold/yellow */
    --brand-silver: #b8c5d6;  /* Official silver-gray */

    /* Core Palette — site surfaces */
    --navy-deep:    #060810;  /* Near-black base (behind everything) */
    --navy-mid:     #0e1a2e;  /* Section alternator */
    --navy-card:    #122040;  /* Card background */
    --navy-raised:  #1b3a6e;  /* = brand navy, raised elements */
    --navy-border:  rgba(255,255,255,0.08);
    
    /* Accent */
    --gold:         #f5c200;  /* Brand gold */
    --gold-muted:   rgba(245, 194, 0, 0.12);
    --gold-glow:    rgba(245, 194, 0, 0.28);
    --electric:     #3b82f6;
    --electric-muted: rgba(59, 130, 246, 0.12);
    
    /* Text */
    --text-white:   #ffffff;
    --text-primary: #dce8f5;
    --text-muted:   #7e99bb;
    --text-faint:   #3d5470;
    
    /* Fonts */
    --font-heading: 'Inter', sans-serif;
    --font-body:    'Inter', sans-serif;
    
    /* Easing */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition:  all 0.35s var(--ease-smooth);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--navy-deep);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-white);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; }

/* ===== LAYOUT ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 7rem 0;
    position: relative;
}

/* ===== TYPOGRAPHY SYSTEM ===== */
.overline {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--text-white);
}

.section-title.center { text-align: center; }

.section-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.8;
}

.section-lead.center {
    text-align: center;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 1.5px solid transparent;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border-color: rgba(255,255,255,0.3);
}

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

.btn-ghost-gold {
    background-color: var(--gold-muted);
    color: var(--gold);
    border-color: rgba(245,200,66,0.3);
}

.btn-ghost-gold:hover {
    background-color: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
    border-radius: 40px;
    box-shadow: 0 10px 20px rgba(245, 194, 0, 0.2);
}

/* ===== SEPARATOR LINE ===== */
.section-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 2rem;
    border-radius: 2px;
}

.section-divider.center {
    margin: 0 auto 2rem;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), padding 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.6rem 0;
    box-shadow: 0 1px 0 var(--navy-border), 0 4px 30px rgba(0,0,0,0.4);
}

.navbar.menu-active {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
    color: var(--text-white);
}
.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--gold);
    color: var(--navy-deep) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.875rem;
}

.btn-nav::after { display: none !important; }

.btn-nav:hover {
    background: transparent !important;
    color: var(--gold) !important;
    box-shadow: 0 0 0 1.5px var(--gold);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-white);
    background: transparent;
    border: none;
    padding: 10px;
    outline: none;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--gold);
}

/* ===========================
   HERO
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(27, 58, 110, 0.6) 100%),
                url('../assets/images/houston-bg.jpg') center/cover no-repeat;
}

/* Radial navy glow — matches the brand flyer blue-light feel */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(ellipse, rgba(27,58,110,0.45) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Second glow on the right — replicates the city-light feel from the flyer */
.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(ellipse, rgba(245,194,0,0.04) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    display: block;
    max-width: 800px;
    margin: 0 auto 0 0; /* Align to the left of the container */
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ===========================
   NEON LIGHTBEAMS
   =========================== */
.lightbeam {
    position: absolute;
    height: 2px;
    width: 60vw; /* Long trailing tail */
    max-width: 900px;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    will-change: left, opacity;
    
    /* Masks both the background and box-shadow to fade flawlessly to nothing on the left */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 70%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 70%, black 100%);
}

/* Bright flare tip */
.lightbeam::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
}

.lightbeam-1 {
    top: 25%;
    background: linear-gradient(90deg, rgba(245,194,0,0) 0%, rgba(245,194,0,1) 95%, #fff 100%);
    box-shadow: 0 0 15px 3px rgba(245,194,0,1), 0 0 40px 15px rgba(245,194,0,0.4);
    animation: beamSweepHorizontal 11s infinite ease-in;
}
.lightbeam-1::after { box-shadow: 0 0 20px 6px rgba(245,194,0,1); }

.lightbeam-2 {
    top: 75%;
    background: linear-gradient(90deg, rgba(59,130,246,0) 0%, rgba(59,130,246,1) 95%, #fff 100%);
    box-shadow: 0 0 15px 3px rgba(59,130,246,1), 0 0 40px 15px rgba(59,130,246,0.4);
    animation: beamSweepHorizontal 14s infinite ease-in 5s;
}
.lightbeam-2::after { box-shadow: 0 0 20px 6px rgba(59,130,246,1); }

@keyframes beamSweepHorizontal {
    0% { left: -60%; opacity: 0; }
    5% { opacity: 1; }
    40% { left: 120%; opacity: 1; }
    45% { left: 140%; opacity: 0; }
    100% { left: 140%; opacity: 0; }
}

.hero-text { }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-eyebrow span {
    color: var(--text-faint);
    font-size: 1rem;
    font-weight: 300;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    
    /* Controlled Electric Halo Sweep */
    background: linear-gradient(
        110deg,
        #ffffff 25%,
        rgba(59, 130, 246, 0.8) 35%,
        #ffffff 45%,
        rgba(245, 194, 0, 0.9) 55%,
        #ffffff 65%
    );
    background-size: 250% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: electricHaloSweep 6s linear infinite;
}

@keyframes electricHaloSweep {
    0% { background-position: 0% center; }
    100% { background-position: -250% center; }
}

.hero h1 em {
    font-style: normal;
    animation: goldPulse 4s ease-in-out infinite alternate;
}

@keyframes goldPulse {
    0% { text-shadow: 0 0 10px rgba(245,194,0,0.1); }
    100% { text-shadow: 0 0 30px rgba(245,194,0,0.5), 0 0 15px rgba(59,130,246,0.3); }
}

.hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 3.5rem;
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.hero-stat-item {
    padding: 1.25rem 1.5rem;
    border-right: 1px solid var(--navy-border);
    text-align: center;
}

.hero-stat-item:last-child { border-right: none; }

.hero-stat-item i {
    display: block;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.hero-stat-item span {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

/* Hero Image Panel */
.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 580px;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,25,55,0.5) 0%, transparent 60%);
    z-index: 1;
    border-radius: 16px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating badge on hero image */
.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    background: rgba(10,15,30,0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.hero-badge-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.hero-badge-text small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===========================
   ABOUT — WHY CO-ELECTRIC
   =========================== */
.about-section {
    background-color: var(--navy-mid); /* Slightly lit vs hero black */
}

/* Subtle top separator */
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-border) 50%, transparent);
}

.about-header {
    margin-bottom: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.about-text {
    background: var(--navy-card); /* Brand navy-card */
    border: 1px solid rgba(27,58,110,0.4); /* navy tint border */
    border-radius: 16px;
    padding: 3rem;
}

.about-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--navy-border);
}

/* Differentiator cards */
.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.diff-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.diff-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--gold-muted);
    border: 1px solid rgba(245,194,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.diff-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.about-visual {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    transition: transform 0.8s var(--ease-smooth);
}

.about-visual:hover img {
    transform: scale(1.04);
}

/* ===========================
   SERVICES
   =========================== */
.services-section {
    background-color: var(--brand-black); /* true black for max contrast behind cards */
    position: relative;
}

.services-header {
    margin-bottom: 3.5rem;
}

.services-staggered-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    background-color: #0e1e3a; /* dark navy-blue card — navy brand feel */
    border: 1px solid rgba(27,58,110,0.5); /* brand navy border */
    border-radius: 14px;
    padding: 2rem 1.75rem 2.5rem;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

/* Subtle background image overlay */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--card-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    transition: opacity 0.4s var(--ease-smooth);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 200, 66, 0.25);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,200,66,0.1);
}

.service-card:hover::before { opacity: 0.12; }

.service-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: var(--gold-muted);
    border: 1px solid rgba(245,200,66,0.25);
    padding: 0.2rem 0.65rem;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    align-self: flex-start;
}

.service-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-faint);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.service-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: transform 0.3s var(--ease-spring);
}

.service-card:hover .service-icon {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

/* ===========================
   SERVICE CARD CAROUSELS
   =========================== */
.sc-carousel {
    position: relative;
    margin-top: 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}

.sc-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.sc-slide {
    min-width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}

.sc-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.sc-slide:hover img {
    transform: scale(1.04);
}

/* Zoom icon hint on hover */
.sc-slide::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    font-size: 1.8rem;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.45);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.sc-slide:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Nav buttons */
.sc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10;
    padding: 0;
}

.sc-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
    transform: translateY(-50%) scale(1.1);
}

.sc-prev { left: 8px; }
.sc-next { right: 8px; }

/* Dots */
.sc-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.sc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
    padding: 0;
}

.sc-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

/* ===========================
   LIGHTBOX MODAL
   =========================== */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    animation: lbFadeIn 0.25s ease;
}

.lightbox.open {
    display: flex;
}

@keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#lightboxImg {
    max-width: 90vw;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: lbImgIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: block;
}

@keyframes lbImgIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

.lightbox-counter {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lightbox-close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(245,194,0,0.25);
    color: var(--gold);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(245,194,0,0.2);
    color: var(--gold);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }


/* ===========================
   GOVERNMENT SECTION
   =========================== */
.gov-section {
    background-color: var(--brand-navy); /* solid brand navy section */
    position: relative;
    overflow: hidden;
}

/* Decorative accent */
.gov-section::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 860px;
    gap: 1.5rem;
    margin: 3rem auto;
}

.gov-card {
    background: rgba(6,8,16,0.5); /* dark semi-transparent on brand navy bg */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    transition: var(--transition);
}

.gov-card:hover {
    border-left-color: var(--electric);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gov-card-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.gov-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.gov-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   GALLERY
   =========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth), filter 0.6s var(--ease-smooth);
    filter: saturate(0.7);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,15,30,0.95) 0%, rgba(10,15,30,0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(1);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

/* ===========================
   PLAYBOOK / PROCESS
   =========================== */
.playbook-section {
    background-color: var(--navy-deep);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

/* Connecting line */
.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-border) 20%, var(--navy-border) 80%, transparent);
    pointer-events: none;
    z-index: 0;
}

.process-step {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
}

.process-step:hover {
    transform: translateY(-6px);
    border-color: rgba(245,200,66,0.2);
}

.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-muted);
    border: 2px solid rgba(245,200,66,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold);
    margin: 0 auto 1.5rem;
    transition: background 0.3s var(--ease-smooth), border-color 0.3s var(--ease-smooth);
}

.process-step:hover .step-indicator {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-deep);
}

.process-step h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===========================
   TASK FORCE SECTION
   =========================== */
.taskforce-section {
    background-color: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

/* Subtle geometric grid overlay */
.taskforce-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,194,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,194,0,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Right radial glow */
.taskforce-section::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50vw;
    height: 50vw;
    background: radial-gradient(ellipse, rgba(27,58,110,0.4) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.taskforce-section .container {
    position: relative;
    z-index: 1;
}

.taskforce-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Label / badge */
.taskforce-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--gold-muted);
    border: 1px solid rgba(245,194,0,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.45rem 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

/* Main title */
.taskforce-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    /* Gold gradient text */
    background: linear-gradient(135deg, #ffffff 40%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.taskforce-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Scenario blocks */
.taskforce-scenarios {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.taskforce-scenario {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--navy-border);
    border-radius: 10px;
    padding: 1.25rem;
    transition: var(--transition);
}

.taskforce-scenario:hover {
    border-color: rgba(245,194,0,0.2);
    background: rgba(245,194,0,0.03);
}

.scenario-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: var(--gold-muted);
    border: 1px solid rgba(245,194,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.scenario-icon--alert {
    background: rgba(239,68,68,0.1);
    border-color: rgba(239,68,68,0.25);
    color: #f87171;
}

.taskforce-scenario strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.3rem;
}

.taskforce-scenario p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Right column — 2x2 feature cards */
.taskforce-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.tf-card {
    background: var(--navy-card);
    border: 1px solid rgba(27,58,110,0.5);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: transform 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}

.tf-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245,194,0,0.3);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4);
}

.tf-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-muted);
    border: 1px solid rgba(245,194,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    transition: background 0.3s, color 0.3s;
}

.tf-card:hover .tf-card-icon {
    background: var(--gold);
    color: var(--navy-deep);
}

.tf-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.tf-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* ===========================
   STATS SECTION
   =========================== */
.stats-section {
    background: var(--brand-black); /* black strip — brand contrast */
    border-top: 1px solid rgba(245,194,0,0.15);
    border-bottom: 1px solid rgba(245,194,0,0.15);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-box {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 1px solid var(--navy-border);
    position: relative;
    transition: var(--transition);
}

.stat-box:last-child { border-right: none; }

.stat-box:hover { background: rgba(255,255,255,0.02); }

.stat-box .number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-box .label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* ===========================
   VALUES & MISSION/VISION
   =========================== */
.values-section {
    background-color: var(--navy-mid); /* mid-tone navy — contrast between black sections */
}

.values-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.values-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--navy-card);
    border: 1px solid rgba(27,58,110,0.5);
    border-radius: 10px;
    transition: var(--transition);
}

.values-list li:hover {
    border-color: rgba(245,200,66,0.2);
    transform: translateX(4px);
}

.values-list li i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.values-list li strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.2rem;
}

.values-list li p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Mission Vision Stacked */
.mv-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mv-card {
    background: var(--navy-card);
    border: 1px solid rgba(27,58,110,0.5);
    border-radius: 14px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mv-card-header i {
    width: 34px;
    height: 34px;
    background: var(--gold-muted);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.mv-card h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===========================
   CONTACT
   =========================== */
.contact-section {
    background-color: var(--brand-black); /* black — consistent premium dark section */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-blocks {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--navy-card);
    border: 1px solid rgba(27,58,110,0.5);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.info-block:hover {
    border-color: rgba(245,200,66,0.2);
    transform: translateX(4px);
}

.info-block i {
    font-size: 1rem;
    color: var(--gold);
    width: 20px;
    flex-shrink: 0;
    text-align: center;
}

.custom-form {
    background: var(--navy-card);
    border: 1px solid rgba(27,58,110,0.5);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--navy-deep);
    border: 1px solid var(--navy-border);
    color: var(--text-white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.phone-input-wrapper {
    display: flex;
    background: var(--navy-deep);
    border: 1px solid var(--navy-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s var(--ease-smooth);
}

.phone-input-wrapper:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-muted);
}

.phone-input-wrapper .country-code {
    display: flex;
    align-items: center;
    padding: 0 1rem;
    background: var(--navy-card);
    border-right: 1px solid var(--navy-border);
    font-size: 0.95rem;
    color: var(--text-white);
    cursor: pointer;
}

.phone-input-wrapper input {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    width: 100%;
}

.full-width { width: 100%; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background-color: #07101f; /* very dark navy — footer anchor */
    border-top: 1px solid rgba(245,194,0,0.12);
    padding: 4rem 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--navy-border);
}

.footer-brand img {
    height: 44px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-silver); /* silver-gray brand color */
    margin-bottom: 1.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 1px solid var(--navy-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ===========================
   SCROLLYTELLING ANIMATIONS
   =========================== */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
    will-change: opacity, transform;
}

.reveal-fade-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
    will-change: opacity, transform;
}

.reveal-fade-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-up, .reveal-fade-left, .reveal-fade-right, .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1100px) {
    .services-staggered-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid::before { display: none; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stat-box:nth-child(2) { border-right: none; }
    .stat-box:nth-child(3) { border-top: 1px solid var(--navy-border); border-right: 1px solid var(--navy-border); }
    .stat-box:nth-child(4) { border-top: 1px solid var(--navy-border); }
    .values-columns { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; }
    .hero-image { height: 350px; }
    .hero { padding-top: 130px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gov-grid { grid-template-columns: 1fr; max-width: 600px; }
    .taskforce-layout { grid-template-columns: 1fr; gap: 3rem; }
    .taskforce-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 5rem 0; }
    .container { padding: 0 1.5rem; }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--navy-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-white);
    }
    
    .nav-links.active { display: flex; }
    .mobile-menu-btn { display: block; z-index: 1001; }
    
    .services-staggered-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===========================
   QUOTE MODAL
   =========================== */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 16, 26, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-smooth), visibility 0.4s;
    padding: 1.5rem;
}

.quote-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-modal-content {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 3rem;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s var(--ease-smooth);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.quote-modal-overlay.active .quote-modal-content {
    transform: scale(1) translateY(0);
}

.quote-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.05);
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.quote-modal-close:hover {
    background: rgba(255,255,255,0.15);
    color: var(--text-white);
    transform: rotate(90deg);
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quote-modal-body .custom-form {
    padding: 0;
    border: none;
    background: transparent;
}

/* Custom scrollbar for modal */
.quote-modal-content::-webkit-scrollbar {
    width: 8px;
}
.quote-modal-content::-webkit-scrollbar-track {
    background: transparent;
}
.quote-modal-content::-webkit-scrollbar-thumb {
    background: var(--navy-border);
    border-radius: 4px;
}

/* --- Language Switcher --- */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  margin: 0 16px;
  font-size: 20px;
}
.lang-switcher a {
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.lang-switcher a:hover {
  opacity: 1;
  transform: scale(1.1);
}
.lang-switcher .active {
  opacity: 1;
  transform: scale(1.1);
  cursor: default;
}
.lang-switcher .sep {
  color: #a0aec0;
  margin: 0 10px;
  font-size: 15px;
  opacity: 0.3;
}

/* ===========================
   INNER PAGE HEADER
   =========================== */
.page-header {
    position: relative;
    padding: 10rem 0 5rem 0;
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    border-bottom: 1px solid var(--navy-border);
    overflow: hidden;
    text-align: center;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(245, 194, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}
.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}
.page-header .breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}
.page-header .breadcrumbs a {
    color: var(--text-muted);
}
.page-header .breadcrumbs a:hover {
    color: var(--gold);
}

