@import url('fonts.css');
:root {
    --primary-olive: #4A4A2F;
    --primary-olive-light: #6B6B45;
    --primary-navy: #1A2F4A;
    --primary-navy-light: #2A4A6A;
    --accent-amber: #C4A035;
    --accent-amber-bright: #D4B045;
    --accent-cyan: #00B4D8;
    --accent-green: #00ff88;
    --dark-bg: #0A0C0F;
    --dark-surface: #12151A;
    --dark-elevated: #1A1E25;
    --text-primary: #E8E8E8;
    --text-secondary: #A0A0A0;
    --text-muted: #606060;
    --border-subtle: rgba(255,255,255,0.08);
    --grid-line: rgba(255,255,255,0.03);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Titillium Web', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Arabic Font Support */
html[lang="ar"] body,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] h4,
html[lang="ar"] p, html[lang="ar"] span, html[lang="ar"] a,
html[lang="ar"] button, html[lang="ar"] input, html[lang="ar"] select, html[lang="ar"] textarea {
    font-family: 'Tajawal', sans-serif;
}

html[dir="rtl"] .hero-bg-element { right: auto; left: -10%; }
html[dir="rtl"] .hero-visual { right: auto; left: 3%; }
html[dir="rtl"] .hero-stats { left: auto; right: 4%; }
html[dir="rtl"] .stat-item { text-align: right; }
html[dir="rtl"] .hud-status-panel { right: auto; left: 16px; }
html[dir="rtl"] .hud-telemetry { left: auto; right: 16px; }
html[dir="rtl"] .service-card::before { left: auto; right: 0; }
html[dir="rtl"] .about-image-frame::before { left: 15px; right: -15px; }
html[dir="rtl"] .about-badge { right: auto; left: -30px; }
html[dir="rtl"] .about-feature { border-left: none; border-right: 3px solid var(--primary-olive-light); }
html[dir="rtl"] .solution-row:nth-child(even) { direction: ltr; }
html[dir="rtl"] .solution-row:nth-child(even) > * { direction: rtl; }
html[dir="rtl"] .footer-brand { text-align: right; }
html[dir="rtl"] .footer-column { text-align: right; }

/* Grid Background */
.grid-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Clients Section */
.clients {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
    background: var(--dark-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.clients-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 4%;
}

.clients-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

html[lang="ar"] .clients-title {
    font-family: 'Tajawal', sans-serif;
}

.clients-track {
    display: flex;
    animation: scrollClients 30s linear infinite;
    width: max-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.clients-slide {
    display: flex;
    gap: 4rem;
    padding: 0 2rem;
}

.client-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 150px;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    border-radius: 4px;
}

.client-item:hover {
    border-color: var(--accent-amber);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.client-item img {
    max-height: 55px;
    max-width: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.client-item:hover img {
    opacity: 1;
}

.client-name-placeholder {
    font-size: 0.75rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
    word-wrap: break-word;
}

/* Custom Button Icons */
.custom-btn svg, .custom-btn img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.custom-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .clients-slide { gap: 2rem; }
    .client-item { min-width: 120px; padding: 0.75rem 1rem; height: 70px; }
    .client-item img { max-height: 45px; max-width: 100px; }
}

/* Language Toggle */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    overflow: hidden;
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--accent-amber);
    color: var(--dark-bg);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, var(--dark-bg) 0%, transparent 100%);
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(10, 12, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.7rem 4%;
}

.logo {
    height: 40px; width: auto; max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .logo { height: 32px; max-width: 140px; }
}

.nav-links {
    display: flex; gap: 2.5rem; list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}

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

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

/* Dropdown Menus */
.nav-links li { position: relative; }

.nav-links li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-links li.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--dark-elevated, #1A1E25);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 6px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: all 0.25s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    z-index: 1000;
}

.nav-links li.has-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li { width: 100%; }

.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: var(--text-secondary);
    text-decoration: none;
}

.dropdown-menu a::after { display: none; }

.dropdown-menu a:hover {
    color: var(--accent-amber);
    background: rgba(255,255,255,0.04);
}

[dir="rtl"] .dropdown-menu { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .nav-links li.has-dropdown:hover > .dropdown-menu { transform: translateX(50%) translateY(0); }

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 1rem;
        min-width: auto;
    }

    [dir="rtl"] .dropdown-menu {
        transform: none;
        padding: 0 1rem 0 0;
    }

    .dropdown-arrow { display: none; }
}

.nav-cta {
    padding: 0.7rem 1.8rem;
    background: transparent;
    border: 1px solid var(--accent-amber);
    color: var(--accent-amber);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-amber);
    color: var(--dark-bg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px; cursor: pointer;
    padding: 10px; z-index: 1001;
}

.mobile-toggle span {
    width: 25px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 4%;
    overflow: hidden;
}

.hero-bg-element {
    position: absolute;
    top: 50%; right: -10%;
    transform: translateY(-50%);
    width: 70%; height: 120%;
    background: radial-gradient(ellipse at center, rgba(26, 47, 74, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-lines {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden; pointer-events: none;
}

.hero-line {
    position: absolute;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--accent-amber) 50%, transparent 100%);
    opacity: 0.1;
    animation: lineMove 8s linear infinite;
}
.hero-line:nth-child(1) { left: 20%; animation-delay: 0s; }
.hero-line:nth-child(2) { left: 40%; animation-delay: 2s; }
.hero-line:nth-child(3) { left: 60%; animation-delay: 4s; }
.hero-line:nth-child(4) { left: 80%; animation-delay: 6s; }

@keyframes lineMove {
    0% { transform: translateY(-100%); opacity: 0; }
    50% { opacity: 0.15; }
    100% { transform: translateY(100%); opacity: 0; }
}

/* ========== PTZ CAMERA SECURITY HUD ========== */
.hero-visual {
    position: absolute;
    top: 50%; right: 3%;
    transform: translateY(-50%);
    width: 540px; height: 540px;
    pointer-events: none;
}

.security-hud {
    position: relative;
    width: 100%; height: 100%;
}

/* Main HUD Frame */
.hud-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 160, 53, 0.15);
    background: rgba(10, 12, 15, 0.6);
    backdrop-filter: blur(2px);
}

.hud-frame::before,
.hud-frame::after {
    content: '';
    position: absolute;
    width: 50px; height: 50px;
    border: 2px solid var(--accent-amber);
    opacity: 0.7;
}
.hud-frame::before {
    top: 8px; left: 8px;
    border-right: none; border-bottom: none;
}
.hud-frame::after {
    bottom: 8px; right: 8px;
    border-left: none; border-top: none;
}

.hud-corner-tr, .hud-corner-bl {
    position: absolute;
    width: 50px; height: 50px;
    border: 2px solid var(--accent-amber);
    opacity: 0.7;
}
.hud-corner-tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.hud-corner-bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }

/* PTZ Camera Label Bar */
.ptz-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 36px;
    background: rgba(196, 160, 53, 0.08);
    border-bottom: 1px solid rgba(196, 160, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
}

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

.ptz-rec-dot {
    width: 8px; height: 8px;
    background: #ff3333;
    border-radius: 50%;
    animation: recBlink 1s step-end infinite;
    box-shadow: 0 0 6px rgba(255, 51, 51, 0.6);
}

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

.ptz-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-amber);
}

.ptz-header-right {
    display: flex; align-items: center; gap: 14px;
}

.ptz-time {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(196, 160, 53, 0.8);
}

/* Central Crosshair */
.crosshair {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    z-index: 4;
}

.crosshair-ring {
    position: absolute;
    inset: 0;
    border: 1.5px solid rgba(196, 160, 53, 0.35);
    border-radius: 50%;
}

.crosshair-ring-inner {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    border: 1px solid rgba(196, 160, 53, 0.25);
    border-radius: 50%;
}

.crosshair-h {
    position: absolute;
    top: 50%; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg,
        var(--accent-amber), transparent 35%,
        transparent 65%, var(--accent-amber));
    opacity: 0.5;
}

.crosshair-v {
    position: absolute;
    top: 0; left: 50%;
    width: 1px; height: 100%;
    background: linear-gradient(180deg,
        var(--accent-amber), transparent 35%,
        transparent 65%, var(--accent-amber));
    opacity: 0.5;
}

.crosshair-tick {
    position: absolute;
    background: var(--accent-amber);
    opacity: 0.6;
}
.crosshair-tick.top { top: -8px; left: 50%; width: 1px; height: 8px; transform: translateX(-50%); }
.crosshair-tick.bottom { bottom: -8px; left: 50%; width: 1px; height: 8px; transform: translateX(-50%); }
.crosshair-tick.left { left: -8px; top: 50%; width: 8px; height: 1px; transform: translateY(-50%); }
.crosshair-tick.right { right: -8px; top: 50%; width: 8px; height: 1px; transform: translateY(-50%); }

/* PTZ Pan/Tilt Indicators */
.ptz-compass {
    position: absolute;
    bottom: 55px; left: 20px;
    width: 80px; height: 80px;
    z-index: 4;
}

.compass-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 160, 53, 0.2);
    border-radius: 50%;
}

.compass-needle {
    position: absolute;
    top: 50%; left: 50%;
    width: 2px; height: 30px;
    background: linear-gradient(to bottom, var(--accent-amber), transparent);
    transform-origin: bottom center;
    transform: translate(-50%, -100%);
    animation: compassSweep 8s ease-in-out infinite;
}

@keyframes compassSweep {
    0%, 100% { transform: translate(-50%, -100%) rotate(-25deg); }
    50% { transform: translate(-50%, -100%) rotate(25deg); }
}

.compass-label {
    position: absolute;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    color: rgba(196, 160, 53, 0.5);
    letter-spacing: 1px;
}
.compass-label.n { top: 2px; left: 50%; transform: translateX(-50%); }
.compass-label.s { bottom: 2px; left: 50%; transform: translateX(-50%); }
.compass-label.e { right: 4px; top: 50%; transform: translateY(-50%); }
.compass-label.w { left: 4px; top: 50%; transform: translateY(-50%); }

.compass-center-dot {
    position: absolute;
    top: 50%; left: 50%;
    width: 4px; height: 4px;
    background: var(--accent-amber);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Radar Display */
.radar-display {
    position: absolute;
    bottom: 55px; right: 20px;
    width: 110px; height: 110px;
    z-index: 4;
}

.radar-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 180, 216, 0.03);
    border: 1px solid rgba(0, 180, 216, 0.15);
    border-radius: 50%;
}

.radar-ring {
    position: absolute;
    border: 1px solid rgba(0, 180, 216, 0.1);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.radar-ring:nth-child(2) { width: 66%; height: 66%; }
.radar-ring:nth-child(3) { width: 33%; height: 33%; }

.radar-sweep-arm {
    position: absolute;
    top: 50%; left: 50%;
    width: 50%; height: 1.5px;
    transform-origin: left center;
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.8), transparent);
    animation: radarSpin 3s linear infinite;
}

