/* =============================================
   Landing Page — البحار للحراسات الخاصة
   Premium Dark Theme + 3D Hero + Animations
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

/* ── Root Variables ── */
:root {
    --land-bg: #050a1a;
    --land-bg-2: #0a1128;
    --land-bg-3: #101d3f;
    --land-navy: #121838;
    --land-blue: #4a9eff;
    --land-blue-dark: #2d7dd2;
    --land-gold: #d4a853;
    --land-gold-light: #f0d48a;
    --land-gold-glow: rgba(212, 168, 83, 0.4);
    --land-text: #e4e6f0;
    --land-text-dim: #8892b0;
    --land-text-muted: #5a6380;
    --land-border: rgba(74, 158, 255, 0.12);
    --land-glass: rgba(18, 24, 56, 0.6);
    --land-glass-border: rgba(74, 158, 255, 0.15);
    --land-radius: 16px;
    --land-radius-sm: 10px;
    --land-font: 'Cairo', 'Segoe UI', sans-serif;
    --land-transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ── Global Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.landing-body {
    font-family: var(--land-font);
    background: var(--land-bg);
    color: var(--land-text);
    overflow-x: hidden;
    direction: rtl;
    line-height: 1.7;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.land-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
}

.land-nav.scrolled {
    background: rgba(5, 10, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--land-border);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.3rem;
}

.nav-logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px var(--land-gold-glow);
}

.nav-logo span {
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--land-text-dim);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--land-gold);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-links a:hover { color: var(--land-text); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    color: #0a0e27 !important;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--land-gold-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 83, 0.5);
}
.nav-cta::after { display: none !important; }

.nav-mobile-toggle {
    display: none;
    background: none; border: none;
    font-size: 28px; color: var(--land-text);
    cursor: pointer;
}

/* ═══════════════════════════════════════════
   HERO SECTION — Premium 3D
   ═══════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    perspective: 1000px;
}

/* ── Animated Gradient Mesh Background ── */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(74, 158, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(74, 158, 255, 0.04) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-2%, 3%) rotate(1deg); }
    66% { transform: translate(2%, -2%) rotate(-1deg); }
}

/* ── Radar Grid Background ── */
.hero-radar {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0.04;
}

.radar-circle {
    position: absolute;
    border: 1px solid var(--land-blue);
    border-radius: 50%;
    top: 50%; left: 15%;
    transform: translate(-50%, -50%);
}

.radar-circle:nth-child(1) { width: 200px; height: 200px; }
.radar-circle:nth-child(2) { width: 400px; height: 400px; }
.radar-circle:nth-child(3) { width: 600px; height: 600px; }
.radar-circle:nth-child(4) { width: 800px; height: 800px; }

.radar-sweep {
    position: absolute;
    top: 50%; left: 15%;
    width: 400px; height: 2px;
    background: linear-gradient(90deg, var(--land-blue), transparent);
    transform-origin: 0% 50%;
    animation: radarSpin 6s linear infinite;
    opacity: 0.6;
}

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

