/* ============================================================
   ARMED SECURITY INTERNATIONAL · STYLES
   Protection. Integrity. Excellence.
   ============================================================ */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0B0B0C;
    color: #FFFFFF;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== COMMAND HEADER ========== */
.command-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 40px;
    background: rgba(11, 11, 12, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 161, 74, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
    height: 70px;
}

.command-header.scrolled {
    background: rgba(11, 11, 12, 0.92);
    border-bottom-color: rgba(200, 161, 74, 0.12);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #FFFFFF;
    line-height: 1;
}

.header-logo .gold {
    color: #C8A14A;
}

.header-logo .sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.25);
    display: block;
    text-transform: uppercase;
    margin-top: 2px;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.04);
}

.header-status .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

.header-status .status-text {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.header-status .status-text .gold {
    color: #C8A14A;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.header-nav li {
    position: relative;
}

.header-nav li a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.header-nav li a .number {
    color: #C8A14A;
    font-weight: 700;
    margin-right: 4px;
}

.header-nav li a:hover {
    color: #FFFFFF;
}

.header-nav li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C8A14A;
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-nav li a:hover::after {
    width: 100%;
}

.header-cta {
    background: transparent;
    border: 1px solid rgba(200, 161, 74, 0.25);
    color: #C8A14A;
    padding: 8px 20px 8px 24px;
    border-radius: 40px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header-cta:hover {
    background: #C8A14A;
    color: #0B0B0C;
    border-color: #C8A14A;
}

.header-cta .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.header-cta:hover .arrow {
    transform: translateX(4px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle:hover span {
    background: #C8A14A;
}

/* ========== GLOBAL VISUAL SYSTEM ========== */
.gold-accent {
    color: #C8A14A;
}

.gold-line {
    width: 80px;
    height: 3px;
    background: #C8A14A;
    border-radius: 2px;
    margin-bottom: 24px;
}

.gold-line-center {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #C8A14A;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.4);
}

.section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.section-heading .gold {
    color: #C8A14A;
}

.section-heading.white {
    color: #FFFFFF;
}

.section-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    font-weight: 300;
}

.section-sub.light {
    color: rgba(0, 0, 0, 0.5);
}

.section-sub.white {
    color: rgba(255, 255, 255, 0.5);
}

.btn-primary {
    background: #C8A14A;
    border: none;
    color: #0B0B0C;
    padding: 18px 44px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(200, 161, 74, 0.25);
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #b8923f;
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(200, 161, 74, 0.35);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #FFFFFF;
    padding: 18px 36px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: #C8A14A;
    color: #C8A14A;
    background: rgba(200, 161, 74, 0.08);
    transform: scale(1.02);
}

/* ========== CHAPTER 1: COMMAND CENTRE HERO ========== */
.chapter-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: #0B0B0C;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 70px;
}

.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(180deg, rgba(11, 11, 12, 0.2) 0%, rgba(11, 11, 12, 0.85) 100%),
        radial-gradient(ellipse at 30% 40%, rgba(200, 161, 74, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200, 161, 74, 0.05) 0%, transparent 40%);
}

.hero-scene .skyline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><rect x="0" y="120" width="40" height="80" fill="%231A1A1A"/><rect x="50" y="100" width="30" height="100" fill="%231A1A1A"/><rect x="90" y="130" width="50" height="70" fill="%231A1A1A"/><rect x="150" y="80" width="35" height="120" fill="%231A1A1A"/><rect x="195" y="110" width="25" height="90" fill="%231A1A1A"/><rect x="230" y="60" width="45" height="140" fill="%231A1A1A"/><rect x="285" y="90" width="30" height="110" fill="%231A1A1A"/><rect x="325" y="120" width="55" height="80" fill="%231A1A1A"/><rect x="390" y="70" width="40" height="130" fill="%231A1A1A"/><rect x="440" y="100" width="35" height="100" fill="%231A1A1A"/><rect x="485" y="50" width="50" height="150" fill="%231A1A1A"/><rect x="545" y="110" width="30" height="90" fill="%231A1A1A"/><rect x="585" y="80" width="45" height="120" fill="%231A1A1A"/><rect x="640" y="90" width="35" height="110" fill="%231A1A1A"/><rect x="685" y="60" width="50" height="140" fill="%231A1A1A"/><rect x="745" y="120" width="40" height="80" fill="%231A1A1A"/><rect x="795" y="70" width="30" height="130" fill="%231A1A1A"/><rect x="835" y="100" width="55" height="100" fill="%231A1A1A"/><rect x="900" y="50" width="35" height="150" fill="%231A1A1A"/><rect x="945" y="110" width="45" height="90" fill="%231A1A1A"/><rect x="1000" y="80" width="40" height="120" fill="%231A1A1A"/><rect x="1050" y="100" width="50" height="100" fill="%231A1A1A"/><rect x="1110" y="70" width="35" height="130" fill="%231A1A1A"/></svg>') repeat-x bottom;
    background-size: 1200px 200px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-scene .city-lights {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background:
        radial-gradient(circle at 10% 85%, rgba(255, 200, 50, 0.15) 2px, transparent 4px),
        radial-gradient(circle at 20% 80%, rgba(255, 200, 50, 0.1) 2px, transparent 4px),
        radial-gradient(circle at 35% 90%, rgba(255, 200, 50, 0.12) 2px, transparent 4px),
        radial-gradient(circle at 50% 82%, rgba(255, 200, 50, 0.08) 2px, transparent 4px),
        radial-gradient(circle at 65% 88%, rgba(255, 200, 50, 0.15) 2px, transparent 4px),
        radial-gradient(circle at 80% 85%, rgba(255, 200, 50, 0.1) 2px, transparent 4px),
        radial-gradient(circle at 90% 80%, rgba(255, 200, 50, 0.12) 2px, transparent 4px);
    background-size: 200px 200px;
    pointer-events: none;
    animation: cityGlow 4s ease-in-out infinite alternate;
}

@keyframes cityGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.hero-scene .patrol-light {
    position: absolute;
    bottom: 35%;
    left: 20%;
    width: 6px;
    height: 6px;
    background: #C8A14A;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(200, 161, 74, 0.6), 0 0 60px rgba(200, 161, 74, 0.3);
    animation: patrolMove 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-scene .patrol-light-2 {
    left: 60%;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
    box-shadow: 0 0 20px rgba(200, 161, 74, 0.4);
}

@keyframes patrolMove {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(400px); opacity: 0; }
}

.hud-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(200, 161, 74, 0.15);
    z-index: 1;
}