.radar-sweep-arm::before {
    content: '';
    position: absolute;
    top: -40px; left: 0;
    width: 100%; height: 80px;
    background: conic-gradient(from -90deg, transparent, rgba(0, 180, 216, 0.12), transparent);
    transform-origin: left center;
}

@keyframes radarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-blip {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--accent-cyan);
    opacity: 0;
    animation: blipFade 3s ease-in-out infinite;
}
.radar-blip:nth-child(5) { top: 30%; left: 60%; animation-delay: 0.5s; }
.radar-blip:nth-child(6) { top: 55%; left: 35%; animation-delay: 1.5s; }
.radar-blip:nth-child(7) { top: 40%; left: 72%; animation-delay: 2.2s; }

@keyframes blipFade {
    0%, 60%, 100% { opacity: 0; }
    65%, 90% { opacity: 1; }
}

.radar-label {
    position: absolute;
    top: -16px; left: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(0, 180, 216, 0.5);
}

/* Scan Lines */
.hud-scanline {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,0,0,0.05) 3px,
        rgba(0,0,0,0.05) 4px
    );
    z-index: 3;
    pointer-events: none;
}

.hud-sweep-line {
    position: absolute;
    left: 0; width: 100%;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 10%, rgba(0, 180, 216, 0.3) 50%, transparent 90%);
    animation: sweepDown 4s linear infinite;
    z-index: 3;
}

@keyframes sweepDown {
    0% { top: 36px; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* Detection Boxes */
.detection-box {
    position: absolute;
    border: 1.5px solid var(--accent-cyan);
    z-index: 4;
    opacity: 0;
    animation: detectAppear 6s ease-in-out infinite;
}

.detection-box::before {
    content: attr(data-label);
    position: absolute;
    top: -18px; left: 0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0, 180, 216, 0.1);
    padding: 1px 6px;
    white-space: nowrap;
}

.detection-box::after {
    content: '';
    position: absolute;
    top: -1.5px; left: -1.5px;
    right: -1.5px; bottom: -1.5px;
    border: 1.5px solid var(--accent-cyan);
    opacity: 0.3;
    animation: detectPulseBox 1.5s ease-in-out infinite;
}

.detection-box:nth-child(1) {
    top: 28%; left: 18%; width: 70px; height: 55px;
    animation-delay: 0s;
}
.detection-box:nth-child(2) {
    top: 45%; left: 58%; width: 85px; height: 65px;
    animation-delay: 2s;
}
.detection-box:nth-child(3) {
    top: 65%; left: 30%; width: 60px; height: 50px;
    animation-delay: 4s;
}

@keyframes detectAppear {
    0%, 15%, 85%, 100% { opacity: 0; transform: scale(0.95); }
    20%, 80% { opacity: 1; transform: scale(1); }
}

@keyframes detectPulseBox {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.08); }
}

/* Status Panel - Right Side */
.hud-status-panel {
    position: absolute;
    top: 50px; right: 16px;
    display: flex; flex-direction: column; gap: 8px;
    z-index: 5;
}

.hud-status-item {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--text-muted);
}

.hud-status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 4px var(--accent-green);
    animation: statusPulse 2s ease-in-out infinite;
}

.hud-status-dot.amber {
    background: var(--accent-amber);
    box-shadow: 0 0 4px var(--accent-amber);
    animation-delay: 0.5s;
}

.hud-status-dot.cyan {
    background: var(--accent-cyan);
    box-shadow: 0 0 4px var(--accent-cyan);
    animation-delay: 1s;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Telemetry Left Panel */
.hud-telemetry {
    position: absolute;
    top: 50px; left: 16px;
    display: flex; flex-direction: column; gap: 6px;
    z-index: 5;
}

.telemetry-row {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.58rem; font-weight: 500;
    letter-spacing: 1px;
    color: rgba(196, 160, 53, 0.45);
}

.telemetry-val {
    color: rgba(196, 160, 53, 0.75);
    font-weight: 700;
}

/* Bottom Bar */
.hud-bottom-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 36px;
    background: rgba(196, 160, 53, 0.05);
    border-top: 1px solid rgba(196, 160, 53, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 5;
}

.hud-bottom-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(196, 160, 53, 0.5);
}

.hud-zoom-bar {
    display: flex; align-items: center; gap: 6px;
}

.zoom-track {
    width: 60px; height: 3px;
    background: rgba(196, 160, 53, 0.15);
    position: relative;
    overflow: hidden;
}

.zoom-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 40%;
    background: var(--accent-amber);
    animation: zoomPulse 6s ease-in-out infinite;
}

@keyframes zoomPulse {
    0%, 100% { width: 35%; }
    50% { width: 65%; }
}

.zoom-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 1px;
    color: rgba(196, 160, 53, 0.6);
}

/* Grid overlay */
.hud-grid {
    position: absolute;
    inset: 36px 0;
    background-image: 
        linear-gradient(rgba(196, 160, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 160, 53, 0.03) 1px, transparent 1px);
    background-size: 27px 27px;
    z-index: 1;
}

/* Vignette */
.hud-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(10, 12, 15, 0.5) 100%);
    z-index: 2;
    pointer-events: none;
}

/* PTZ Motion Trail */
.ptz-trail {
    position: absolute;
    top: 50%; left: 50%;
    width: 200px; height: 200px;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.trail-arc {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(196, 160, 53, 0.1);
    border-radius: 50%;
}

.trail-arc:nth-child(2) {
    inset: 20px;
    border-style: dotted;
    animation: trailRotate 20s linear infinite;
}

@keyframes trailRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Hero Visual Responsive */
@media (max-width: 1200px) {
    .hero-visual { width: 440px; height: 440px; right: 2%; opacity: 0.8; }
}

@media (max-width: 992px) {
    .hero-visual { width: 380px; height: 380px; right: -2%; opacity: 0.5; }
}

@media (max-width: 768px) {
    .hero-visual {
        position: absolute;
        top: auto; bottom: 5%;
        right: 50%;
        transform: translateX(50%);
        width: 300px; height: 300px;
        opacity: 0.25;
    }
    .ptz-compass, .radar-display, .hud-telemetry { display: none; }
}

/* ========== HERO CONTENT ========== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(196, 160, 53, 0.08);
    border: 1px solid rgba(196, 160, 53, 0.25);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    background: var(--accent-amber);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-badge span {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600; font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-amber);
}

.hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-title .highlight {
    color: var(--primary-olive-light);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--accent-amber);
    color: var(--dark-bg);
    border: none;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary:hover {
    background: var(--accent-amber-bright);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 160, 53, 0.3);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

.hero-stats {
    position: absolute;
    bottom: 4rem; left: 4%;
    display: flex; gap: 4rem;
    animation: fadeInUp 1s ease 1s both;
}

.stat-item { text-align: left; }

.stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.5rem; font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== SECTIONS ========== */
section {
    position: relative;
    z-index: 1;
    padding: 8rem 4%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services */
.services { background: var(--dark-surface); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--accent-amber);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 160, 53, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.service-card:hover::before { height: 100%; }

.service-icon {
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 74, 47, 0.2);
    border: 1px solid rgba(74, 74, 47, 0.4);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 28px; height: 28px;
    stroke: var(--primary-olive-light);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem; font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-feature {
    padding: 0.35rem 0.75rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Solutions */
.solutions { background: var(--dark-bg); }

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

.solution-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.solution-row:nth-child(even) { direction: rtl; }
.solution-row:nth-child(even) > * { direction: ltr; }

.solution-visual {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--dark-surface);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.solution-visual-inner {
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, var(--dark-elevated) 0%, var(--primary-navy) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-visual svg {
    width: 80px; height: 80px;
    stroke: var(--accent-amber);
    opacity: 0.6;
}

.solution-visual-grid {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(196, 160, 53, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 160, 53, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.solution-visual-corner {
    position: absolute;
    width: 40px; height: 40px;
    border: 2px solid var(--accent-amber);
    opacity: 0.5;
}
.solution-visual-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.solution-visual-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.solution-visual-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.solution-visual-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }

.solution-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem; font-weight: 700;
    margin-bottom: 1rem;
}

.solution-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solution-list { list-style: none; }

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.solution-list li:last-child { border-bottom: none; }

.solution-list-icon {
    width: 20px; height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 160, 53, 0.1);
    margin-top: 2px;
}

.solution-list-icon::after {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent-amber);
}

/* Industries */
.industries { background: var(--dark-surface); }

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-subtle);
    max-width: 1200px;
    margin: 0 auto;
}

.industry-card {
    padding: 3rem 2rem;
    background: var(--dark-elevated);
    text-align: center;
    transition: all 0.4s ease;
}

.industry-card:hover { background: var(--primary-navy); }
.industry-card:hover .industry-icon svg { stroke: var(--accent-amber); }

.industry-icon { margin-bottom: 1.5rem; }

.industry-icon svg {
    width: 48px; height: 48px;
    stroke: var(--text-muted);
    transition: stroke 0.4s ease;
}

.industry-card h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem; font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About */
.about { background: var(--dark-bg); }

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.about-visual { position: relative; }

/* ===== ANIMATED ABOUT VISUAL ===== */
.about-image-frame {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-surface) 100%);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -15px; left: -15px;
    right: 15px; bottom: 15px;
    border: 1px solid var(--accent-amber);
    opacity: 0.3;
}

.about-anim {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-anim-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(196, 160, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 160, 53, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Animated Shield */
.about-shield {
    position: relative;
    width: 160px;
    height: 190px;
    z-index: 2;
}

.about-shield svg {
    width: 100%;
    height: 100%;
}

.shield-outline {
    fill: none;
    stroke: var(--accent-amber);
    stroke-width: 1.5;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: shieldDraw 3s ease forwards, shieldGlow 4s ease-in-out 3s infinite;
}

.shield-inner {
    fill: none;
    stroke: var(--accent-amber);
    stroke-width: 1;
    opacity: 0.3;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: shieldDraw 2s ease 0.8s forwards;
}

.shield-check {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: checkDraw 0.6s ease 2.5s forwards;
}

@keyframes shieldDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes shieldGlow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(196, 160, 53, 0.2)); }
    50% { filter: drop-shadow(0 0 15px rgba(196, 160, 53, 0.4)); }
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

/* Orbiting Rings */
.about-orbit {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(196, 160, 53, 0.1);
}

.about-orbit:nth-child(2) {
    width: 240px; height: 240px;
    animation: orbitSpin 20s linear infinite;
}

.about-orbit:nth-child(3) {
    width: 300px; height: 300px;
    animation: orbitSpin 30s linear infinite reverse;
    border-style: dashed;
}

.about-orbit:nth-child(4) {
    width: 360px; height: 360px;
    animation: orbitSpin 25s linear infinite;
    border-style: dotted;
    border-color: rgba(0, 180, 216, 0.08);
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-amber);
}