/* ── Grid overlay ── */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* ── Floating Particles ── */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { width: 3px; height: 3px; background: var(--land-gold); top: 12%; left: 75%; animation-delay: 0s; animation-duration: 20s; opacity: 0.4; }
.particle:nth-child(2) { width: 2px; height: 2px; background: var(--land-blue); top: 28%; left: 88%; animation-delay: -3s; animation-duration: 18s; opacity: 0.3; }
.particle:nth-child(3) { width: 4px; height: 4px; background: var(--land-gold); top: 65%; left: 80%; animation-delay: -7s; animation-duration: 22s; opacity: 0.25; }
.particle:nth-child(4) { width: 2px; height: 2px; background: var(--land-blue); top: 45%; left: 92%; animation-delay: -11s; animation-duration: 16s; opacity: 0.35; }
.particle:nth-child(5) { width: 3px; height: 3px; background: var(--land-gold); top: 80%; left: 70%; animation-delay: -5s; animation-duration: 24s; opacity: 0.2; }
.particle:nth-child(6) { width: 2px; height: 2px; background: var(--land-blue); top: 18%; left: 65%; animation-delay: -9s; animation-duration: 19s; opacity: 0.3; }
.particle:nth-child(7) { width: 3px; height: 3px; background: var(--land-gold); top: 55%; left: 60%; animation-delay: -2s; animation-duration: 21s; opacity: 0.15; }
.particle:nth-child(8) { width: 2px; height: 2px; background: var(--land-blue); top: 35%; left: 72%; animation-delay: -14s; animation-duration: 17s; opacity: 0.25; }

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: var(--p-opacity, 0.3); }
    25% { transform: translate(20px, -30px); opacity: calc(var(--p-opacity, 0.3) * 1.5); }
    50% { transform: translate(-15px, 15px); opacity: var(--p-opacity, 0.3); }
    75% { transform: translate(25px, 20px); opacity: calc(var(--p-opacity, 0.3) * 0.7); }
}

/* ── Floating Shield Icons & Stars ── */
.floating-shields {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.shield-float {
    position: absolute;
    opacity: 0.15;
    transition: transform 0.3s ease-out;
    animation: floatItem 8s infinite ease-in-out;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.star-shape {
    filter: drop-shadow(0 0 10px var(--land-gold));
    opacity: 0.5;
    color: var(--land-gold);
}

.shield-float:nth-child(1) { top: 18%; left: 22%; font-size: 32px; animation-duration: 9s; animation-delay: 0s;}
.shield-float:nth-child(2) { top: 10%; right: 20%; font-size: 36px; animation-duration: 12s; animation-delay: -2s; opacity: 0.05;}
.shield-float:nth-child(3) { top: 35%; left: 15%; font-size: 22px; animation-duration: 7s; animation-delay: -3s;}
.shield-float:nth-child(4) { top: 55%; right: 12%; font-size: 24px; animation-duration: 10s; animation-delay: -5s; opacity: 0.05;}
.shield-float:nth-child(5) { top: 75%; left: 32%; font-size: 28px; animation-duration: 11s; animation-delay: -1s;}
.shield-float:nth-child(6) { top: 25%; right: 75%; font-size: 28px; animation-duration: 14s; animation-delay: -8s; opacity: 0.05;}
.shield-float:nth-child(7) { top: 60%; left: 5%; font-size: 18px; animation-duration: 8s; animation-delay: -4s;}
.shield-float:nth-child(8) { top: 70%; right: 65%; font-size: 20px; animation-duration: 11s; animation-delay: -6s; opacity: 0.05;}
.shield-float:nth-child(9) { top: 20%; left: 45%; font-size: 16px; animation-duration: 6s; animation-delay: -4s;}
.shield-float:nth-child(10) { top: 40%; right: 50%; font-size: 32px; animation-duration: 13s; animation-delay: -2s; opacity: 0.05; color: var(--land-blue);}
.shield-float:nth-child(11) { top: 85%; right: 40%; font-size: 24px; animation-duration: 9s; animation-delay: -7s; opacity: 0.1; color: var(--land-gold);}
.shield-float:nth-child(12) { top: 15%; right: 35%; font-size: 22px; animation-duration: 10s; animation-delay: -3s; opacity: 0.1; color: var(--land-blue-dark);}
.shield-float:nth-child(13) { top: 50%; left: 45%; font-size: 36px; animation-duration: 12s; animation-delay: -5s;}

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-20px) rotate(10deg) scale(1.1); }
}

/* ═══════════════════════════════════════════
   HERO — Scene Composition (Guard + Desk)
   ═══════════════════════════════════════════ */
.hero-inner {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px);
    width: 100%;
}

/* ── Monitoring Desk (Behind guard) ── */
.desk-wrapper {
    position: absolute;
    left: 0;
    bottom: -5vh;
    z-index: 3;
    width: 60vw; /* Scales with screen width */
    max-width: 1000px;
    min-width: 650px;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    opacity: 0.95;
    filter: brightness(0.8) contrast(1.1);
}