.hud-corner-tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.hud-corner-tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.hud-corner-bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.hud-corner-br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.hero-scene .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 161, 74, 0.15), rgba(200, 161, 74, 0.4), rgba(200, 161, 74, 0.15), transparent);
    animation: scanDown 6s ease-in-out infinite;
    z-index: 1;
    box-shadow: 0 0 30px rgba(200, 161, 74, 0.05);
}

@keyframes scanDown {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.bg-word {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(180px, 25vw, 500px);
    color: rgba(200, 161, 74, 0.02);
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    text-transform: uppercase;
    user-select: none;
}

.bg-word-1 { top: 10%; left: -5%; }
.bg-word-2 { bottom: 15%; right: -5%; font-size: clamp(150px, 20vw, 400px); }

.hero-content {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
    min-height: 70vh;
}

.hero-left .label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C8A14A;
    font-weight: 600;
    border-left: 2px solid #C8A14A;
    padding-left: 16px;
}

.hero-left h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-top: 4px;
}

.hero-left h1 .gold {
    color: #C8A14A;
    display: block;
    margin-top: 4px;
}

.hero-left h1 .sub {
    font-size: 0.45em;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 800;
    letter-spacing: 0.15em;
    display: block;
    margin-top: 8px;
}

.hero-left .mission {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    font-weight: 300;
    margin-top: 8px;
}

.hero-left .since {
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(200, 161, 74, 0.4);
    font-weight: 500;
    margin-top: 8px;
}

.hero-left .since strong {
    color: #C8A14A;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.float-card {
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.4s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.float-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #C8A14A;
    opacity: 0;
    transition: opacity 0.3s;
}

.float-card:hover::before {
    opacity: 1;
}

.float-card:hover {
    transform: translateX(8px);
    background: rgba(26, 26, 26, 0.7);
    border-color: rgba(200, 161, 74, 0.2);
}

.float-card .icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(200, 161, 74, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #C8A14A;
    flex-shrink: 0;
}

.float-card .info .title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #FFFFFF;
}

.float-card .info .desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 2px;
}