.about-orbit:nth-child(2) .orbit-dot { top: -3px; left: 50%; }
.about-orbit:nth-child(3) .orbit-dot { bottom: -3px; right: 20%; }
.about-orbit:nth-child(4) .orbit-dot {
    top: 30%; left: -3px;
    background: var(--accent-cyan);
    box-shadow: 0 0 6px var(--accent-cyan);
}

/* About Data Points */
.about-data-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(196, 160, 53, 0.5);
    z-index: 3;
    opacity: 0;
    animation: dataFadeIn 0.5s ease forwards;
}

.about-data-point:nth-child(6) { top: 12%; left: 10%; animation-delay: 1.5s; }
.about-data-point:nth-child(7) { top: 12%; right: 10%; animation-delay: 2s; }
.about-data-point:nth-child(8) { bottom: 15%; left: 10%; animation-delay: 2.5s; }
.about-data-point:nth-child(9) { bottom: 15%; right: 10%; animation-delay: 3s; }

@keyframes dataFadeIn {
    to { opacity: 1; }
}

.data-dot {
    width: 5px; height: 5px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--accent-green);
    animation: statusPulse 2s ease-in-out infinite;
}

/* Scan line for about */
.about-scan {
    position: absolute;
    left: 0; width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.25), transparent);
    animation: sweepDown 5s linear infinite;
    z-index: 4;
}

/* Corner brackets inside about */
.about-bracket {
    position: absolute;
    width: 30px; height: 30px;
    border: 1.5px solid var(--accent-amber);
    opacity: 0.4;
    z-index: 3;
}
.about-bracket.tl { top: 15px; left: 15px; border-right: none; border-bottom: none; }
.about-bracket.tr { top: 15px; right: 15px; border-left: none; border-bottom: none; }
.about-bracket.bl { bottom: 15px; left: 15px; border-right: none; border-top: none; }
.about-bracket.br { bottom: 15px; right: 15px; border-left: none; border-top: none; }

.about-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 140px; height: 140px;
    background: var(--accent-amber);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 5;
}

.about-badge-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem; font-weight: 700;
    color: var(--dark-bg);
    line-height: 1;
}

.about-badge-text {
    font-size: 0.7rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-bg);
}

/* ===== ANIMATED SOLUTION VISUALS ===== */

.sol-anim {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Shared HUD micro-label */
.sol-hud-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.52rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.45);
}

.sol-hud-label.amber { color: rgba(196, 160, 53, 0.5); }

.sol-hud-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    display: inline-block;
}

.sol-hud-dot.green { background: var(--accent-green); box-shadow: 0 0 4px var(--accent-green); }
.sol-hud-dot.amber { background: var(--accent-amber); box-shadow: 0 0 4px var(--accent-amber); }
.sol-hud-dot.cyan { background: var(--accent-cyan); box-shadow: 0 0 4px var(--accent-cyan); }

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

/* ==========================================
   SOLUTION 1: INTEGRATED COMMAND CENTER
   A full command room scene:
   - Video wall (3×2) with live feed types
   - Operator desk silhouette
   - Map overlay on center screens
   - Status ticker at bottom
   ========================================== */

.cmd-room {
    position: relative;
    width: 92%; height: 88%;
    z-index: 2;
}

/* Video Wall */
.cmd-videowall {
    position: absolute;
    top: 8%; left: 10%; right: 10%;
    height: 55%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    perspective: 600px;
}

.cmd-screen {
    position: relative;
    background: rgba(10, 18, 30, 0.9);
    border: 1px solid rgba(0, 180, 216, 0.15);
    overflow: hidden;
    opacity: 0;
    animation: cmdScreenOn 0.4s ease forwards;
    transform: rotateX(2deg);
}

.cmd-screen:nth-child(1) { animation-delay: 0.1s; }
.cmd-screen:nth-child(2) { animation-delay: 0.25s; }
.cmd-screen:nth-child(3) { animation-delay: 0.15s; }
.cmd-screen:nth-child(4) { animation-delay: 0.3s; }
.cmd-screen:nth-child(5) { animation-delay: 0.2s; }
.cmd-screen:nth-child(6) { animation-delay: 0.35s; }

@keyframes cmdScreenOn {
    0% { opacity: 0; filter: brightness(3); }
    40% { filter: brightness(1.5); }
    100% { opacity: 1; filter: brightness(1); }
}

/* Screen feed types */
.cmd-feed-label {
    position: absolute;
    top: 3px; left: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.42rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.6);
    z-index: 2;
}

.cmd-feed-rec {
    position: absolute;
    top: 3px; right: 4px;
    width: 4px; height: 4px;
    background: #ff3333;
    border-radius: 50%;
    animation: recBlink 1s step-end infinite;
    z-index: 2;
}

/* Camera feed: subtle moving noise */
.cmd-screen-noise {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        rgba(0, 180, 216, 0.02) 1px,
        transparent 2px
    );
    animation: noiseShift 0.3s steps(3) infinite;
}

@keyframes noiseShift {
    0% { background-position: 0 0; }
    33% { background-position: 0 1px; }
    66% { background-position: 0 -1px; }
    100% { background-position: 0 0; }
}

/* Map screen - center top */
.cmd-screen.map-view {
    border-color: rgba(196, 160, 53, 0.25);
}

.cmd-map-content {
    position: absolute;
    inset: 12px 4px 4px;
}

.cmd-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 216, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.06) 1px, transparent 1px);
    background-size: 12px 12px;
}

.cmd-map-dot {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-amber);
}

.cmd-map-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px; height: 12px;
    border: 1px solid var(--accent-amber);
    border-radius: 50%;
    opacity: 0;
    animation: mapPing 2s ease-out infinite;
}

.cmd-map-dot:nth-child(2) { top: 25%; left: 30%; }
.cmd-map-dot:nth-child(3) { top: 55%; left: 65%; animation-delay: 0.7s; }
.cmd-map-dot:nth-child(4) { top: 70%; left: 25%; animation-delay: 1.4s; }
.cmd-map-dot:nth-child(2)::after { animation-delay: 0s; }
.cmd-map-dot:nth-child(3)::after { animation-delay: 0.7s; }
.cmd-map-dot:nth-child(4)::after { animation-delay: 1.4s; }

@keyframes mapPing {
    0% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(3); }
}

/* Waveform feed */
.cmd-waveform {
    position: absolute;
    bottom: 4px; left: 4px; right: 4px;
    height: 20px;
    overflow: hidden;
}

.cmd-wave-line {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 200%;
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(0, 180, 216, 0.5) 2px,
        transparent 4px,
        transparent 6px,
        rgba(0, 180, 216, 0.8) 8px,
        transparent 10px,
        transparent 14px,
        rgba(0, 180, 216, 0.3) 16px,
        transparent 18px
    );
    animation: waveScroll 2s linear infinite;
}

.cmd-wave-bar {
    position: absolute;
    bottom: 0;
    width: 2px;
    background: rgba(0, 180, 216, 0.4);
    animation: waveBar 0.8s ease-in-out infinite alternate;
}

@keyframes waveScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes waveBar {
    0% { height: 20%; }
    100% { height: 90%; }
}

/* Alert screen */
.cmd-screen.alert-view {
    animation: cmdScreenOn 0.4s ease forwards, alertFlash 5s ease-in-out 2s infinite;
}

@keyframes alertFlash {
    0%, 85%, 100% { border-color: rgba(0, 180, 216, 0.15); }
    90%, 95% { border-color: rgba(255, 80, 50, 0.5); }
}

.cmd-alert-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 10px;
    background: linear-gradient(90deg,
        rgba(255, 80, 50, 0.15),
        rgba(255, 80, 50, 0.3),
        rgba(255, 80, 50, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cmd-alert-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.35rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 80, 50, 0.7);
    animation: alertTextBlink 1.5s step-end infinite;
}

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

/* Operator Console Silhouette */
.cmd-console {
    position: absolute;
    bottom: 5%; left: 15%; right: 15%;
    height: 28%;
}

.cmd-desk {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(26, 30, 37, 0.9) 0%, rgba(18, 21, 26, 0.95) 100%);
    border-top: 1px solid rgba(196, 160, 53, 0.2);
    border-radius: 3px 3px 0 0;
}

/* Mini monitors on desk */
.cmd-desk-monitors {
    position: absolute;
    top: -18px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.cmd-desk-mon {
    width: 28px; height: 16px;
    background: rgba(0, 12, 25, 0.9);
    border: 1px solid rgba(0, 180, 216, 0.2);
    position: relative;
    overflow: hidden;
}

.cmd-desk-mon::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(180deg,
        rgba(0, 180, 216, 0.08) 0%,
        rgba(0, 180, 216, 0.02) 100%);
}

.cmd-desk-mon-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: rgba(0, 180, 216, 0.3);
    animation: miniScan 1.8s linear infinite;
}

/* Keyboard glow */
.cmd-keyboard {
    position: absolute;
    bottom: 8px; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 6px;
    background: rgba(30, 35, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1px;
}

.cmd-keyboard::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 180, 216, 0.1) 0px,
        rgba(0, 180, 216, 0.1) 2px,
        transparent 2px,
        transparent 4px
    );
    animation: kbGlow 3s ease-in-out infinite;
}

@keyframes kbGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Status ticker at very bottom */
.cmd-ticker {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 14px;
    background: rgba(196, 160, 53, 0.04);
    border-top: 1px solid rgba(196, 160, 53, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cmd-ticker-text {
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.45rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(196, 160, 53, 0.4);
    animation: tickerScroll 20s linear infinite;
}

@keyframes tickerScroll {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* ==========================================
   SOLUTION 2: MOBILE COMMAND UNIT
   SVG-based tactical vehicle with:
   - Clear recognizable truck silhouette (SVG)
   - Retractable awning deploys out
   - Roof-mounted rotating radar
   - Telescoping sat mast
   - Signal coverage radius on ground
   - Glowing interior through panels
   - Stabilizer jacks
   - Generator + cable
   - Deploy progress bar + live timer
   - Data uplink/downlink streams
   - Operator workstation glow
   ========================================== */

.mobile-scene {
    position: relative;
    width: 100%; height: 100%;
    z-index: 2;
    overflow: hidden;
}

/* ---- GROUND ---- */
.mob-ground {
    position: absolute;
    bottom: 14%;
    left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(196, 160, 53, 0.3) 25%, rgba(196, 160, 53, 0.3) 75%, transparent 95%);
}

.mob-ground::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40px;
    background: linear-gradient(180deg, rgba(196, 160, 53, 0.04), transparent);
}

/* Coverage radius on ground */
.mob-coverage-ring {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-radius: 50%;
    border: 1px solid rgba(0, 180, 216, 0.12);
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04), transparent 70%);
    animation: coverageExpand 2s ease 5s forwards;
    opacity: 0;
}