.desk-img {
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* ── Blue Arc Glow (Behind guard) ── */
.guard-arc-glow {
    position: absolute;
    left: 30vw; /* Centered with guard */
    bottom: 15vh;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.08) 0%, rgba(74, 158, 255, 0.03) 40%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
}

.guard-arc-glow::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(74, 158, 255, 0.1);
    animation: radarSpin 40s linear infinite reverse;
}

.guard-arc-glow::after {
    content: '';
    position: absolute;
    inset: 120px;
    border-radius: 50%;
    border: 1px solid rgba(74, 158, 255, 0.05);
}

/* ── 3D Guard Character ── */
.guard-wrapper {
    position: absolute;
    left: 18vw; /* Fixed relative to screen and desk */
    bottom: -2%;
    z-index: 8;
    width: 29vw;
    max-width: 500px;
    min-width: 350px;
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.guard-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 80px rgba(74, 158, 255, 0.1)) drop-shadow(0 25px 50px rgba(0,0,0,0.6));
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Guard flashlight beam */
.guard-flashlight {
    position: absolute;
    top: 15%;
    left: 30%;
    width: 600px;
    height: 700px;
    background: conic-gradient(from -10deg at 0% 0%, rgba(212, 168, 83, 0.05) 0deg, rgba(74, 158, 255, 0.02) 20deg, transparent 35deg);
    transform-origin: 0% 0%;
    pointer-events: none;
    transition: transform 0.15s ease-out;
    filter: blur(10px);
    z-index: 7;
}

/* Guard glow base (floor reflection) */
.guard-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 350px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(74, 158, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
}

/* ═══════════════════════════════════════════
   HERO — Content (Right side for RTL)
   ═══════════════════════════════════════════ */
.hero-content {
    max-width: 550px;
    margin-right: 0;
    margin-left: auto; /* Pushes the single flex item to the right side */
    padding-right: 8%;
    position: relative;
    z-index: 20;
    text-align: right;
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(212, 168, 83, 0.08);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--land-gold);
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--land-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--land-gold-glow);
}

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

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    position: relative;
}

.hero-title .typed-cursor {
    display: inline-block;
    width: 3px;
    height: 0.85em;
    background: var(--land-gold);
    margin-right: 4px;
    animation: blink 0.8s infinite;
    vertical-align: text-bottom;
    box-shadow: 0 0 8px var(--land-gold-glow);
}

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

.hero-desc {
    font-size: 1.1rem;
    color: var(--land-text-dim);
    line-height: 1.9;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

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

/* ── Buttons ── */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    color: #0a0e27;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-family: var(--land-font);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 25px var(--land-gold-glow);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-hero-primary:hover::before { left: 100%; }
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 35px rgba(212, 168, 83, 0.5); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: transparent;
    color: var(--land-text);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: 2px solid var(--land-glass-border);
    cursor: pointer;
    font-family: var(--land-font);
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: rgba(74, 158, 255, 0.08);
    border-color: var(--land-blue);
    transform: translateY(-2px);
}

/* ── Hero Mini Stats ── */
.hero-mini-stats {
    display: flex;
    justify-content: flex-start;
    gap: 36px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-mini-stat { text-align: center; }

.hero-mini-stat .num {
    font-size: 1.7rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-mini-stat .label {
    font-size: 0.8rem;
    color: var(--land-text-muted);
    margin-top: 2px;
}

/* ── Scroll indicator ── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--land-text-muted);
    font-size: 0.75rem;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-mouse {
    width: 26px; height: 40px;
    border: 2px solid var(--land-text-muted);
    border-radius: 13px;
    position: relative;
}

.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--land-gold);
    border-radius: 2px;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

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

/* ═══════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════ */
.stats-section {
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(74, 158, 255, 0.02), transparent);
}

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--land-glass);
    border: 1px solid var(--land-glass-border);
    border-radius: var(--land-radius);
    backdrop-filter: blur(10px);
    transition: all var(--land-transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--land-gold);
    box-shadow: 0 20px 40px rgba(212, 168, 83, 0.08);
}