.float-card .badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C8A14A;
    font-weight: 600;
    background: rgba(200, 161, 74, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(200, 161, 74, 0.1);
}

.float-card-lg { padding: 24px 28px; }
.float-card-sm { padding: 14px 20px; }
.float-card-sm .icon { width: 36px; height: 36px; font-size: 1rem; }

.operations-strip {
    position: relative;
    z-index: 10;
    width: 100%;
    background: rgba(11, 11, 12, 0.8);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(200, 161, 74, 0.08);
    padding: 20px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.operations-strip .op-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.operations-strip .op-item .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.operations-strip .op-item .gold {
    color: #C8A14A;
    font-weight: 600;
}

.operations-strip .divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.06);
}

.scroll-indicator {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 20px 0 30px;
    animation: bounce 2s infinite;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 161, 74, 0.3), transparent);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== CHAPTER 2: SECTORS WE PROTECT ========== */
.chapter-sectors {
    background: #FFFFFF;
    padding: 120px 60px;
}

.sectors-container {
    max-width: 1440px;
    margin: 0 auto;
}

.sectors-container .section-label {
    color: #C8A14A;
}

.sectors-container .section-heading {
    color: #0B0B0C;
    margin-bottom: 12px;
}

.sectors-container .section-sub {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 48px;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sector-tile {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.4s;
    border: 1px solid rgba(200, 161, 74, 0.05);
}

.sector-tile:hover {
    transform: scale(1.03);
    border-color: rgba(200, 161, 74, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sector-tile .tile-content {
    text-align: center;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.sector-tile .tile-content i {
    font-size: 2.5rem;
    color: #C8A14A;
    margin-bottom: 12px;
    display: block;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.sector-tile:hover .tile-content i {
    opacity: 1;
}

.sector-tile .tile-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sector-tile .tile-content p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 4px;
}

.sector-tile .tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 60%);
    z-index: 1;
}

.sector-tile .tile-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transition: opacity 0.4s;
}

.sector-tile:hover .tile-bg {
    opacity: 0.7;
}

.tile-gov .tile-bg { background-image: linear-gradient(135deg, #1a1a2e, #16213e); }
.tile-mining .tile-bg { background-image: linear-gradient(135deg, #1a1a1a, #2d1f1f); }
.tile-health .tile-bg { background-image: linear-gradient(135deg, #0d1f2d, #1a2d3d); }
.tile-retail .tile-bg { background-image: linear-gradient(135deg, #1a1a2e, #2d1f2d); }
.tile-edu .tile-bg { background-image: linear-gradient(135deg, #1a1a2e, #1f2d1a); }
.tile-commercial .tile-bg { background-image: linear-gradient(135deg, #1a1a1a, #2d2d1f); }
.tile-residential .tile-bg { background-image: linear-gradient(135deg, #0d1f1f, #1a2d2d); }
.tile-logistics .tile-bg { background-image: linear-gradient(135deg, #1a1a2e, #2d1f1f); }
.tile-aviation .tile-bg { background-image: linear-gradient(135deg, #1a1a2e, #1f2d3d); }

.sector-tile.tall { grid-row: span 2; aspect-ratio: auto; }
.sector-tile.wide { grid-column: span 2; aspect-ratio: auto; }

/* ========== CHAPTER 3: WHO WE ARE ========== */
.chapter-who {
    background: #FFFFFF;
    padding: 120px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(200, 161, 74, 0.05);
}

.who-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1A1A1A;
    height: 600px;
    border: 1px solid rgba(200, 161, 74, 0.05);
}

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

.who-image .overlay-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(200, 161, 74, 0.05), transparent);
}

.who-content .section-label {
    color: #C8A14A;
}

.who-content .section-heading {
    color: #0B0B0C;
    font-size: clamp(3.5rem, 5vw, 5rem);
    margin-bottom: 16px;
}

.who-content .section-heading .gold {
    color: #C8A14A;
}

.who-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(0, 0, 0, 0.6);
    max-width: 520px;
    margin-bottom: 20px;
    font-weight: 400;
}

.who-timeline {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.who-timeline .year {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #C8A14A;
    letter-spacing: -0.02em;
}

.who-timeline .year span {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.who-timeline .year-arrow {
    color: rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
}

/* ========== CHAPTER 4: LEADERSHIP ========== */
.chapter-leadership {
    background: #0B0B0C;
    padding: 120px 60px;
    border-top: 1px solid rgba(200, 161, 74, 0.05);
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.leadership-container {
    max-width: 1440px;
    margin: 0 auto;
}

.leadership-container .section-label {
    color: #C8A14A;
}

.leadership-container .section-heading {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.leadership-container .section-sub {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 48px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.leader-card {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
    cursor: default;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 161, 74, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.leader-card .photo {
    width: 100%;
    height: 400px;
    background: #1A1A1A;
    overflow: hidden;
}

.leader-card .photo img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: right center;
    background: #1A1A1A;
}

.leader-card .left img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: left center!important;
    background: #1A1A1A;
}


.leader-card .photo .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(200, 161, 74, 0.1);
    background: linear-gradient(135deg, #1A1A1A, #25292E);
}

.leader-card .info {
    padding: 32px 36px 36px;
}

.leader-card .info .title {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C8A14A;
    font-weight: 600;
}

.leader-card .info h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-top: 4px;
}

.leader-card .info .role {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

.leader-card .info .bio {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 16px;
}

.leader-card .info .credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.leader-card .info .credentials span {
    padding: 4px 16px;
    border: 1px solid rgba(200, 161, 74, 0.1);
    border-radius: 20px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.leader-card .info .credentials span.gold {
    color: #C8A14A;
    border-color: rgba(200, 161, 74, 0.2);
}

/* ========== CHAPTER 5: INTEGRATED SOLUTIONS ========== */
.chapter-solutions {
    background: #FFFFFF;
    padding: 120px 60px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.solutions-container {
    max-width: 1440px;
    margin: 0 auto;
}

.solutions-container .section-label {
    color: #C8A14A;
}

.solutions-container .section-heading {
    color: #0B0B0C;
    margin-bottom: 12px;
}

.solutions-container .section-sub {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 48px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solution-card {
    background: #0B0B0C;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(200, 161, 74, 0.05);
    transition: all 0.4s;
    cursor: default;
}

.solution-card:hover {
    border-color: rgba(200, 161, 74, 0.2);
    transform: translateY(-6px);
    background: rgba(11, 11, 12, 0.9);
}

.solution-card .icon {
    font-size: 2rem;
    color: #C8A14A;
    margin-bottom: 16px;
    display: block;
}

.solution-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.solution-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 8px;
}

.solution-card .features {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.solution-card .features span {
    font-size: 0.6rem;
    padding: 4px 12px;
    background: rgba(200, 161, 74, 0.05);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

/* ========== CHAPTER 6: THE HUMAN SIDE ========== */
.chapter-human {
    background: #0B0B0C;
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200, 161, 74, 0.05);
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.chapter-human .bg-words {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(120px, 20vw, 400px);
    color: rgba(200, 161, 74, 0.015);
    right: -5%;
    bottom: 10%;
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.human-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.human-container .section-label {
    color: #C8A14A;
}

.human-container .section-heading {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.human-container .section-sub {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
    max-width: 700px;
}

.human-quote {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    max-width: 900px;
    border-left: 3px solid #C8A14A;
    padding-left: 40px;
    margin-top: 20px;
}

.human-quote .gold {
    color: #C8A14A;
}

.human-quote .attribution {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========== CHAPTER 7: COMMAND CENTRE ========== */
.chapter-command {
    background: #0B0B0C;
    padding: 120px 60px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.command-container {
    max-width: 1440px;
    margin: 0 auto;
}

.command-container .section-label {
    color: #C8A14A;
}

.command-container .section-heading {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.command-container .section-sub {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 48px;
}

.command-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.command-card {
    background: rgba(26, 26, 26, 0.4);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
    cursor: default;
    text-align: center;
}

.command-card:hover {
    border-color: rgba(200, 161, 74, 0.2);
    transform: translateY(-6px);
    background: rgba(26, 26, 26, 0.6);
}

.command-card .icon {
    font-size: 2.5rem;
    color: #C8A14A;
    margin-bottom: 16px;
    display: block;
}

.command-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.command-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 8px;
}

/* ========== CHAPTER 8: AWARDS & RECOGNITION ========== */
.chapter-awards {
    background: #FFFFFF;
    padding: 120px 60px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.awards-container {
    max-width: 1440px;
    margin: 0 auto;
}

.awards-container .section-label {
    color: #C8A14A;
}

.awards-container .section-heading {
    color: #0B0B0C;
    margin-bottom: 12px;
}

.awards-container .section-sub {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 48px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.award-card {
    background: #0B0B0C;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(200, 161, 74, 0.05);
    transition: all 0.4s;
    cursor: default;
    text-align: center;
}

.award-card:hover {
    border-color: rgba(200, 161, 74, 0.2);
    transform: translateY(-4px);
}

.award-card .icon {
    font-size: 2rem;
    color: #C8A14A;
    margin-bottom: 12px;
    display: block;
}

.award-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.award-card .org {
    font-size: 0.7rem;
    color: #C8A14A;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
}

.award-card .year {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 8px;
    letter-spacing: 2px;
}

/* ========== CHAPTER 9: WHY CHOOSE ASI ========== */
.chapter-why {
    background: #0B0B0C;
    padding: 120px 60px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.why-container {
    max-width: 1440px;
    margin: 0 auto;
}

.why-container .section-label {
    color: #C8A14A;
}

.why-container .section-heading {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.why-container .section-sub {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 48px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-item {
    background: rgba(26, 26, 26, 0.3);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s;
    cursor: default;
    text-align: center;
}

.why-item:hover {
    border-color: rgba(200, 161, 74, 0.15);
    transform: translateY(-4px);
}

.why-item .icon {
    font-size: 1.8rem;
    color: #C8A14A;
    margin-bottom: 12px;
    display: block;
}

.why-item h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

/* ========== CHAPTER 10: COMMUNITY IMPACT ========== */
.chapter-community {
    background: #FFFFFF;
    padding: 120px 60px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.community-container {
    max-width: 1440px;
    margin: 0 auto;
}

.community-container .section-label {
    color: #C8A14A;
}

.community-container .section-heading {
    color: #0B0B0C;
    margin-bottom: 12px;
}

.community-container .section-sub {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 48px;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.community-card {
    background: #0B0B0C;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(200, 161, 74, 0.05);
    transition: all 0.4s;
    cursor: default;
    text-align: center;
}

.community-card:hover {
    border-color: rgba(200, 161, 74, 0.2);
    transform: translateY(-4px);
}

.community-card .icon {
    font-size: 2rem;
    color: #C8A14A;
    margin-bottom: 12px;
    display: block;
}

.community-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
}

.community-card p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

/* ========== CHAPTER 11: EMERGENCY BANNER ========== */
.chapter-emergency {
    background: #0B0B0C;
    padding: 80px 60px;
    border-top: 1px solid rgba(200, 161, 74, 0.08);
    border-bottom: 1px solid rgba(200, 161, 74, 0.08);
}

.emergency-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(200, 161, 74, 0.03), transparent);
    border-radius: 20px;
    border: 1px solid rgba(200, 161, 74, 0.05);
}

.emergency-container .label {
    font-size: 0.6rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(200, 161, 74, 0.4);
    font-weight: 600;
}

.emergency-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: #FFFFFF;
    margin: 16px 0;
}

.emergency-container h2 .gold {
    color: #C8A14A;
}

.emergency-container .number {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #C8A14A;
    letter-spacing: 4px;
}

.emergency-container p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ========== CHAPTER 12: CONSULTATION ========== */
.chapter-consult {
    background: #FFFFFF;
    padding: 120px 60px;
}

.consult-container {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.consult-content .section-label {
    color: #C8A14A;
}

.consult-content .section-heading {
    color: #0B0B0C;
    margin-bottom: 12px;
}

.consult-content .section-sub {
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
}

.consult-form {
    background: #0B0B0C;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(200, 161, 74, 0.05);
}

.consult-form .form-group {
    margin-bottom: 20px;
}

.consult-form label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 6px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}

.consult-form input:focus,
.consult-form select:focus,
.consult-form textarea:focus {
    outline: none;
    border-color: rgba(200, 161, 74, 0.3);
}

.consult-form textarea {
    min-height: 100px;
    resize: vertical;
}

.consult-form .btn-primary {
    width: 100%;
    justify-content: center;
}

/* ========== CHAPTER 13: FOOTER ========== */
.chapter-footer {
    background: #0B0B0C;
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(200, 161, 74, 0.05);
    position: relative;
    overflow: hidden;
}

.chapter-footer .bg-watermark {
    position: absolute;
    right: -5%;
    bottom: -10%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(200px, 30vw, 600px);
    color: rgba(200, 161, 74, 0.015);
    pointer-events: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200, 161, 74, 0.05);
}

.footer-brand .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #FFFFFF;
}

.footer-brand .logo .gold {
    color: #C8A14A;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 12px;
    max-width: 300px;
}

.footer-brand .social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-brand .social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
}

.footer-brand .social a:hover {
    border-color: #C8A14A;
    color: #C8A14A;
    background: rgba(200, 161, 74, 0.05);
}

.footer-col h5 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #C8A14A;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.footer-bottom .badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom .badges span {
    padding: 4px 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .command-header { padding: 10px 24px; }
    .header-nav { gap: 16px; }
    .header-status { display: none; }
    .sectors-grid { grid-template-columns: repeat(2, 1fr); }
    .leadership-grid { grid-template-columns: 1fr; }
    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .community-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content { grid-template-columns: 1fr; padding: 40px 40px 30px; min-height: auto; gap: 30px; }
    .operations-strip { padding: 16px 24px; justify-content: center; }
    .operations-strip .divider { display: none; }
    .who-container { grid-template-columns: 1fr; gap: 40px; }
    .who-image { height: 400px; }
}

@media (max-width: 768px) {
    .command-header { padding: 8px 16px; height: 60px; }
    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(11, 11, 12, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px 24px;
        border-bottom: 1px solid rgba(200, 161, 74, 0.06);
        gap: 12px;
    }
    .header-nav.open { display: flex; }
    .header-nav li a { font-size: 0.8rem; padding: 6px 0; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }

    .chapter-sectors { padding: 80px 24px; }
    .chapter-who { padding: 80px 24px; }
    .chapter-leadership { padding: 80px 24px; }
    .chapter-solutions { padding: 80px 24px; }
    .chapter-human { padding: 80px 24px; }
    .chapter-command { padding: 80px 24px; }
    .chapter-awards { padding: 80px 24px; }
    .chapter-why { padding: 80px 24px; }
    .chapter-community { padding: 80px 24px; }
    .chapter-emergency { padding: 60px 24px; }
    .chapter-consult { padding: 80px 24px; }
    .chapter-footer { padding: 60px 24px 30px; }

    .sectors-grid { grid-template-columns: 1fr 1fr; }
    .solutions-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .community-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 30px 20px 20px; }
    .operations-strip { flex-direction: column; align-items: flex-start; gap: 8px; padding: 16px 20px; }
    .operations-strip .op-item { font-size: 0.65rem; }
    .hero-left h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .who-content .section-heading { font-size: clamp(2.5rem, 8vw, 3.5rem); }
    .who-timeline { flex-direction: column; gap: 8px; }
    .who-timeline .year-arrow { transform: rotate(90deg); }
    .who-image { height: 280px; }
    .hud-corner { display: none; }
    .bg-word { display: none; }
    .scroll-indicator { padding: 10px 0 20px; }
    .float-card { padding: 14px 18px; }
    .float-card .icon { width: 36px; height: 36px; font-size: 1rem; }
    .sector-tile.tall { grid-row: span 1; }
    .sector-tile.wide { grid-column: span 1; }
    .human-quote { padding-left: 20px; font-size: clamp(1.5rem, 5vw, 2.2rem); }
    .emergency-container { padding: 30px 20px; }
    .consult-container { grid-template-columns: 1fr; }
    .consult-form { padding: 24px; }
    .leader-card .photo { height: 280px; }
}

@media (max-width: 480px) {
    .hero-left h1 { font-size: 2rem; }
    .hero-left .label { font-size: 0.6rem; letter-spacing: 3px; }
    .hero-left .mission { font-size: 1rem; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline { width: 100%; justify-content: center; padding: 14px 28px; }
    .sectors-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .sector-tile .tile-content i { font-size: 1.8rem; }
    .sector-tile .tile-content h4 { font-size: 0.7rem; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-brand .social { justify-content: center; }
    .header-logo .sub { font-size: 0.35rem; letter-spacing: 2px; }
    .header-logo { font-size: 1.1rem; }
    .awards-grid { grid-template-columns: 1fr; }
    .command-grid { grid-template-columns: 1fr; }
}