.mob-coverage-ring::after {
    content: 'COVERAGE RADIUS';
    position: absolute;
    top: 2px; right: 8px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.38rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(0, 180, 216, 0.25);
}

@keyframes coverageExpand {
    0% { width: 0; height: 0; opacity: 0; }
    100% { width: 94%; height: 24px; opacity: 1; }
}

/* ---- SVG VEHICLE ---- */
.mob-truck-svg {
    position: absolute;
    bottom: calc(14% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: 90px;
}

.mob-truck-body { fill: rgba(30, 52, 80, 0.85); stroke: rgba(196, 160, 53, 0.3); stroke-width: 1; }
.mob-truck-cabin { fill: rgba(25, 45, 70, 0.9); stroke: rgba(196, 160, 53, 0.25); stroke-width: 1; }
.mob-truck-window { fill: rgba(0, 180, 216, 0.08); stroke: rgba(0, 180, 216, 0.25); stroke-width: 0.8; }
.mob-truck-wheel-outer { fill: rgba(10, 12, 15, 0.95); stroke: rgba(196, 160, 53, 0.3); stroke-width: 1.5; }
.mob-truck-wheel-hub { fill: none; stroke: rgba(196, 160, 53, 0.2); stroke-width: 0.8; }
.mob-truck-wheel-center { fill: rgba(196, 160, 53, 0.3); }
.mob-truck-bumper { fill: rgba(50, 50, 50, 0.8); stroke: rgba(196, 160, 53, 0.15); stroke-width: 0.5; }

.mob-truck-headlight {
    fill: var(--accent-amber);
    filter: drop-shadow(0 0 4px rgba(196, 160, 53, 0.5));
    animation: headlightPulse 3s ease-in-out infinite;
}

@keyframes headlightPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.mob-truck-taillight { fill: #ff3333; opacity: 0.6; filter: drop-shadow(0 0 3px rgba(255, 50, 50, 0.3)); }
.mob-truck-panel-opening { fill: rgba(0, 12, 25, 0.8); stroke: rgba(0, 180, 216, 0.15); stroke-width: 0.5; }
.mob-truck-stripe { fill: none; stroke: rgba(196, 160, 53, 0.12); stroke-width: 1; stroke-dasharray: 6 3; }
.mob-truck-text { font-family: 'Rajdhani', sans-serif; font-size: 5px; font-weight: 700; letter-spacing: 2px; fill: rgba(196, 160, 53, 0.2); }

.mob-rack-led-svg { fill: var(--accent-green); filter: drop-shadow(0 0 2px var(--accent-green)); animation: statusPulse 2s ease-in-out infinite; }
.mob-rack-led-svg.cyan { fill: var(--accent-cyan); filter: drop-shadow(0 0 2px var(--accent-cyan)); }
.mob-rack-led-svg.amber { fill: var(--accent-amber); filter: drop-shadow(0 0 2px var(--accent-amber)); }
.mob-rack-unit-svg { fill: rgba(0, 180, 216, 0.06); stroke: rgba(0, 180, 216, 0.12); stroke-width: 0.5; }

.mob-screen-svg { fill: rgba(0, 180, 216, 0.05); stroke: rgba(0, 180, 216, 0.15); stroke-width: 0.5; }
.mob-screen-scanline { fill: rgba(0, 180, 216, 0.35); animation: svgScanDown 2s linear infinite; }
@keyframes svgScanDown { 0% { transform: translateY(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }

.mob-interior-glow-svg { fill: rgba(0, 180, 216, 0.04); }

/* ---- AWNING (deploys from side) ---- */
.mob-awning {
    position: absolute;
    bottom: calc(14% + 52px);
    left: calc(50% - 8px);
    width: 0; height: 36px;
    border-top: 1px solid rgba(196, 160, 53, 0.2);
    background: linear-gradient(180deg, rgba(30, 52, 80, 0.3) 0%, transparent 100%);
    animation: awningDeploy 1.2s ease 2s forwards;
    transform-origin: left top;
    overflow: hidden;
}

@keyframes awningDeploy { to { width: 90px; } }

.mob-awning-strut { position: absolute; top: 0; width: 1px; height: 100%; background: rgba(196, 160, 53, 0.15); }
.mob-awning-strut:nth-child(1) { right: 25%; }
.mob-awning-strut:nth-child(2) { right: 55%; }

.mob-awning-light {
    position: absolute; top: 2px;
    width: 2px; height: 2px;
    background: rgba(196, 160, 53, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(196, 160, 53, 0.2), 0 12px 15px rgba(196, 160, 53, 0.06);
}
.mob-awning-light:nth-child(3) { right: 15px; }
.mob-awning-light:nth-child(4) { right: 40px; }
.mob-awning-light:nth-child(5) { right: 65px; }

/* ---- ROOF RADAR ---- */
.mob-radar-unit {
    position: absolute;
    bottom: calc(14% + 80px);
    left: calc(50% + 20px);
    width: 24px; height: 24px;
    opacity: 0;
    animation: dataFadeIn 0.5s ease 1.5s forwards;
}
.mob-radar-base { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 12px; height: 4px; background: rgba(196, 160, 53, 0.35); border-radius: 2px; }
.mob-radar-arm { position: absolute; bottom: 4px; left: 50%; transform-origin: bottom center; width: 2px; height: 12px; background: rgba(196, 160, 53, 0.4); animation: radarSpin 3s linear infinite; }
.mob-radar-arm::after { content: ''; position: absolute; top: 0; left: -3px; width: 8px; height: 3px; background: var(--accent-cyan); border-radius: 1px; box-shadow: 0 0 6px var(--accent-cyan); }

/* ---- MAST (telescoping) ---- */
.mob-mast-assembly {
    position: absolute;
    bottom: calc(14% + 75px);
    left: calc(50% - 20px);
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.mob-mast-seg { width: 3px; height: 0; background: linear-gradient(90deg, rgba(196, 160, 53, 0.35), rgba(196, 160, 53, 0.6), rgba(196, 160, 53, 0.35)); }
.mob-mast-seg.seg1 { width: 5px; animation: mastSeg1 0.8s ease 1.8s forwards; }
.mob-mast-seg.seg2 { width: 4px; animation: mastSeg2 0.7s ease 2.6s forwards; }
.mob-mast-seg.seg3 { width: 3px; animation: mastSeg3 0.6s ease 3.3s forwards; }

@keyframes mastSeg1 { to { height: 30px; } }
@keyframes mastSeg2 { to { height: 25px; } }
@keyframes mastSeg3 { to { height: 22px; } }

.mob-mast-joint { width: 8px; height: 3px; background: rgba(196, 160, 53, 0.5); border-radius: 1px; opacity: 0; }
.mob-mast-joint.j1 { animation: jointAppear 0.2s ease 2.5s forwards; }
.mob-mast-joint.j2 { animation: jointAppear 0.2s ease 3.2s forwards; }
@keyframes jointAppear { to { opacity: 0.6; } }

/* ---- DISH at mast top ---- */
.mob-dish-assembly {
    position: absolute;
    bottom: calc(14% + 75px);
    left: calc(50% - 20px);
    opacity: 0;
    animation: dishRise 0.6s ease 3.9s forwards;
}

@keyframes dishRise { 0% { opacity: 0; margin-bottom: 0; } 100% { opacity: 1; margin-bottom: 76px; } }

.mob-dish-group {
    position: relative;
    width: 44px; height: 28px;
    margin: 0 auto;
    animation: dishRotate 10s ease-in-out 4.5s infinite;
    transform-origin: center bottom;
}

@keyframes dishRotate { 0%, 100% { transform: rotate(-10deg); } 50% { transform: rotate(10deg); } }

.mob-dish-svg { width: 100%; height: 100%; }
.mob-dish-bowl-svg { fill: none; stroke: var(--accent-amber); stroke-width: 1.5; }
.mob-dish-strut-svg { fill: none; stroke: rgba(196, 160, 53, 0.4); stroke-width: 1; }
.mob-dish-feed-svg { fill: var(--accent-amber); filter: drop-shadow(0 0 6px rgba(196, 160, 53, 0.6)); animation: feedPulse 1.5s ease-in-out infinite; }
@keyframes feedPulse { 0%, 100% { filter: drop-shadow(0 0 6px rgba(196, 160, 53, 0.4)); } 50% { filter: drop-shadow(0 0 12px rgba(196, 160, 53, 0.8)); } }

/* ---- SIGNAL WAVES ---- */
.mob-signal-waves { position: absolute; bottom: calc(14% + 155px); left: calc(50% - 20px); width: 180px; height: 75px; opacity: 0; animation: dataFadeIn 0.5s ease 4.8s forwards; }
.mob-wave-arc { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); border: 1.5px solid rgba(0, 180, 216, 0.2); border-bottom: none; border-radius: 50% 50% 0 0; opacity: 0; animation: waveExpand 3s ease-out infinite; }
.mob-wave-arc:nth-child(1) { width: 22px; height: 11px; animation-delay: 0s; }
.mob-wave-arc:nth-child(2) { width: 50px; height: 24px; animation-delay: 0.6s; }
.mob-wave-arc:nth-child(3) { width: 85px; height: 40px; animation-delay: 1.2s; }
.mob-wave-arc:nth-child(4) { width: 125px; height: 58px; animation-delay: 1.8s; }
@keyframes waveExpand { 0% { opacity: 0.6; transform: translateX(-50%) scaleY(0.5); } 100% { opacity: 0; transform: translateX(-50%) scaleY(1.3); } }

/* Data uplink/downlink streams */
.mob-data-stream { position: absolute; bottom: calc(14% + 110px); width: 1px; height: 45px; }
.mob-data-stream.uplink { left: calc(50% - 22px); opacity: 0; animation: dataFadeIn 0.5s ease 5.2s forwards; }
.mob-data-stream.downlink { left: calc(50% - 16px); opacity: 0; animation: dataFadeIn 0.5s ease 5.5s forwards; }
.mob-data-particle { position: absolute; width: 2px; height: 5px; border-radius: 1px; opacity: 0; }
.uplink .mob-data-particle { bottom: 0; background: var(--accent-cyan); box-shadow: 0 0 4px var(--accent-cyan); animation: particleUp 1.2s linear infinite; }
.downlink .mob-data-particle { top: 0; background: var(--accent-amber); box-shadow: 0 0 4px var(--accent-amber); animation: particleDown 1.4s linear infinite; }
.mob-data-particle:nth-child(1) { animation-delay: 0s; }
.mob-data-particle:nth-child(2) { animation-delay: 0.4s; }
.mob-data-particle:nth-child(3) { animation-delay: 0.8s; }
@keyframes particleUp { 0% { bottom: 0; opacity: 0; } 15% { opacity: 0.9; } 85% { opacity: 0.9; } 100% { bottom: 100%; opacity: 0; } }
@keyframes particleDown { 0% { top: 0; opacity: 0; } 15% { opacity: 0.7; } 85% { opacity: 0.7; } 100% { top: 100%; opacity: 0; } }

/* ---- STABILIZER JACKS ---- */
.mob-stabilizer { position: absolute; bottom: calc(14% + 1px); width: 3px; height: 0; background: linear-gradient(180deg, rgba(196, 160, 53, 0.5), rgba(196, 160, 53, 0.3)); animation: stabExtend 0.8s ease 0.3s forwards; }
.mob-stabilizer::after { content: ''; position: absolute; bottom: -2px; left: 50%; transform: translateX(-50%); width: 12px; height: 3px; background: rgba(196, 160, 53, 0.4); border-radius: 1px; opacity: 0; animation: stabFoot 0.3s ease 1.1s forwards; }
@keyframes stabExtend { to { height: 18px; } }
@keyframes stabFoot { to { opacity: 1; } }
.mob-stabilizer.s-1 { left: calc(50% - 110px); animation-delay: 0.2s; }
.mob-stabilizer.s-1::after { animation-delay: 1.0s; }
.mob-stabilizer.s-2 { left: calc(50% + 25px); animation-delay: 0.5s; }
.mob-stabilizer.s-2::after { animation-delay: 1.3s; }
.mob-stabilizer.s-3 { left: calc(50% + 90px); animation-delay: 0.8s; }
.mob-stabilizer.s-3::after { animation-delay: 1.6s; }

/* ---- GENERATOR ---- */
.mob-generator { position: absolute; bottom: calc(14% + 1px); left: calc(50% + 115px); opacity: 0; animation: genAppear 0.5s ease 0.8s forwards; }
@keyframes genAppear { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.mob-gen-svg { width: 32px; height: 24px; }
.mob-gen-body-svg { fill: rgba(60, 65, 45, 0.8); stroke: rgba(196, 160, 53, 0.25); stroke-width: 0.8; }
.mob-gen-exhaust-svg { fill: rgba(196, 160, 53, 0.3); }
.mob-gen-led-svg { fill: var(--accent-green); filter: drop-shadow(0 0 3px var(--accent-green)); animation: statusPulse 2s ease-in-out infinite; }
.mob-gen-smoke { position: absolute; top: -2px; right: 6px; width: 5px; height: 5px; border-radius: 50%; background: rgba(160, 160, 160, 0.08); animation: exhaustPuff 2.5s ease-out infinite; }
@keyframes exhaustPuff { 0% { opacity: 0.2; transform: scale(1) translateY(0); } 100% { opacity: 0; transform: scale(3) translateY(-18px); } }
.mob-gen-label { font-family: 'Rajdhani', sans-serif; font-size: 0.38rem; font-weight: 600; letter-spacing: 1px; color: rgba(196, 160, 53, 0.3); text-align: center; margin-top: 2px; }
.mob-cable { position: absolute; bottom: calc(14% + 8px); left: calc(50% + 60px); width: 55px; height: 8px; border-bottom: 1.5px dashed rgba(196, 160, 53, 0.12); border-right: 1.5px dashed rgba(196, 160, 53, 0.12); border-radius: 0 0 8px 0; opacity: 0; animation: dataFadeIn 0.5s ease 1s forwards; }

/* ---- DEPLOY PROGRESS BAR ---- */
.mob-deploy-bar { position: absolute; top: 6%; left: 50%; transform: translateX(-50%); width: 70%; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mob-deploy-title { font-family: 'Rajdhani', sans-serif; font-size: 0.5rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(196, 160, 53, 0.45); }
.mob-progress-track { width: 100%; height: 4px; background: rgba(196, 160, 53, 0.08); border: 1px solid rgba(196, 160, 53, 0.1); position: relative; overflow: hidden; }
.mob-progress-fill { position: absolute; top: 0; left: 0; bottom: 0; width: 0; background: linear-gradient(90deg, var(--accent-amber), var(--accent-green)); animation: progressFill 5.5s ease forwards; box-shadow: 0 0 6px rgba(0, 255, 136, 0.3); }
@keyframes progressFill { 0% { width: 0; background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber)); } 30% { background: linear-gradient(90deg, var(--accent-amber), var(--accent-amber)); } 100% { width: 100%; background: linear-gradient(90deg, var(--accent-amber), var(--accent-green)); } }
.mob-progress-pct { position: absolute; top: -1px; right: -28px; font-family: 'Rajdhani', sans-serif; font-size: 0.55rem; font-weight: 700; color: var(--accent-green); }
.mob-deploy-status-row { display: flex; width: 100%; justify-content: space-between; margin-top: 1px; }
.mob-deploy-stat { font-family: 'Rajdhani', sans-serif; font-size: 0.4rem; font-weight: 600; letter-spacing: 1px; color: rgba(0, 180, 216, 0.35); }
.mob-deploy-stat .val { color: rgba(0, 180, 216, 0.6); font-weight: 700; }

/* ---- CHECKLIST (left side) ---- */
.mob-checklist { position: absolute; top: 22%; left: 3%; display: flex; flex-direction: column; gap: 4px; }
.mob-check-item { display: flex; align-items: center; gap: 4px; opacity: 0; animation: equipSlide 0.4s ease forwards; }
.mob-check-item:nth-child(1) { animation-delay: 0.3s; }
.mob-check-item:nth-child(2) { animation-delay: 0.8s; }
.mob-check-item:nth-child(3) { animation-delay: 1.8s; }
.mob-check-item:nth-child(4) { animation-delay: 2.6s; }
.mob-check-item:nth-child(5) { animation-delay: 3.9s; }
.mob-check-item:nth-child(6) { animation-delay: 4.8s; }
.mob-check-item:nth-child(7) { animation-delay: 5.5s; }
@keyframes equipSlide { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: translateX(0); } }
.mob-check-icon { width: 8px; height: 8px; flex-shrink: 0; }
.mob-check-icon svg { width: 100%; height: 100%; }
.mob-check-icon .check-bg { fill: rgba(0, 255, 136, 0.1); stroke: rgba(0, 255, 136, 0.4); stroke-width: 1; }
.mob-check-icon .check-mark-svg { fill: none; stroke: var(--accent-green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.mob-check-label { font-family: 'Rajdhani', sans-serif; font-size: 0.42rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(0, 180, 216, 0.35); }

/* ---- SIGNAL BARS (bottom-right) ---- */
.mob-signal-bars { position: absolute; bottom: 4.5%; right: 5%; display: flex; align-items: flex-end; gap: 2px; }
.mob-sig-bar { width: 3px; background: var(--accent-green); transform-origin: bottom; opacity: 0; animation: sigBarUp 0.3s ease forwards; }
.mob-sig-bar:nth-child(1) { height: 4px; animation-delay: 5s; }
.mob-sig-bar:nth-child(2) { height: 7px; animation-delay: 5.15s; }
.mob-sig-bar:nth-child(3) { height: 10px; animation-delay: 5.3s; }
.mob-sig-bar:nth-child(4) { height: 13px; animation-delay: 5.45s; }
.mob-sig-bar:nth-child(5) { height: 16px; animation-delay: 5.6s; }
@keyframes sigBarUp { from { opacity: 0; transform: scaleY(0); } to { opacity: 0.7; transform: scaleY(1); } }
.mob-signal-label { position: absolute; bottom: -10px; right: 0; white-space: nowrap; font-family: 'Rajdhani', sans-serif; font-size: 0.38rem; font-weight: 600; letter-spacing: 1.5px; color: rgba(0, 255, 136, 0.35); }

/* ---- COORDS (bottom-left) ---- */
.mob-coords { position: absolute; bottom: 4.5%; left: 4%; }
.mob-coords-line { font-family: 'Rajdhani', sans-serif; font-size: 0.42rem; font-weight: 500; letter-spacing: 1px; color: rgba(196, 160, 53, 0.25); }
.mob-coords-val { color: rgba(196, 160, 53, 0.55); font-weight: 700; }

/* ---- LINK STATUS (right side) ---- */
.mob-link-status { position: absolute; top: 22%; right: 3%; display: flex; flex-direction: column; gap: 5px; text-align: right; }
.mob-link-row { display: flex; align-items: center; gap: 4px; justify-content: flex-end; opacity: 0; animation: linkFade 0.4s ease forwards; }
.mob-link-row:nth-child(1) { animation-delay: 4.6s; }
.mob-link-row:nth-child(2) { animation-delay: 4.9s; }
.mob-link-row:nth-child(3) { animation-delay: 5.2s; }
@keyframes linkFade { from { opacity: 0; transform: translateX(6px); } to { opacity: 1; transform: translateX(0); } }
.mob-link-label { font-family: 'Rajdhani', sans-serif; font-size: 0.42rem; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(0, 180, 216, 0.35); }
.mob-link-val { font-family: 'Rajdhani', sans-serif; font-size: 0.5rem; font-weight: 700; letter-spacing: 0.5px; color: rgba(0, 255, 136, 0.6); }
.mob-link-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent-green); box-shadow: 0 0 4px var(--accent-green); animation: statusPulse 2s ease-in-out infinite; }


/* ==========================================
   SOLUTION 3: CRITICAL INFRASTRUCTURE
   Aerial facility map with defense zones:
   - Concentric perimeter zones
   - Building footprints at center
   - Patrol dots moving along perimeter
   - Threat detection markers
   - Zone labels
   ========================================== */

.infra-scene {
    position: relative;
    width: 92%; height: 88%;
    z-index: 2;
}

/* Concentric Zones */
.infra-zone {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 12% 18% 14% 16%;
    border: 1px solid;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infra-zone.outer {
    width: 92%; height: 85%;
    border-color: rgba(255, 80, 50, 0.15);
    background: rgba(255, 80, 50, 0.02);
    border-style: dashed;
}

.infra-zone.middle {
    width: 65%; height: 60%;
    border-color: rgba(196, 160, 53, 0.2);
    background: rgba(196, 160, 53, 0.02);
}

.infra-zone.inner {
    width: 35%; height: 32%;
    border-color: rgba(0, 255, 136, 0.2);
    background: rgba(0, 255, 136, 0.02);
}

/* Zone labels */
.infra-zone-label {
    position: absolute;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.42rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1px 6px;
}

.infra-zone.outer .infra-zone-label {
    top: 4px; left: 10px;
    color: rgba(255, 80, 50, 0.4);
    background: rgba(255, 80, 50, 0.05);
}

.infra-zone.middle .infra-zone-label {
    top: 3px; left: 8px;
    color: rgba(196, 160, 53, 0.4);
    background: rgba(196, 160, 53, 0.05);
}

.infra-zone.inner .infra-zone-label {
    top: 3px; left: 6px;
    color: rgba(0, 255, 136, 0.4);
    background: rgba(0, 255, 136, 0.05);
}

/* Building Footprints */
.infra-buildings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 50px;
}

.infra-bldg {
    position: absolute;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
}

.infra-bldg:nth-child(1) { top: 0; left: 5px; width: 25px; height: 20px; }
.infra-bldg:nth-child(2) { top: 0; right: 0; width: 18px; height: 15px; }
.infra-bldg:nth-child(3) { bottom: 0; left: 0; width: 30px; height: 18px; }
.infra-bldg:nth-child(4) { bottom: 2px; right: 3px; width: 15px; height: 22px; }

.infra-bldg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.08), transparent);
}

/* Patrol Dots - orbiting the middle zone */
.infra-patrol {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 68%; height: 63%;
}

.patrol-dot {
    position: absolute;
    width: 5px; height: 5px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-amber);
}