.stat-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--land-gold), var(--land-gold-light));
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--land-text-dim);
    margin-top: 8px;
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════ */
.services-section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: rgba(74, 158, 255, 0.06);
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--land-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--land-text-dim);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    padding: 36px 28px;
    background: var(--land-glass);
    border: 1px solid var(--land-glass-border);
    border-radius: var(--land-radius);
    transition: all var(--land-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--land-gold), var(--land-blue));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 158, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(74, 158, 255, 0.08));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(212, 168, 83, 0.15);
}

.service-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-desc { font-size: 0.9rem; color: var(--land-text-dim); line-height: 1.8; }

/* ═══════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════ */
.whyus-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(10, 17, 40, 0.5), transparent);
}

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

.whyus-card {
    padding: 32px 28px;
    background: var(--land-glass);
    border: 1px solid var(--land-glass-border);
    border-radius: var(--land-radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all var(--land-transition);
}

.whyus-card:hover {
    background: rgba(18, 24, 56, 0.8);
    border-color: rgba(212, 168, 83, 0.3);
    transform: translateX(-4px);
}

.whyus-card:nth-child(1) { grid-column: 1 / -1; }

.whyus-icon {
    width: 56px; height: 56px; min-width: 56px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.12), rgba(212, 168, 83, 0.04));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}

.whyus-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.whyus-desc { font-size: 0.9rem; color: var(--land-text-dim); line-height: 1.8; }

/* ═══════════════════════════════════════════
   CLIENTS SECTION — Premium Badge Marquee
   ═══════════════════════════════════════════ */
.clients-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Guard overlapping the frame from left (right in RTL) */
.clients-guard {
    position: absolute;
    right: auto;
    left: -100px;
    bottom: -10px;
    width: 260px;
    z-index: 5;
    pointer-events: none;
}

.clients-guard img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(74, 158, 255, 0.1));
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Premium frame container */
.clients-frame {
    background: linear-gradient(135deg, rgba(18, 24, 56, 0.7), rgba(10, 17, 40, 0.9));
    border: 1px solid rgba(74, 158, 255, 0.12);
    border-radius: 20px;
    padding: 40px 0;
    position: relative;
    overflow: visible;
    margin-right: 0;
}

/* Diagonal shine effect */
.clients-frame::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    animation: frameShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes frameShine {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30%) translateY(30%); }
}

/* Gold border accent on top */
.clients-frame::after {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--land-gold), transparent);
    opacity: 0.4;
}

/* ── Infinite Scroll Track ── */
.clients-track-wrapper {
    overflow: hidden;
    cursor: grab;
    padding: 10px 0;
}

.clients-track-wrapper:active { cursor: grabbing; }

.clients-track {
    display: flex;
    width: max-content;
    direction: ltr;
    will-change: transform;
    cursor: grab;
}

.clients-set {
    display: flex;
    gap: 8px;
    padding-right: 8px; /* ensures seamless connection between sets */
}

/* Shield/Badge Card */
.client-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 16px 16px;
    min-width: 120px;
    background: linear-gradient(180deg, rgba(18, 24, 56, 0.8), rgba(10, 17, 40, 0.95));
    border: 1px solid rgba(74, 158, 255, 0.1);
    border-radius: 14px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    text-align: center;
    user-select: none;
    flex-shrink: 0;
}

/* Shield top shape accent */
.client-badge::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--land-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.client-badge:hover::before { opacity: 1; }

.client-badge:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 168, 83, 0.05);
}

/* Icon */
.client-badge-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1), rgba(74, 158, 255, 0.08));
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    transition: all 0.3s;
}

.client-badge:hover .client-badge-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.15);
    border-color: rgba(212, 168, 83, 0.3);
}

.client-badge-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--land-text-dim);
    line-height: 1.4;
    transition: color 0.3s;
}

.client-badge:hover .client-badge-name { color: var(--land-text); }

/* ═══════════════════════════════════════════
   CTA (ULTIMATE CUSTOM CSS)
   ═══════════════════════════════════════════ */
.cta-ultimate {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: radial-gradient(circle at center, #0B1120 0%, #060913 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
    border-top: 1px solid rgba(74, 158, 255, 0.1);
    border-bottom: 1px solid rgba(74, 158, 255, 0.1);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

/* ── Background Elements ── */
.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(74, 158, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 158, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.cta-stars {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.cta-stars .star {
    position: absolute;
    color: var(--land-gold);
    opacity: 0.6;
    animation: twinkle 3s infinite alternate;
}
.cta-stars .star:nth-child(1) { top: 10%; left: 20%; font-size: 14px; animation-delay: 0s; }
.cta-stars .star:nth-child(2) { top: 30%; left: 50%; font-size: 10px; animation-delay: 1s; }
.cta-stars .star:nth-child(3) { top: 15%; right: 15%; font-size: 18px; animation-delay: 2s; color: var(--land-blue); }
.cta-stars .star:nth-child(4) { top: 60%; left: 10%; font-size: 12px; animation-delay: 0.5s; }
.cta-stars .star:nth-child(5) { top: 50%; right: 30%; font-size: 16px; animation-delay: 1.5s; }

.floating-lock {
    position: absolute;
    font-size: 24px;
    opacity: 0.15;
    animation: floatSlow 8s ease-in-out infinite;
    filter: drop-shadow(0 0 10px var(--land-blue));
}
.lock-1 { top: 20%; right: 40%; }
.lock-2 { top: 70%; left: 30%; font-size: 18px; animation-delay: -2s; }
.lock-3 { top: 40%; left: 15%; font-size: 32px; animation-delay: -4s; filter: drop-shadow(0 0 15px var(--land-gold)); opacity: 0.1; }

@keyframes twinkle { 0% { opacity: 0.2; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1.2); } }
@keyframes floatSlow { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* ── Glass Crescent (Left) ── */
.cta-crescent {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 250px;
    height: 480px;
    z-index: 5;
    pointer-events: none;
}

.crescent-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border-right: 35px solid rgba(255, 255, 255, 0.1);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 0;
    transform: rotate(15deg);
    filter: drop-shadow(-10px 0 20px rgba(74, 158, 255, 0.4)) drop-shadow(5px 0 10px rgba(255, 255, 255, 0.2));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.crescent-glow {
    position: absolute;
    top: 10%; right: 0; bottom: 10%; left: 50%;
    background: radial-gradient(ellipse at right, rgba(74, 158, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
}

/* ── Guard Area (Right) ── */
.cta-guard-area {
    position: absolute;
    bottom: -10px;
    right: 5%;
    width: 400px;
    height: 90%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.cta-guard-img {
    position: relative;
    z-index: 6;
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.holo-shield-back {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 380px;
    z-index: 4;
}

.holo-lines {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(74, 158, 255, 0.2);
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%; /* Shield shape */
    box-shadow: 
        0 0 30px rgba(74, 158, 255, 0.1) inset,
        0 0 20px rgba(74, 158, 255, 0.2);
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(74, 158, 255, 0.05) 5px, transparent 6px);
}

.holo-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 140px; height: 160px;
    border: 3px solid rgba(74, 158, 255, 0.5);
    border-radius: 50% 50% 50% 50% / 20% 20% 80% 80%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.2) 0%, transparent 70%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 40px rgba(74, 158, 255, 0.4);
    animation: pulseShield 4s infinite alternate;
}

.holo-lock {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.8));
}

@keyframes pulseShield {
    0% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

/* ── Content (Center) ── */
.cta-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.cta-title-gold {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f0d48a 0%, #c49637 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 15px rgba(0,0,0,0.8));
}

.cta-title-gold .text-white {
    background: #fff;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #a8b8db;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

/* ── Buttons ── */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 60px;
}

.cta-btn-primary, .cta-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
    padding: 15px 24px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.cta-btn-primary {
    background: linear-gradient(90deg, #d4a853 0%, #e8c678 50%, #d4a853 100%);
    color: #0b1120;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4), inset 0 -2px 5px rgba(0,0,0,0.2);
    background-size: 200% auto;
    border: none;
}
.cta-btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.6), inset 0 -2px 5px rgba(0,0,0,0.2);
}

.cta-btn-outline {
    background: rgba(18, 24, 56, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.cta-btn-outline:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(212, 168, 83, 0.6);
    transform: translateY(-2px);
}

/* ── Contact Badges Bar (Bottom) ── */
.cta-bottom-bar {
    position: relative;
    z-index: 10;
    width: 100%;
    /* Connective Line */
    border-top: 1px solid rgba(212, 168, 83, 0.3);
    border-bottom: 1px solid rgba(212, 168, 83, 0.3);
    background: rgba(8, 12, 30, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    backdrop-filter: blur(10px);
}

.bottom-bridge-line {
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--land-gold-glow), transparent);
    z-index: -1;
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.contact-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #060913;
    border: 1px solid rgba(212, 168, 83, 0.5);
    border-radius: 50px;
    padding: 10px 24px;
    box-shadow: 0 0 15px rgba(212, 168, 83, 0.1);
}

.contact-pill .pill-icon {
    font-size: 1.1rem;
    color: var(--land-gold);
    background: rgba(212, 168, 83, 0.1);
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}

.contact-pill .pill-text {
    font-size: 0.85rem;
    color: #e0e5f2;
    font-weight: 500;
}

/* The small side diamonds from user design */
.side-diamond {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px; height: 8px;
    background: var(--land-gold);
    box-shadow: 0 0 10px var(--land-gold);
}
.left-diamond { left: 10%; }
.right-diamond { right: 10%; }

/* ── Responsive Resets ── */
@media (max-width: 1024px) {
    .cta-crescent { left: -50px; opacity: 0.5; }
    .cta-guard-area { right: -50px; opacity: 0.8; }
    .badges-wrapper { gap: 15px; }
}

@media (max-width: 768px) {
    .cta-crescent { display: none; }
    .cta-guard-area { display: none; }
    .cta-ultimate { background: #060913; }
    .badges-wrapper { flex-direction: column; gap: 10px; }
    .bottom-bridge-line, .side-diamond { display: none; }
    .contact-pill { width: 100%; max-width: 320px; justify-content: center; }
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.land-footer {
    border-top: 1px solid var(--land-border);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: var(--land-text-dim); line-height: 1.8; }

.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--land-text-dim); font-size: 0.9rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--land-gold); }

.footer-bottom {
    border-top: 1px solid var(--land-border);
    padding-top: 24px;
    text-align: center;
    color: var(--land-text-muted);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .guard-wrapper { width: 380px; left: 0; }
    .desk-wrapper { width: 420px; left: -5%; }
    .hero-content { margin-left: 38%; padding-right: 20px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: block; }
    .guard-wrapper { display: none; }
    .desk-wrapper { display: none; }
    .guard-flashlight { display: none; }
    .guard-arc-glow { display: none; }
    .hero-radar { display: none; }
    .hero-content { margin-left: 0; padding-right: 0; text-align: center; max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-mini-stats { justify-content: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .whyus-grid { grid-template-columns: 1fr; }
    .whyus-card:nth-child(1) { grid-column: auto; }
    .clients-guard { display: none; }
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
    .clients-frame { padding: 30px 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-contact { flex-direction: column; align-items: center; gap: 16px; }
    .hero-mini-stats { gap: 20px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 1.8rem; }
    .cta-box { padding: 40px 20px; }
}

/* ── Mobile Nav ── */
.nav-links.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(5, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 20px;
    z-index: 1001;
    border-left: 1px solid var(--land-border);
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