.patrol-dot:nth-child(1) {
    offset-path: ellipse(50% 50%);
    animation: patrolOrbit1 12s linear infinite;
}

.patrol-dot:nth-child(2) {
    offset-path: ellipse(50% 50%);
    animation: patrolOrbit2 12s linear infinite;
}

@keyframes patrolOrbit1 {
    0% { top: 0%; left: 50%; }
    25% { top: 50%; left: 100%; }
    50% { top: 100%; left: 50%; }
    75% { top: 50%; left: 0%; }
    100% { top: 0%; left: 50%; }
}

@keyframes patrolOrbit2 {
    0% { top: 100%; left: 50%; }
    25% { top: 50%; left: 0%; }
    50% { top: 0%; left: 50%; }
    75% { top: 50%; left: 100%; }
    100% { top: 100%; left: 50%; }
}

.patrol-dot::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 14px; height: 14px;
    border: 1px solid rgba(196, 160, 53, 0.3);
    border-radius: 50%;
    animation: patrolPulse 2s ease-in-out infinite;
}

@keyframes patrolPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Threat Markers */
.infra-threat {
    position: absolute;
    width: 10px; height: 10px;
    z-index: 3;
    opacity: 0;
    animation: threatAppear 8s ease-in-out infinite;
}

.infra-threat:nth-child(1) { top: 14%; left: 75%; animation-delay: 1s; }
.infra-threat:nth-child(2) { top: 78%; left: 18%; animation-delay: 4s; }
.infra-threat:nth-child(3) { top: 22%; left: 22%; animation-delay: 6.5s; }

@keyframes threatAppear {
    0%, 10%, 30%, 100% { opacity: 0; }
    12%, 28% { opacity: 1; }
}

.threat-x {
    position: absolute;
    inset: 0;
}

.threat-x::before, .threat-x::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 1.5px;
    background: #ff5032;
    box-shadow: 0 0 4px rgba(255, 80, 50, 0.5);
}

.threat-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.threat-x::after { transform: translate(-50%, -50%) rotate(-45deg); }

.threat-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 20px; height: 20px;
    border: 1px solid rgba(255, 80, 50, 0.4);
    border-radius: 50%;
    animation: threatRing 1s ease-out infinite;
}

@keyframes threatRing {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Camera icons on perimeter */
.infra-cam {
    position: absolute;
    width: 6px; height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--accent-cyan);
    z-index: 2;
}

.infra-cam:nth-child(1) { top: 20%; left: 12%; }
.infra-cam:nth-child(2) { top: 10%; right: 25%; }
.infra-cam:nth-child(3) { bottom: 15%; left: 25%; }
.infra-cam:nth-child(4) { bottom: 12%; right: 15%; }
.infra-cam:nth-child(5) { top: 50%; left: 6%; }
.infra-cam:nth-child(6) { top: 45%; right: 8%; }

.infra-cam::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-left: 12px solid rgba(0, 180, 216, 0.08);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform-origin: left center;
}

.infra-cam:nth-child(1)::after { transform: translate(3px, -50%) rotate(30deg); }
.infra-cam:nth-child(2)::after { transform: translate(3px, -50%) rotate(120deg); }
.infra-cam:nth-child(3)::after { transform: translate(3px, -50%) rotate(-20deg); }
.infra-cam:nth-child(4)::after { transform: translate(3px, -50%) rotate(200deg); }
.infra-cam:nth-child(5)::after { transform: translate(3px, -50%) rotate(10deg); }
.infra-cam:nth-child(6)::after { transform: translate(3px, -50%) rotate(170deg); }

/* Status overlay */
.infra-status {
    position: absolute;
    bottom: 5%; left: 6%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.infra-status-row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 180, 216, 0.4);
}

.infra-status-count {
    position: absolute;
    bottom: 5%; right: 6%;
    text-align: right;
}

.infra-count-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.48rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(196, 160, 53, 0.4);
}

.infra-count-val {
    font-weight: 700;
    color: rgba(196, 160, 53, 0.7);
    font-size: 0.55rem;
}

/* Scan sweep across facility */
.infra-scan {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1.5px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.2), transparent);
    animation: sweepDown 6s linear infinite;
}

.about-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.about-feature {
    padding: 1.5rem;
    background: var(--dark-surface);
    border-left: 3px solid var(--primary-olive-light);
}

.about-feature h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Contact */
.contact { background: var(--dark-bg); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.contact-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem; font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details { margin-bottom: 3rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.contact-item-icon {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(196, 160, 53, 0.1);
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 20px; height: 20px;
    stroke: var(--accent-amber);
}

.contact-item-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item-content span { color: var(--text-primary); }

/* ==========================================
   SAUDI ARABIA DIGITAL MAP
   ========================================== */
.sa-map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.18;
    background: rgba(8, 10, 14, 0.9);
    border: 1px solid rgba(196, 160, 53, 0.12);
    overflow: hidden;
}

/* Grid overlay */
.sa-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(196, 160, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 160, 53, 0.04) 1px, transparent 1px);
    background-size: 10% 10%;
    z-index: 1;
}

/* Scan sweep */
.sa-map-scan {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
    z-index: 5;
    animation: saScanDown 6s linear infinite;
}

@keyframes saScanDown {
    0% { top: 0; opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* SVG map container */
.sa-map-svg {
    position: absolute;
    inset: 8%;
    z-index: 2;
}

.sa-map-svg svg {
    width: 100%;
    height: 100%;
}

/* Country outline */
.sa-country-fill {
    fill: rgba(196, 160, 53, 0.04);
    stroke: none;
}

.sa-country-outline {
    fill: none;
    stroke: rgba(196, 160, 53, 0.5);
    stroke-width: 1;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px rgba(196, 160, 53, 0.2));
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: saOutlineDraw 3s ease forwards;
}

@keyframes saOutlineDraw {
    to { stroke-dashoffset: 0; }
}

/* Glow outline (duplicate for double glow) */
.sa-country-glow {
    fill: none;
    stroke: rgba(196, 160, 53, 0.12);
    stroke-width: 4;
    stroke-linejoin: round;
    filter: blur(3px);
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: saOutlineDraw 3s ease forwards;
}

/* Internal region borders (subtle) */
.sa-region-line {
    fill: none;
    stroke: rgba(196, 160, 53, 0.06);
    stroke-width: 0.3;
    stroke-dasharray: 3 2;
}

/* ---- RIYADH PIN ---- */
.sa-pin-riyadh {
    position: absolute;
    z-index: 10;
    /* Position based on calculated percentages: 57% from left, 46% from top within the map area */
    left: calc(8% + 57% * 0.84);
    top: calc(8% + 46% * 0.84);
    transform: translate(-50%, -50%);
}

.sa-pin-dot {
    width: 8px; height: 8px;
    background: var(--accent-amber);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-amber), 0 0 20px rgba(196, 160, 53, 0.4);
    position: relative;
    z-index: 3;
    animation: pinGlow 2s ease-in-out infinite;
}

@keyframes pinGlow {
    0%, 100% { box-shadow: 0 0 8px var(--accent-amber), 0 0 20px rgba(196, 160, 53, 0.3); }
    50% { box-shadow: 0 0 14px var(--accent-amber), 0 0 35px rgba(196, 160, 53, 0.5); }
}

/* Pulse rings */
.sa-pin-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid var(--accent-amber);
    border-radius: 50%;
    animation: saRingPulse 2.5s ease-out infinite;
}

.sa-pin-ring:nth-child(2) { animation-delay: 0s; }
.sa-pin-ring:nth-child(3) { animation-delay: 0.8s; }
.sa-pin-ring:nth-child(4) { animation-delay: 1.6s; }

@keyframes saRingPulse {
    0% { width: 8px; height: 8px; opacity: 0.8; }
    100% { width: 60px; height: 60px; opacity: 0; }
}

/* Pin label */
.sa-pin-label {
    position: absolute;
    top: -28px; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-amber);
    text-shadow: 0 0 8px rgba(196, 160, 53, 0.5);
    text-transform: uppercase;
}

.sa-pin-sublabel {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.45rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(196, 160, 53, 0.45);
    text-transform: uppercase;
}

/* ---- SECONDARY CITY DOTS ---- */
.sa-city-dot {
    position: absolute;
    z-index: 8;
    transform: translate(-50%, -50%);
}

.sa-city-dot-inner {
    width: 4px; height: 4px;
    background: rgba(0, 180, 216, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 180, 216, 0.3);
}

.sa-city-dot-label {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0, 180, 216, 0.4);
    text-transform: uppercase;
}

/* ---- CONNECTION LINES (from Riyadh to other cities) ---- */
.sa-connection-line {
    fill: none;
    stroke: rgba(0, 180, 216, 0.1);
    stroke-width: 0.5;
    stroke-dasharray: 4 3;
    opacity: 0;
    animation: connFade 0.5s ease forwards;
}

.sa-connection-line:nth-child(1) { animation-delay: 3.5s; }
.sa-connection-line:nth-child(2) { animation-delay: 3.8s; }
.sa-connection-line:nth-child(3) { animation-delay: 4.1s; }
.sa-connection-line:nth-child(4) { animation-delay: 4.4s; }

@keyframes connFade { to { opacity: 1; } }

/* Data pulse traveling along connections */
.sa-data-pulse {
    fill: var(--accent-cyan);
    r: 1.5;
    opacity: 0;
}

.sa-data-pulse.active {
    animation: dataPulseTravel 2s linear infinite;
}

@keyframes dataPulseTravel {
    0% { opacity: 0; }
    5% { opacity: 0.8; }
    95% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* ---- HUD ELEMENTS ---- */
.sa-map-hud-tl {
    position: absolute;
    top: 8px; left: 10px;
    z-index: 6;
}

.sa-hud-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(196, 160, 53, 0.5);
}

.sa-hud-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.4rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: rgba(0, 180, 216, 0.3);
    margin-top: 2px;
}

.sa-map-hud-tr {
    position: absolute;
    top: 8px; right: 10px;
    z-index: 6;
    text-align: right;
}

.sa-hud-coord {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.42rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(196, 160, 53, 0.3);
}

.sa-hud-coord .val {
    color: rgba(196, 160, 53, 0.55);
    font-weight: 700;
}

.sa-map-hud-bl {
    position: absolute;
    bottom: 8px; left: 10px;
    z-index: 6;
    display: flex;
    gap: 10px;
}

.sa-hud-stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sa-hud-stat-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.sa-hud-stat-dot.green { background: var(--accent-green); box-shadow: 0 0 4px var(--accent-green); }
.sa-hud-stat-dot.cyan { background: var(--accent-cyan); box-shadow: 0 0 4px var(--accent-cyan); }

.sa-hud-stat-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.38rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0, 255, 136, 0.4);
    text-transform: uppercase;
}

.sa-map-hud-br {
    position: absolute;
    bottom: 8px; right: 10px;
    z-index: 6;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.4rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(196, 160, 53, 0.3);
}

/* Corner brackets */
.sa-map-corner {
    position: absolute;
    width: 16px; height: 16px;
    z-index: 6;
}

.sa-map-corner::before,
.sa-map-corner::after {
    content: '';
    position: absolute;
    background: rgba(196, 160, 53, 0.25);
}

.sa-map-corner.tl { top: 4px; left: 4px; }
.sa-map-corner.tl::before { top: 0; left: 0; width: 16px; height: 1px; }
.sa-map-corner.tl::after { top: 0; left: 0; width: 1px; height: 16px; }
.sa-map-corner.tr { top: 4px; right: 4px; }
.sa-map-corner.tr::before { top: 0; right: 0; width: 16px; height: 1px; }
.sa-map-corner.tr::after { top: 0; right: 0; width: 1px; height: 16px; }
.sa-map-corner.bl { bottom: 4px; left: 4px; }
.sa-map-corner.bl::before { bottom: 0; left: 0; width: 16px; height: 1px; }
.sa-map-corner.bl::after { bottom: 0; left: 0; width: 1px; height: 16px; }
.sa-map-corner.br { bottom: 4px; right: 4px; }
.sa-map-corner.br::before { bottom: 0; right: 0; width: 16px; height: 1px; }
.sa-map-corner.br::after { bottom: 0; right: 0; width: 1px; height: 16px; }

/* Footer */
.footer {
    background: var(--dark-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 4% 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-brand img {
    height: 35px; width: auto; max-width: 160px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-column h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.75rem; }

.footer-column ul a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul a:hover { color: var(--accent-amber); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-social { display: flex; gap: 1rem; }

.footer-social a {
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-elevated);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
}

.footer-social a:hover svg { stroke: var(--dark-bg); }

.footer-social svg {
    width: 18px; height: 18px;
    stroke: var(--text-muted);
    transition: stroke 0.3s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    section { padding: 5rem 4%; }
    .solution-row { grid-template-columns: 1fr; gap: 2rem; }
    .solution-row:nth-child(even) { direction: ltr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .contact-container { grid-template-columns: 1fr; }
    .sa-map-wrapper { max-width: 500px; margin: 0 auto; }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .hero-content { max-width: 600px; }
}

@media (max-width: 768px) {
    .nav { padding: 0.75rem 4%; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: rgba(10, 12, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem 4%;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-links.active { display: flex; }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
    }
    .nav-links li:last-child { border-bottom: none; }

    .nav-cta { display: none; }
    .mobile-toggle { display: flex; }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-content { max-width: 100%; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-badge span { font-size: 0.7rem; }

    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-stats {
        position: relative;
        bottom: auto; left: auto;
        margin-top: 2.5rem;
        gap: 2rem;
        justify-content: flex-start;
    }

    .stat-number { font-size: 2rem; }

    section { padding: 4rem 5%; }
    .section-header { margin-bottom: 3rem; }
    .section-title { font-size: 1.8rem; }
    .section-desc { font-size: 1rem; }

    .services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .service-card { padding: 1.5rem; }
    .service-card h3 { font-size: 1.2rem; }

    .industries-grid { grid-template-columns: 1fr; }
    .industry-card { padding: 2rem 1.5rem; }

    .about-visual { max-width: 300px; margin: 0 auto; }
    .about-badge { width: 100px; height: 100px; bottom: -20px; right: -10px; }
    .about-badge-number { font-size: 2rem; }
    .about-content h2 { font-size: 1.6rem; }
    .about-features { grid-template-columns: 1fr; gap: 1rem; }
    .about-feature { padding: 1rem; }

    .solution-visual { aspect-ratio: 16/10; }
    .solution-content h3 { font-size: 1.5rem; }

    /* map adjusts via max-width above */
    /* form removed */

    .footer-main { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { text-align: center; }
    .footer-brand p { max-width: 100%; }
    .footer-column { text-align: center; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 1.5rem; }
    .stat-item { display: flex; align-items: center; gap: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .service-features { gap: 0.4rem; }
    .service-feature { font-size: 0.65rem; padding: 0.25rem 0.5rem; }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-amber);
    color: var(--dark-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 160, 53, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 160, 53, 0.4);
}

html[dir="rtl"] .back-to-top {
    right: auto;
    left: 2rem;
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 2rem;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6); }
}

/* ── Contact highlights panel (replaced the animated map) ─────────── */
.contact-aside{margin-top:1.75rem; padding-top:1.5rem; border-top:1px solid rgba(255,255,255,.08); display:flex; flex-direction:column; gap:1.1rem;}
.contact-aside-row{display:flex; align-items:center; gap:1rem;}
.contact-aside-social{display:flex; align-items:center; gap:.9rem; flex-wrap:wrap; margin-top:.2rem;}
.contact-aside-social-label{font-size:.85rem; font-weight:600; color:var(--text-secondary);}
.contact-social-row{display:flex; gap:.5rem;}
.contact-social-row a{width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; border:1px solid rgba(255,255,255,.12); border-radius:11px; color:var(--text-secondary); transition:color .2s, border-color .2s, transform .2s, background .2s;}
.contact-social-row a:hover{color:var(--accent-amber); border-color:var(--accent-amber); background:rgba(196,160,53,.08); transform:translateY(-2px);}
.contact-social-row a svg{width:18px; height:18px;}

/* ── Latest News & Articles block (interactive tabs) ──────────────── */
.latest-content{padding:5rem 6%;}
.latest-content .section-header{text-align:center; max-width:720px; margin:0 auto 2.5rem;}
.lc-wrap{max-width:1200px; margin:0 auto;}
.lc-tabs{display:inline-flex; gap:.4rem; padding:.35rem; border:1px solid rgba(255,255,255,.1); border-radius:999px; margin:0 auto 2rem; background:rgba(255,255,255,.03);}
.lc-tabs{display:flex; width:max-content; margin-inline:auto;}
.lc-tab{border:none; cursor:pointer; padding:.6rem 1.6rem; border-radius:999px; font-weight:700; font-size:.92rem; color:var(--text-secondary); background:transparent; transition:all .2s;}
.lc-tab:hover{color:var(--text-primary);}
.lc-tab.active{background:var(--accent-amber); color:var(--dark-bg);}
.lc-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:1.5rem;}
.lc-card{display:flex; flex-direction:column; background:var(--dark-surface,#12151A); border:1px solid rgba(255,255,255,.08); border-radius:16px; overflow:hidden; text-decoration:none; color:inherit; transition:transform .22s, box-shadow .22s, border-color .22s;}
.lc-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px -18px rgba(0,0,0,.6); border-color:rgba(196,160,53,.4);}
.lc-card-media{position:relative; aspect-ratio:16/9; background-size:cover; background-position:center; display:grid; place-items:center;
  background-color:#1a1e25; background-image:linear-gradient(135deg,rgba(196,160,53,.12),rgba(0,180,216,.12));}
.lc-card-ph{color:rgba(255,255,255,.35);}
.lc-card-kind{position:absolute; top:12px; inset-inline-start:12px; font-size:.72rem; font-weight:800; letter-spacing:.03em; text-transform:uppercase; padding:4px 10px; border-radius:999px; background:rgba(10,12,15,.75); color:var(--accent-amber); backdrop-filter:blur(4px);}
.lc-card-body{padding:1.25rem 1.3rem 1.4rem; display:flex; flex-direction:column; gap:.5rem; flex:1;}
.lc-card-date{font-size:.78rem; color:var(--text-muted,#8a909a); font-weight:600;}
.lc-card-title{font-size:1.12rem; font-weight:750; line-height:1.35; margin:0; color:var(--text-primary,#fff);
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
.lc-card-excerpt{font-size:.88rem; color:var(--text-secondary); line-height:1.55; margin:0;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;}
.lc-card-more{margin-top:auto; padding-top:.5rem; font-size:.85rem; font-weight:700; color:var(--accent-amber);}
@media (max-width:600px){ .latest-content{padding:3.5rem 5%;} .lc-grid{grid-template-columns:1fr;} }

/* Arabic default font (Akhbar MT) + all @font-face now live in assets/css/fonts.css */

/* ── Article/News media carousel (featured + gallery, prev/next) ──── */
.media-carousel{position:relative; margin:1.75rem 0 2rem; border-radius:16px; overflow:hidden; background:#0f1217; aspect-ratio:16/9; border:1px solid rgba(255,255,255,.07);}
.mc-track{position:relative; width:100%; height:100%;}
.mc-slide{position:absolute; inset:0; opacity:0; transition:opacity .45s ease; pointer-events:none;}
.mc-slide.active{opacity:1; pointer-events:auto;}
.mc-slide img{width:100%; height:100%; object-fit:cover; display:block;}
.mc-nav{position:absolute; top:50%; transform:translateY(-50%); width:46px; height:46px; border:none; border-radius:50%; background:rgba(10,12,15,.55); color:#fff; cursor:pointer; display:grid; place-items:center; -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px); transition:background .2s, transform .2s; z-index:2;}
.mc-nav:hover{background:rgba(196,160,53,.9); color:#1a1205;}
.mc-prev{inset-inline-start:12px;}
.mc-next{inset-inline-end:12px;}
.mc-dots{position:absolute; inset-inline:0; bottom:12px; display:flex; gap:7px; justify-content:center; z-index:2;}
.mc-dot{width:9px; height:9px; padding:0; border-radius:50%; border:none; cursor:pointer; background:rgba(255,255,255,.45); transition:background .2s, transform .2s;}
.mc-dot:hover{transform:scale(1.2);}
.mc-dot.active{background:var(--accent-amber,#C4A035);}
@media (max-width:600px){ .media-carousel{aspect-ratio:4/3;} .mc-nav{width:40px;height:40px;} }

/* ── Carousel arrow fixes ─────────────────────────────────────────────
   1) Center with margin (not transform) so hover never shifts the button.
   2) Fixed physical left/right so arrows don't flip in RTL.
   3) Force circle shape so theme button:hover can't square them.
   ──────────────────────────────────────────────────────────────────── */
.media-carousel .mc-nav{
  top:50% !important; bottom:auto !important; margin-top:-23px;
  transform:none !important; border-radius:50% !important; padding:0 !important;
  box-sizing:border-box;
}
.media-carousel .mc-nav:hover{ transform:scale(1.06) !important; border-radius:50% !important; }
.media-carousel .mc-prev{ left:12px !important; right:auto !important; }
.media-carousel .mc-next{ right:12px !important; left:auto !important; }

/* ════════════════════════════════════════════════════════════════════
   NEWS PORTAL homepage layout (BBC / CNN / Al Jazeera style)
   ════════════════════════════════════════════════════════════════════ */
.nw-breaking{display:flex; align-items:center; margin-top:70px; background:#0b0e13; border-top:1px solid rgba(255,255,255,.07); border-bottom:1px solid rgba(255,255,255,.07);}
.nw-breaking-label{background:#cc0000; color:#fff; font-weight:800; text-transform:uppercase; letter-spacing:.05em; font-size:.78rem; padding:11px 16px; white-space:nowrap;}
.nw-breaking-text{flex:1; color:var(--text-primary,#fff); font-weight:600; padding:11px 16px; text-decoration:none; overflow:hidden; text-overflow:ellipsis; white-space:nowrap;}
.nw-breaking-text:hover{color:var(--accent-amber,#C4A035);}
.nw-wrap{max-width:1560px; margin:0 auto; padding:26px 4% 60px;}
.nw-empty{max-width:700px; margin:120px auto; text-align:center; color:var(--text-secondary);}

.nw-hero{display:grid; grid-template-columns:1.1fr 2fr; gap:34px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:30px;}
.nw-side-h, .nw-section-h h2{font-size:1.02rem; font-weight:800; text-transform:uppercase; letter-spacing:.03em; color:var(--accent-amber,#C4A035); border-bottom:2px solid var(--accent-amber,#C4A035); padding-bottom:8px; margin:0 0 14px;}
.nw-side{display:flex; flex-direction:column;}
.nw-side-item{display:flex; gap:12px; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.07); text-decoration:none;}
.nw-side-item:last-child{border-bottom:none;}
.nw-side-thumb{flex:0 0 92px; height:64px; border-radius:8px; background-size:cover; background-position:center; background-color:#1a1e25;}
.nw-side-info{display:flex; flex-direction:column; gap:3px; min-width:0;}
.nw-side-cat{font-size:.68rem; font-weight:800; text-transform:uppercase; color:var(--accent-amber,#C4A035);}
.nw-side-title{font-size:.94rem; font-weight:650; line-height:1.35; color:var(--text-primary,#fff);}
.nw-side-item:hover .nw-side-title{color:var(--accent-amber,#C4A035);}

.nw-section{margin-bottom:38px;}
.nw-grid{display:grid; grid-template-columns:repeat(auto-fill,minmax(248px,1fr)); gap:26px;}

.nw-card{display:flex; flex-direction:column;}
.nw-card-media{position:relative; display:block; aspect-ratio:16/10; border-radius:10px; overflow:hidden; background-size:cover; background-position:center; background-color:#1a1e25;}
.nw-card-media[data-ph="0"]{background-image:linear-gradient(135deg,#374151,#1f2937);}
.nw-card-media[data-ph="1"]{background-image:linear-gradient(135deg,#0369a1,#0c4a6e);}
.nw-card-media[data-ph="2"]{background-image:linear-gradient(135deg,#9a3412,#7c2d12);}
.nw-card-media[data-ph="3"]{background-image:linear-gradient(135deg,#15803d,#14532d);}
.nw-card-media[data-ph="4"]{background-image:linear-gradient(135deg,#6d28d9,#4c1d95);}
.nw-card-media[data-ph="5"]{background-image:linear-gradient(135deg,#b45309,#78350f);}
.nw-tag{position:absolute; bottom:10px; inset-inline-start:10px; background:rgba(204,0,0,.92); color:#fff; font-size:.66rem; font-weight:800; text-transform:uppercase; letter-spacing:.03em; padding:4px 9px; border-radius:4px;}
.nw-card-body{padding:12px 0 0;}
.nw-card-title{margin:0 0 6px; font-size:1.06rem; font-weight:700; line-height:1.32;}
.nw-card-title a{color:var(--text-primary,#fff); text-decoration:none;}
.nw-card-title a:hover{color:var(--accent-amber,#C4A035);}
.nw-card-ex{font-size:.96rem; color:var(--text-secondary); line-height:1.55; margin:0 0 8px;}
.nw-card-meta{font-size:.78rem; color:var(--text-muted,#8a909a);}
.nw-lead .nw-card-media{aspect-ratio:16/9;}
.nw-lead .nw-card-title{font-size:2rem; line-height:1.15;}

@media (max-width:820px){ .nw-hero{grid-template-columns:1fr;} .nw-lead .nw-card-title{font-size:1.5rem;} }
@media (max-width:520px){ .nw-grid{grid-template-columns:1fr 1fr; gap:16px;} .nw-side-thumb{flex-basis:80px;height:56px;} }

/* ── Article / News share bar ─────────────────────────────────────────── */
.share-bar{display:flex; align-items:center; flex-wrap:wrap; gap:10px; margin:18px 0 24px; padding:14px 0; border-top:1px solid var(--border,rgba(255,255,255,.1)); border-bottom:1px solid var(--border,rgba(255,255,255,.1));}
.share-bar-label{font-size:.85rem; font-weight:700; color:var(--text-secondary,#9aa0aa); margin-inline-end:2px;}
.share-btn{display:inline-flex; align-items:center; justify-content:center; gap:7px; width:40px; height:40px; padding:0; border:1px solid var(--border,rgba(255,255,255,.14)); border-radius:50%; background:var(--card-bg,rgba(255,255,255,.04)); color:var(--text-primary,#e8e8e8); cursor:pointer; text-decoration:none; transition:transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;}
.share-btn:hover{transform:translateY(-2px);}
.share-wa:hover{background:#25D366; border-color:#25D366; color:#fff;}
.share-tg:hover{background:#229ED9; border-color:#229ED9; color:#fff;}
.share-tw:hover{background:#000; border-color:#000; color:#fff;}
.share-fb:hover{background:#1877F2; border-color:#1877F2; color:#fff;}
.share-li:hover{background:#0A66C2; border-color:#0A66C2; color:#fff;}
.share-copy{width:auto; padding:0 16px; border-radius:22px; font-size:.85rem; font-weight:600;}
.share-copy:hover{background:var(--accent-amber,#C4A035); border-color:var(--accent-amber,#C4A035); color:#0A0C0F;}
.share-copy.copied{background:#2e9e5b; border-color:#2e9e5b; color:#fff;}
.share-copy svg{flex:0 0 auto;}
@media (max-width:520px){ .share-copy-txt{display:none;} .share-copy{width:40px; padding:0;} }
/* Native "Share" button (Web Share API) — primary action, brand amber pill */
.share-native{width:auto; padding:0 16px; border-radius:22px; font-size:.85rem; font-weight:700; background:var(--accent-amber,#C4A035); border-color:var(--accent-amber,#C4A035); color:#0A0C0F;}
.share-native:hover{filter:brightness(1.07); color:#0A0C0F; transform:translateY(-2px);}
.share-native svg{flex:0 0 auto;}
@media (max-width:520px){ .share-native span{display:none;} .share-native{width:40px; padding:0;} }

/* ── Akhbar MT renders smaller than Latin fonts: enlarge Arabic text ── */
[dir="rtl"] .article-detail-content,
[dir="rtl"] .article-detail-content p,
[dir="rtl"] .article-detail-content li { font-size:1.18rem !important; line-height:2.05 !important; }
[dir="rtl"] .article-detail-header h1 { font-size:2.35rem !important; line-height:1.5; }
[dir="rtl"] :is(p, li, blockquote, dd, figcaption) { font-size:1.06em; }
[dir="rtl"] .lc-card-title, [dir="rtl"] .nw-card-title { font-size:1.14rem; line-height:1.5; }
[dir="rtl"] .nw-lead .nw-card-title { font-size:2.1rem; line-height:1.35; }
[dir="rtl"] .nw-card-ex, [dir="rtl"] .lc-card-excerpt { font-size:1.02rem; }
[dir="rtl"] .nav-links a { font-size:1rem; letter-spacing:0; }
[dir="rtl"] .breadcrumb-container, [dir="rtl"] .breadcrumb-current { font-size:1rem; }

/* ── Imported-article links + source attribution footer ──────────────── */
.article-detail-content a,
.media-detail-content a { color: var(--accent-amber, #C4A035); text-decoration: underline; text-underline-offset: 2px; }
.article-detail-content a:hover,
.media-detail-content a:hover { color: var(--accent-amber-bright, #E0B84A); }
.rss-source { margin-top: 1.75rem; padding-top: 1rem; border-top: 1px solid var(--border, rgba(255,255,255,.12)); font-size: .9rem; color: var(--text-secondary, #9aa0aa); }
.rss-source strong { color: var(--text-primary, inherit); }
.rss-source a { font-weight: 600; word-break: break-word; }

/* ── Fix: cancel the global section{padding:8rem 4%} inside news portal ── */
.nw-wrap section.nw-hero, .nw-wrap section.nw-section { padding-top: 0; padding-left: 0; padding-right: 0; }
.nw-wrap section.nw-hero { padding-bottom: 28px; }
.nw-wrap section.nw-section { padding-bottom: 0; }


/* ════════════════════════════════════════════════════════════════════════
   Footer grid layout — used by templates/layout.php and shop-layout.php.
   Logical (start/end) alignment so it mirrors correctly in RTL (Arabic).
   ════════════════════════════════════════════════════════════════════════ */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: start;
    align-items: start;
}
/* When the footer only has brand + one link column, let them spread */
.footer-grid > :last-child:nth-child(2) { justify-self: end; text-align: start; }
html[dir='rtl'] .footer-grid > :last-child:nth-child(2) { justify-self: end; }

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-grid > :last-child:nth-child(2) { justify-self: start; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
    font-family: 'Rajdhani', 'Tajawal', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.25rem;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 38px;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid var(--border-subtle, rgba(128,128,128,.25));
    border-radius: 19px;
    background: transparent;
    color: var(--text-muted, #9aa0aa);
    font-size: 0.8rem;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.footer-social a:hover {
    color: var(--accent-amber, #C4A035);
    border-color: var(--accent-amber, #C4A035);
    transform: translateY(-2px);
}
.footer-social a svg { width: 17px; height: 17px; flex-shrink: 0; }

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle, rgba(128,128,128,.2));
    text-align: center;
    color: var(--text-muted, #9aa0aa);
    font-size: 0.85rem;
}
