/* ==========================================================================
   premium cinematic design system - najm jeddah (stage 3)
   ========================================================================== */

/* Color & Token Definitions */
:root {
    --color-bg-deep: #03060f;
    --color-bg-dark: #070b15;
    --color-bg-card: rgba(10, 18, 36, 0.45);
    --color-bg-card-hover: rgba(14, 25, 51, 0.75);
    --color-border: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(14, 165, 233, 0.35);
    
    /* Luxury Accents */
    --color-petrol: #0ea5e9;
    --color-petrol-glow: rgba(14, 165, 233, 0.25);
    --color-gold: #f59e0b;
    --color-gold-glow: rgba(245, 158, 11, 0.25);
    --color-whatsapp: #10b981;
    --color-whatsapp-glow: rgba(16, 185, 129, 0.3);
    
    /* Typography Colors */
    --color-text-primary: #f8fafc;
    --color-text-secondary: #cbd5e1;
    --color-text-muted: #64748b;
    
    /* Spacing & Utilities */
    --container-width: 1280px;
    --header-height: 80px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

/* Global Reset & Base Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Scroll margin for fixed header offset on anchor links */
[id] {
    scroll-margin-top: calc(var(--header-height) + 20px);
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    direction: rtl;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-primary);
    font-family: 'Tajawal', sans-serif;
    line-height: 1.65;
    text-align: right;
}

section {
    position: relative;
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Accessibility: focus-visible for keyboard navigation */
a:focus-visible, button:focus-visible, input:focus-visible, .tab-btn:focus-visible {
    outline: 2px solid var(--color-petrol);
    outline-offset: 3px;
    border-radius: 8px;
}

::selection {
    background: rgba(14, 165, 233, 0.35);
    color: #ffffff;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.section-padding {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 85px;
        padding-bottom: 85px;
    }
}

/* ==========================================================================
   cinematic background system, noise & vignette
   ========================================================================== */

#cinematic-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

#vignette {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    pointer-events: none;
    background: radial-gradient(circle, transparent 55%, rgba(3, 6, 15, 0.8) 100%);
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    pointer-events: none;
}

.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -9;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    mix-blend-mode: plus-lighter;
}

.bg-glow-1 {
    top: -15%;
    right: 15%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--color-petrol-glow) 0%, transparent 70%);
}

.bg-glow-2 {
    bottom: 10%;
    left: 5%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--color-gold-glow) 0%, transparent 70%);
}

.bg-glow-3 {
    top: 35%;
    right: 45%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
}

/* ==========================================================================
   buttons & ctas
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-large {
    padding: 15px 32px;
    font-size: 1.05rem;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--color-whatsapp-glow);
    animation: cta-pulse-whatsapp 3s infinite ease-in-out;
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
    background-color: #0fa372;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.01);
    color: var(--color-text-primary);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--color-petrol);
    background-color: rgba(14, 165, 233, 0.08);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.15);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    border: 1px solid var(--color-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.btn-glow:hover::after {
    opacity: 1;
    transform: scale(1.04);
}

.icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-inline {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

.w-100 { width: 100%; }
.mb-3 { margin-bottom: 1rem; }

/* ==========================================================================
   header navigation
   ========================================================================== */

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

#main-header.scrolled {
    background-color: rgba(6, 10, 20, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.45);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo (Right side) */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo-svg {
    width: 42px;
    height: 42px;
    color: var(--color-petrol);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-svg-mini {
    width: 100%;
    height: 100%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: var(--color-text-primary);
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--color-petrol);
    font-weight: 500;
    letter-spacing: 1px;
}

/* Nav Menu (Center) */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--color-text-secondary);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-petrol);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Header Actions (Left side) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-fast);
}

/* ==========================================================================
   mobile menu drawer
   ========================================================================== */

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100%;
    background-color: rgba(6, 10, 20, 0.96);
    backdrop-filter: blur(25px);
    z-index: 1100;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.drawer-title {
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--color-text-primary);
    font-size: 2rem;
    cursor: pointer;
}

.drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    display: block;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), padding 0.2s ease, color 0.2s ease;
}

.mobile-drawer.open .drawer-link {
    opacity: 1;
    transform: translateX(0);
}

.mobile-drawer .drawer-nav li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-drawer .drawer-nav li:nth-child(2) a { transition-delay: 0.14s; }
.mobile-drawer .drawer-nav li:nth-child(3) a { transition-delay: 0.18s; }
.mobile-drawer .drawer-nav li:nth-child(4) a { transition-delay: 0.22s; }
.mobile-drawer .drawer-nav li:nth-child(5) a { transition-delay: 0.26s; }
.mobile-drawer .drawer-nav li:nth-child(6) a { transition-delay: 0.3s; }
.mobile-drawer .drawer-nav li:nth-child(7) a { transition-delay: 0.34s; }
.mobile-drawer .drawer-nav li:nth-child(8) a { transition-delay: 0.38s; }

.drawer-link:hover {
    color: var(--color-petrol);
    padding-right: 8px;
}

/* ==========================================================================
   section 1: cinematic hero (centered stack final pass)
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    overflow: visible; /* Prevent clipping of floating 3D cardboard box on scroll */
}

/* 2-Column Grid Layout for Desktop (RTL: content right, visual left) */
.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-areas: 
        "content visual"
        "bottom bottom";
    align-items: center;
    gap: 30px 40px;
    width: 100%;
}

.hero-content {
    grid-area: content;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 10;
    
    /* Option B: Premium glassmorphism panel */
    background: radial-gradient(circle at 100% 0%, rgba(14, 165, 233, 0.08) 0%, rgba(7, 11, 21, 0.42) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 4px solid var(--color-gold); /* Gold right accent line (RTL) */
    border-radius: 28px;
    padding: 35px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.02);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.hero-content:hover {
    border-right-color: var(--color-petrol);
    box-shadow: 0 25px 60px rgba(14, 165, 233, 0.12);
}

.hero-tagline-small {
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    display: inline-block;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 6px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.hero-title {
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    line-height: 1.22;
    margin-bottom: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    text-align: right;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--color-petrol) 0%, var(--color-gold) 50%, var(--color-petrol) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-shimmer 4s linear infinite;
}

@keyframes title-shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero-description {
    font-size: 1.05rem;
    color: var(--color-text-secondary);
    max-width: 620px;
    margin-bottom: 30px;
    line-height: 1.75;
    text-align: right;
}

.hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 25px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pill-pulse-glow 4s infinite ease-in-out;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.15);
    color: #ffffff;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-petrol);
    box-shadow: 0 0 8px var(--color-petrol);
}

.hero-visual-wrapper {
    grid-area: visual;
    width: 100%;
    max-width: 440px;
    height: 440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
}

.hero-bottom-group {
    grid-area: bottom;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    z-index: 10;
}

/* Statistics Grid under Hero */
.hero-stats-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 35px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.stat-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 16px 24px;
    flex: 1;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transform-style: preserve-3d;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.1);
}

.stat-num {
    font-family: 'Cairo', sans-serif;
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 900;
    display: block;
    line-height: 1.2;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.15);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* Scroll indicator base styles */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mouse-icon {
    width: 20px;
    height: 32px;
    border-radius: 20px;
    border: 1.5px solid var(--color-text-muted);
    position: relative;
}

.mouse-wheel {
    display: block;
    width: 3px;
    height: 6px;
    background-color: var(--color-petrol);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel-drag 1.8s infinite ease-in-out;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Glowing pin and shield node animations */
#glowing-jeddah-pin {
    animation: pin-pulse-soft 3.2s infinite ease-in-out;
    transform-origin: 250px 40px;
}

@keyframes pin-pulse-soft {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 2px var(--color-gold)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 12px var(--color-gold)); }
}

#shield-protection-node {
    animation: shield-glow-soft 4s infinite ease-in-out;
    transform-origin: 405px 250px;
}

@keyframes shield-glow-soft {
    0%, 100% { filter: drop-shadow(0 0 2px var(--color-petrol)); }
    50% { filter: drop-shadow(0 0 10px var(--color-petrol)); }
}

/* Custom reveal configurations for staggered hero intro */
.hero-section .hero-tagline-small.reveal-init {
    transform: translateY(-20px);
}
.hero-section .hero-title.reveal-init {
    transform: translateX(50px); /* slide in from right (RTL starting offset) */
}
.hero-section .hero-description.reveal-init {
    transform: translateX(30px);
}
.hero-section .hero-ctas.reveal-init {
    transform: translateY(20px) scale(0.95);
}
.hero-section .hero-visual-wrapper.reveal-init {
    transform: scale(0.85) rotate(-10deg);
}
.hero-section .hero-bottom-group.reveal-init {
    transform: translateY(30px);
}

.hero-section .badge {
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

.hero-section .hero-badges.reveal-active .badge {
    opacity: 1;
    transform: scale(1);
}

.glow-radial-behind {
    position: absolute;
    width: 85%;
    height: 85%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.14) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(45px);
    pointer-events: none;
}

.interactive-orbit-logo {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.orbit-main-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.6));
}

/* Interactive 3D Cube (Cardboard Moving Box) Styles */
.cube-3d-wrapper {
    position: absolute;
    width: 180px;
    height: 180px;
    perspective: 1000px;
    z-index: 5;
    transform-style: preserve-3d;
    cursor: pointer;
}

.cube-3d {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(45deg);
}

.face {
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #a36a31 0%, #78481d 100%); /* Cardboard brown color */
    border: 1px solid rgba(251, 191, 36, 0.25);
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    color: #fff;
    backface-visibility: visible;
    border-radius: 2px;
}

/* Semi-transparent blue stretch film protection wrap overlay */
.blue-plastic-wrap {
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: rgba(14, 165, 233, 0.42); /* Translucent blue */
    border: 1.5px solid rgba(56, 189, 248, 0.85); /* Sky blue highlight outline */
    box-shadow: inset 0 0 16px rgba(14, 165, 233, 0.75), 0 0 10px rgba(14, 165, 233, 0.25);
    pointer-events: none;
    z-index: 3; /* On top of cardboard and tape textures */
    border-radius: 2px;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 45%, rgba(14, 165, 233, 0.5) 100%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 6px); /* stretch film plastic micro texture stripes */
    backdrop-filter: blur(0.5px);
    transition: var(--transition-medium);
    overflow: hidden;
}

.blue-plastic-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    animation: box-sheen-sweep 5.5s infinite ease-in-out;
}

@keyframes box-sheen-sweep {
    0% { left: -150%; }
    40% { left: 150%; }
    100% { left: 150%; }
}

.cube-3d-wrapper:hover .blue-plastic-wrap {
    background-color: rgba(14, 165, 233, 0.48);
    border-color: #38bdf8;
    box-shadow: inset 0 0 20px rgba(14, 165, 233, 0.95), 0 0 15px rgba(14, 165, 233, 0.45);
}

/* Positioning faces in 3D space */
.front  { transform: rotateY(0deg) translateZ(90px); }
.back   { transform: rotateY(180deg) translateZ(90px); }
.left   { transform: rotateY(-90deg) translateZ(90px); }
.right  { transform: rotateY(90deg) translateZ(90px); }
.top    { 
    transform: rotateX(90deg) translateZ(90px); 
    background: none; 
    border: none; 
    box-shadow: none;
    transform-style: preserve-3d;
}
.bottom { transform: rotateX(-90deg) translateZ(90px); }

/* Cardboard Flaps for Top Face */
.flap {
    position: absolute;
    height: 180px;
    width: 90px;
    background: linear-gradient(135deg, #a36a31 0%, #78481d 100%);
    border: 1px solid rgba(251, 191, 36, 0.2);
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.45);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.flap-left {
    left: 0;
    transform-origin: left center;
    transform: rotateY(0deg);
}

.flap-right {
    right: 0;
    transform-origin: right center;
    transform: rotateY(0deg);
}

/* Packaging Gold Tape */
.tape-v {
    position: absolute;
    width: 36px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #b45309, #fbbf24, #b45309);
    opacity: 0.8;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.tape-flap-left {
    position: absolute;
    right: 0;
    width: 18px;
    height: 100%;
    background: linear-gradient(to right, #b45309, #fbbf24);
    opacity: 0.8;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

.tape-flap-right {
    position: absolute;
    left: 0;
    width: 18px;
    height: 100%;
    background: linear-gradient(to right, #fbbf24, #b45309);
    opacity: 0.8;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1;
}

/* Box branding */
.logo-on-box {
    position: relative;
    z-index: 2;
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
    background: linear-gradient(135deg, #fff 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
    background-color: rgba(6, 10, 20, 0.35);
    border-radius: 4px;
}

/* Inner Cargo Rising Animation */
.cube-cargo {
    position: absolute;
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0) scale(0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 0 15px var(--color-petrol-glow)) drop-shadow(0 0 30px var(--color-gold-glow));
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cargo-inner-svg {
    width: 100%;
    height: 100%;
    color: var(--color-gold);
}

/* Responsive adjustments for 3D box */
@media (max-width: 768px) {
    .cube-3d-wrapper {
        width: 140px;
        height: 140px;
    }
    .face {
        width: 140px;
        height: 140px;
    }
    .front  { transform: rotateY(  0deg) translateZ(70px); }
    .back   { transform: rotateY(180deg) translateZ(70px); }
    .left   { transform: rotateY(-90deg) translateZ(70px); }
    .right  { transform: rotateY( 90deg) translateZ(70px); }
    .top    { transform: rotateX( 90deg) translateZ(70px); }
    .bottom { transform: rotateX(-90deg) translateZ(70px); }
    .flap {
        height: 140px;
        width: 70px;
    }
    .tape-flap-left { width: 14px; }
    .tape-flap-right { width: 14px; }
    .tape-v { width: 28px; }
    .logo-on-box { font-size: 0.8rem; padding: 3px 8px; }
    .cube-cargo {
        width: 80px;
        height: 80px;
    }
}

#logo-emblem {
    animation: slow-hover-3d 8s infinite ease-in-out;
    transform-origin: 0px 0px;
    transform-style: preserve-3d;
}

.orbit-outer {
    transform-origin: 250px 250px;
    animation: orbit-rotate-cw 48s linear infinite;
}

.orbit-mid {
    transform-origin: 250px 250px;
    animation: orbit-rotate-ccw 30s linear infinite;
}

.orbit-inner {
    transform-origin: 250px 250px;
    animation: orbit-rotate-cw 18s linear infinite;
}

.node-1 {
    transform-origin: 250px 250px;
    animation: orbit-rotate-cw 40s linear infinite;
}

.node-2 {
    transform-origin: 250px 250px;
    animation: orbit-rotate-ccw 24s linear infinite;
}

.pulse-node {
    animation: pulse-glow 2.5s infinite ease-in-out;
}

.floating-box {
    position: absolute;
    padding: 11px 20px;
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-primary);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.05);
    z-index: 10;
    transition: var(--transition-smooth);
}

.floating-box:hover {
    border-color: var(--color-petrol);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.25);
    transform: scale(1.05) translateZ(40px);
}

.box-1 {
    top: 10%;
    right: -5%;
    animation: float-y 8s infinite ease-in-out;
    border-right: 3.5px solid var(--color-petrol);
}

.box-2 {
    bottom: 22%;
    left: -12%;
    animation: float-y 10s infinite ease-in-out 2s;
    border-right: 3.5px solid var(--color-gold);
}

.box-3 {
    bottom: 8%;
    right: -2%;
    animation: float-y 9s infinite ease-in-out 4.5s;
    border-right: 3.5px solid var(--color-whatsapp);
}

/* ==========================================================================
   common section elements
   ========================================================================== */

.section-header {
    margin-bottom: 80px;
}

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

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.18);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-petrol);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
    transition: var(--transition-smooth);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   section 2: services preview (3D glass cards)
   ========================================================================== */

.services-section {
    position: relative;
}

/* ==========================================================================
   Services Orbit Wrapper Styling
   ========================================================================== */
.services-orbit-wrapper {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    position: relative;
}

.services-orbit-container {
    position: relative;
    height: 700px;
    width: 100%;
    max-width: 1000px;
    perspective: 1000px;
}

.services-connectors-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.services-orbit-core {
    position: absolute;
    top: 350px;
    left: 500px;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(14, 165, 233, 0.1);
    z-index: 5;
    transition: var(--transition-smooth);
}

.services-orbit-core:hover {
    border-color: var(--color-petrol);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.25);
    transform: translate(-50%, -50%) scale(1.05);
}

.services-orbit-core .core-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.services-orbit-core .core-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.services-orbit-core .core-sub {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* Service Card Positioning in Orbit on Desktop */
.services-orbit-container .service-card {
    position: absolute;
    width: 290px;
    padding: 28px 24px;
    border-radius: 22px;
    backdrop-filter: blur(15px);
    z-index: 3;
    transform: translate(-50%, -50%);
    transition: transform 0.18s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform-style: preserve-3d;
}

.services-orbit-container .service-card:hover {
    z-index: 10;
    border-color: var(--color-border-hover);
    box-shadow: 0 25px 50px rgba(14, 165, 233, 0.12);
}

.s-card-pos-1 { left: 50%; top: 100px; }
.s-card-pos-2 { left: 84%; top: 190px; }
.s-card-pos-3 { left: 84%; top: 510px; }
.s-card-pos-4 { left: 67%; top: 600px; }
.s-card-pos-5 { left: 33%; top: 600px; }
.s-card-pos-6 { left: 16%; top: 510px; }
.s-card-pos-7 { left: 16%; top: 190px; }

.s-card-pos-1:hover { transform: translate(-50%, -50%) scale(1.05) translateY(-5px); }
.s-card-pos-2:hover { transform: translate(-50%, -50%) scale(1.05) translateY(-5px); }
.s-card-pos-3:hover { transform: translate(-50%, -50%) scale(1.05) translateY(5px); }
.s-card-pos-4:hover { transform: translate(-50%, -50%) scale(1.05) translateY(5px); }
.s-card-pos-5:hover { transform: translate(-50%, -50%) scale(1.05) translateY(5px); }
.s-card-pos-6:hover { transform: translate(-50%, -50%) scale(1.05) translateY(5px); }
.s-card-pos-7:hover { transform: translate(-50%, -50%) scale(1.05) translateY(-5px); }

.services-orbit-container .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--color-petrol);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: var(--transition-fast);
}

.services-orbit-container .service-card:hover .service-icon {
    background: var(--color-petrol);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.services-orbit-container .service-icon .svg-icon {
    width: 24px;
    height: 24px;
}

.services-orbit-container .service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.services-orbit-container .service-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 18px;
}

.services-orbit-container .service-link-more {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.services-orbit-container .service-card:hover .service-link-more {
    color: #ffffff;
    gap: 10px;
}

/* ==========================================================================
   section 3: why us (cohesive orbit node layout)
   ========================================================================== */

.why-us-section {
    position: relative;
    overflow: hidden;
}

.why-us-orbit-wrapper {
    width: 100%;
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.why-us-orbit-container {
    position: relative;
    height: 520px;
    width: 100%;
    max-width: 820px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.orbit-connectors-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.conn-line {
    stroke-dasharray: 6, 6;
    animation: conn-dash 30s linear infinite;
    transition: var(--transition-medium);
}

.conn-line.active-glow {
    stroke: var(--color-gold);
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 8px var(--color-gold-glow));
    stroke-dasharray: none;
    animation: none;
}

.conn-line.active-glow-petrol {
    stroke: var(--color-petrol);
    stroke-width: 2.5px;
    filter: drop-shadow(0 0 8px var(--color-petrol-glow));
    stroke-dasharray: none;
    animation: none;
}

.orbit-core {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-bg-dark) 0%, var(--color-bg-deep) 100%);
    border: 2px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(14, 165, 233, 0.1);
    z-index: 5;
    transition: var(--transition-smooth);
}

.orbit-core:hover {
    border-color: var(--color-petrol);
    box-shadow: 0 15px 45px rgba(14, 165, 233, 0.25);
    transform: scale(1.05);
}

.core-glow-pulsar {
    position: absolute;
    width: 105%;
    height: 105%;
    border-radius: 50%;
    border: 1px solid var(--color-petrol);
    opacity: 0.3;
    animation: radar-pulse 3s infinite ease-out;
}

.core-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.core-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-petrol);
    letter-spacing: 1px;
}

.core-title {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.3;
}

.core-mini-logo {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.orbit-node {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(8, 14, 28, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text-primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    z-index: 3;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.orbit-node:hover {
    border-color: var(--color-gold);
    background-color: rgba(14, 25, 51, 0.9);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.2);
    transform: scale(1.06) translateY(-4px);
}

.node-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

.orbit-node:hover .node-icon {
    background-color: var(--color-petrol);
}

.node-pos-1 { top: 0%; left: 50%; transform: translateX(-50%); animation: float-node 6s infinite ease-in-out; }
.node-pos-2 { top: 25%; left: 85%; transform: translate(-50%, -50%); animation: float-node 7s infinite ease-in-out 0.8s; }
.node-pos-3 { top: 75%; left: 85%; transform: translate(-50%, -50%); animation: float-node 8s infinite ease-in-out 1.5s; }
.node-pos-4 { top: 100%; left: 50%; transform: translateX(-50%); animation: float-node 6.5s infinite ease-in-out 2s; }
.node-pos-5 { top: 75%; left: 15%; transform: translate(-50%, -50%); animation: float-node 7.5s infinite ease-in-out 2.8s; }
.node-pos-6 { top: 25%; left: 15%; transform: translate(-50%, -50%); animation: float-node 6s infinite ease-in-out 3.2s; }

.orbit-hover-card {
    position: absolute;
    bottom: -60px;
    width: 90%;
    max-width: 420px;
    background: rgba(6, 10, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
    z-index: 10;
    text-align: center;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.orbit-hover-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-gold);
}

.orbit-hover-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   section 4: moving journey (curved route path tracking)
   ========================================================================== */

.journey-section {
    position: relative;
}

.journey-map-wrapper {
    position: relative;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    height: 1250px; /* Explicit height ensures relative steps container doesn't collapse to 0 height */
}

.svg-road-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
    max-width: 600px;
    pointer-events: none;
    z-index: 1;
}

.journey-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

#journey-road-fill {
    transition: stroke-dashoffset 0.1s ease;
}

#timeline-truck-icon {
    transition: transform 0.1s ease;
}

.journey-road-steps {
    position: relative;
    width: 100%;
    height: 100%;
}

.road-step-item {
    position: absolute;
    width: 42%;
    z-index: 3;
    display: flex;
    align-items: center;
}

.road-step-item:nth-child(odd) {
    right: 2%;
    justify-content: flex-start;
}

.road-step-item:nth-child(even) {
    left: 2%;
    justify-content: flex-end;
}

.step-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    font-family: 'Cairo', sans-serif;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    z-index: 5;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.road-step-item:nth-child(odd) .step-badge {
    left: -48px;
}

.road-step-item:nth-child(even) .step-badge {
    right: -48px;
}

.step-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 30px;
    backdrop-filter: blur(12px);
    width: 100%;
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.step-card-wrap {
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.road-step-item:hover .step-card {
    border-color: var(--color-border-hover);
    background-color: var(--color-bg-card-hover);
}

.road-step-item:nth-child(odd):hover .step-card-wrap {
    transform: translateX(-6px);
}

.road-step-item:nth-child(even):hover .step-card-wrap {
    transform: translateX(6px);
}

@media (min-width: 992px) {
    #journey-step-1 { right: -3%; }
    #journey-step-2 { left: 7.5%; }
    #journey-step-3 { right: 10%; }
    #journey-step-4 { left: 2.5%; }
    #journey-step-5 { right: -4%; }
    #journey-step-6 { left: 6.5%; }
}

.step-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.step-interactive-hover-text {
    display: inline-block;
    margin-top: 15px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-petrol);
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.road-step-item:hover .step-interactive-hover-text {
    color: var(--color-gold);
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.05);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

.step-interactive-hover-text.active-hover {
    color: var(--color-gold);
    border-color: var(--color-gold);
    background: rgba(245, 158, 11, 0.1);
}

.road-step-item.active-node .step-badge {
    border-color: var(--color-petrol);
    color: #ffffff;
    background-color: var(--color-petrol);
    box-shadow: 0 0 18px var(--color-petrol-glow);
    transform: scale(1.22);
}

.road-step-item.active-node .step-card {
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.road-step-item.active-node .step-card-wrap {
    transform: scale(1.02);
}

.road-step-item.active-node:nth-child(odd):hover .step-card-wrap {
    transform: scale(1.04) translateX(-8px);
}

.road-step-item.active-node:nth-child(even):hover .step-card-wrap {
    transform: scale(1.04) translateX(8px);
}

/* ==========================================================================
   section 5: jeddah coverage preview (dark dashboard map)
   ========================================================================== */

.coverage-section {
    position: relative;
}

.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.direction-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 24px;
}

.chip-item {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.chip-item:hover, .chip-item.active {
    background: var(--color-petrol-glow);
    border-color: var(--color-petrol);
    color: var(--color-text-primary);
}

.neighborhood-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 580px;
}

.neighbor-chip {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.neighbor-chip:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: rgba(245, 158, 11, 0.25);
    color: var(--color-gold);
    transform: translateY(-1px);
}

.neighbor-chip.active-highlight {
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.25);
    color: var(--color-petrol);
    transform: scale(1.03);
}

.neighbor-chip.tag-all-hub {
    background: rgba(245, 158, 11, 0.15);
    border-color: var(--color-gold);
    color: var(--color-gold);
    font-weight: 600;
}

.neighbor-chip.tag-all-hub:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
}

/* Area SEO links styling */
.area-seo-links-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.area-seo-link {
    font-family: var(--font-headings);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold);
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 8px 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.area-seo-link:hover {
    background: var(--color-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.2);
    transform: translateY(-2px);
}

.map-cta-tip {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 30px;
}

.map-cta-tip a {
    color: var(--color-gold);
    font-weight: 700;
}

.coverage-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.abstract-map {
    position: relative;
    width: 100%;
    max-width: 440px;
    height: 380px;
    background: rgba(10, 18, 36, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.map-grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 30px 30px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
}

.map-glowing-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border: 1px dashed rgba(14, 165, 233, 0.08);
    border-radius: 50%;
}

.map-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    transform: translate(50%, -50%);
    z-index: 10;
}

.map-hotspot::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(8, 14, 28, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.map-hotspot:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.ping-dot {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-petrol);
    transition: var(--transition-fast);
}

.ping-wave {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--color-petrol);
    animation: map-ping-anim 2s infinite ease-out;
}

.map-hotspot:hover .ping-dot, .map-hotspot.active .ping-dot {
    background-color: var(--color-gold);
    box-shadow: 0 0 10px var(--color-gold);
}

.map-hotspot:hover .ping-wave, .map-hotspot.active .ping-wave {
    border-color: var(--color-gold);
}

.hotspot-label-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(6, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.45);
    z-index: 12;
    transition: var(--transition-smooth);
}

.hotspot-label-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--color-gold);
}

.hotspot-label-card p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* ==========================================================================
   section 6: work gallery blueprint preview
   ========================================================================== */

.gallery-section {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.gallery-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 26px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    aspect-ratio: 1.25;
    display: block;
}

.gallery-card:hover {
    border-color: var(--color-petrol);
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.18);
}

.gallery-image-frame {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

/* Caption Overlay with Glassmorphism */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(to top, rgba(5, 8, 18, 0.9) 0%, rgba(5, 8, 18, 0.4) 70%, rgba(5, 8, 18, 0) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    font-family: var(--font-headings);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: right;
    transition: all 0.3s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-caption {
    color: var(--color-gold);
    background: linear-gradient(to top, rgba(5, 8, 18, 0.95) 0%, rgba(5, 8, 18, 0.6) 80%, rgba(5, 8, 18, 0) 100%);
    padding-bottom: 20px;
}

/* Light Sweep effect */
.gallery-sweep {
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: none;
    z-index: 1;
    pointer-events: none;
}

.gallery-card:hover .gallery-sweep {
    left: 125%;
    transition: left 0.8s ease-in-out;
}

/* ==========================================================================
   section 7: customer reviews (slider pass)
   ========================================================================== */

.reviews-section {
    position: relative;
}

.reviews-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 5px;
}

.reviews-slider-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card {
    min-width: 100%;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 26px;
    padding: 45px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: right;
    transform-style: preserve-3d;
}

.rating-stars {
    color: var(--color-gold);
    font-size: 1.25rem;
    letter-spacing: 2px;
    transform: translateZ(15px);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-primary);
    transform: translateZ(10px);
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    transform: translateZ(15px);
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--color-petrol);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
}

.reviewer-loc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Active card highlighting triggers */
.review-card.active-review {
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 45px rgba(14, 165, 233, 0.15);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-secondary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--color-petrol);
    color: var(--color-text-primary);
    background-color: rgba(14, 165, 233, 0.08);
    transform: scale(1.05);
}

/* ==========================================================================
   section 7.5: seo content block
   ========================================================================== */

.seo-content-section {
    position: relative;
}

.seo-content-glass {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.02) 100%), rgba(10, 18, 36, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    transition: var(--transition-smooth);
}

.seo-content-glass:hover {
    border-color: rgba(14, 165, 233, 0.15);
    box-shadow: 0 25px 55px rgba(14, 165, 233, 0.05);
}

.seo-content-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 12px;
}

.seo-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
}

.seo-content-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.seo-content-body p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text-secondary);
    text-align: justify;
}

.seo-content-body a {
    color: var(--color-gold);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: var(--transition-fast);
    padding: 0 2px;
}

.seo-content-body a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-petrol);
    transition: width 0.3s ease;
}

.seo-content-body a:hover {
    color: var(--color-petrol);
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
}

.seo-content-body a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .seo-content-glass {
        padding: 30px 20px;
    }
    
    .seo-content-title {
        font-size: 1.45rem;
    }
}

/* ==========================================================================
   section 8: faq accordion
   ========================================================================== */

.faq-section {
    position: relative;
}

.faq-accordion-wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 0;
}

.faq-icon-arrow {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-petrol);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    background: rgba(6, 10, 20, 0.2);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
    padding: 0 30px 24px;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Open Accordion item style triggers */
.faq-item.open {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.06);
}

.faq-item.open .faq-icon-arrow {
    transform: rotate(45deg);
    color: var(--color-gold);
}

.faq-item.open .faq-header {
    background: rgba(255, 255, 255, 0.01);
}

/* ==========================================================================
   section 9: quick quote strip calculator
   ========================================================================== */

.quote-strip-section {
    position: relative;
    perspective: 1000px;
}

.quote-box-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 60%), rgba(10, 18, 36, 0.45);
    border: 1px solid var(--color-border);
    border-radius: 32px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    transform-style: preserve-3d;
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.quote-glow-bg {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.quote-layout-inner {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.quote-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.quote-desc {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.quote-interactive-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.form-label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.quote-tabs {
    display: flex;
    gap: 12px;
}

.quote-tabs .tab-btn {
    flex: 1;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quote-tabs .tab-btn:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.quote-tabs .tab-btn.active {
    background: var(--color-petrol-glow);
    border-color: var(--color-petrol);
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.1);
}

/* Checkbox styling */
.quote-checkboxes-row {
    display: flex;
    gap: 24px;
    margin-top: 6px;
}

.check-label-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    user-select: none;
    transition: var(--transition-fast);
}

.check-label-item:hover {
    color: var(--color-text-primary);
}

.form-check-input {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    background: rgba(6, 10, 20, 0.6);
    cursor: pointer;
    position: relative;
    transition: var(--transition-fast);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-check-input:hover {
    border-color: var(--color-petrol);
    background: rgba(14, 165, 233, 0.04);
}

.form-check-input:checked {
    background: var(--color-petrol-glow);
    border-color: var(--color-petrol);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.25);
}

.form-check-input:checked::before {
    content: '✓';
    font-size: 0.82rem;
    color: var(--color-petrol);
    font-weight: 900;
}

/* inputs styling */
.form-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input-text {
    width: 100%;
    padding: 14px 20px;
    background: rgba(6, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--color-text-primary);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    text-align: right;
    transition: var(--transition-fast);
}

.form-input-text:focus {
    outline: none;
    border-color: var(--color-petrol);
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.15);
    background: rgba(6, 10, 20, 0.85);
}

.form-input-text::placeholder {
    color: var(--color-text-muted);
}

/* ==========================================================================
   section 10: final cta (luxury dashboard feel)
   ========================================================================== */

.cta-section {
    position: relative;
    perspective: 1000px;
}

.cta-box-glass {
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.12) 0%, transparent 60%), rgba(10, 18, 36, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    padding: 85px 40px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    transition: transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cta-glow-effect {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    pointer-events: none;
}

.cta-logo-watermark {
    position: absolute;
    left: -5%;
    bottom: -15%;
    width: 320px;
    height: 320px;
    color: var(--color-petrol);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    transform: translateZ(20px);
}

.glow-tag {
    background: rgba(245, 158, 11, 0.06) !important;
    border-color: rgba(245, 158, 11, 0.2) !important;
    color: var(--color-gold) !important;
    font-weight: 700;
}

.cta-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-main {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ==========================================================================
   section 11: footer
   ========================================================================== */

#main-footer {
    background-color: var(--color-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.footer-logo-watermark {
    position: absolute;
    left: -5%;
    top: 10%;
    width: 500px;
    height: 500px;
    color: var(--color-petrol);
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-top: 90px;
    padding-bottom: 70px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-brand .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 20px;
}

.footer-logo svg {
    color: var(--color-petrol);
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
}

.social-icon:hover {
    color: var(--color-petrol);
    border-color: var(--color-petrol);
    background: rgba(14, 165, 233, 0.05);
    transform: translateY(-3px);
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-petrol);
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: var(--color-text-primary);
    padding-right: 6px;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.footer-contact-info svg {
    color: var(--color-petrol);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ==========================================================================
   mobile sticky bottom cta bar
   ========================================================================== */

.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: rgba(6, 10, 20, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    grid-template-columns: 1fr 1fr;
    z-index: 1001;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
}

.sticky-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    color: #ffffff;
    transition: var(--transition-fast);
}

.cta-call {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text-primary);
}

.cta-call:hover {
    background: rgba(255, 255, 255, 0.05);
}

.cta-wa {
    background: var(--color-whatsapp);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-wa:hover {
    background: #0fa372;
}

#hero-truck-rider {
    offset-path: path("M 250, 45 A 205,205 0 1,1 249.9, 45");
    offset-rotate: auto;
    animation: orbit-truck 25s linear infinite;
}

@keyframes orbit-truck {
    0% {
        offset-distance: 0%;
    }
    100% {
        offset-distance: 100%;
    }
}

/* ==========================================================================
   animation keyframes
   ========================================================================== */

@keyframes orbit-rotate-cw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes orbit-rotate-ccw {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.35;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.04);
    }
}

@keyframes slow-hover-3d {
    0%, 100% {
        transform: translate(250px, 250px) translateY(0) rotateX(8deg) rotateY(-8deg);
    }
    50% {
        transform: translate(250px, 250px) translateY(-14px) rotateX(15deg) rotateY(10deg);
    }
}

@keyframes float-y {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes float-node {
    0%, 100% {
        margin-top: 0px;
    }
    50% {
        margin-top: -8px;
    }
}

@keyframes radar-pulse {
    0% {
        transform: scale(0.75);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@keyframes map-ping-anim {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

@keyframes conn-dash {
    to {
        stroke-dashoffset: -300;
    }
}

@keyframes cta-pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(16, 185, 129, 0.65);
    }
}

@keyframes pill-pulse-glow {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
        border-color: rgba(14, 165, 233, 0.25);
        box-shadow: 0 4px 20px rgba(14, 165, 233, 0.08);
    }
}

@keyframes scroll-wheel-drag {
    0% {
        top: 4px;
        opacity: 1;
    }
    50% {
        top: 14px;
        opacity: 0.4;
    }
    100% {
        top: 4px;
        opacity: 1;
    }
}

/* Scroll reveal triggers base styles */
.reveal-init {
    opacity: 0;
    transition: transform 1.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.1s ease;
    will-change: transform, opacity;
}

/* Default reveals (cards trigger up) */
section:not(.hero-section) .reveal-init:not(.why-us-orbit-wrapper):not(.journey-map-wrapper) {
    transform: translateY(40px);
}

/* Staggered reveal delays for child elements within sections */
.section-header .reveal-init:nth-child(1) { transition-delay: 0.05s; }
.section-header .reveal-init:nth-child(2) { transition-delay: 0.12s; }
.section-header .reveal-init:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .reveal-init:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid .reveal-init:nth-child(2) { transition-delay: 0.12s; }
.gallery-grid .reveal-init:nth-child(3) { transition-delay: 0.2s; }
.gallery-grid .reveal-init:nth-child(4) { transition-delay: 0.28s; }
.gallery-grid .reveal-init:nth-child(5) { transition-delay: 0.35s; }
.gallery-grid .reveal-init:nth-child(6) { transition-delay: 0.42s; }
.faq-accordion-wrapper .reveal-init:nth-child(1) { transition-delay: 0.05s; }
.faq-accordion-wrapper .reveal-init:nth-child(2) { transition-delay: 0.1s; }
.faq-accordion-wrapper .reveal-init:nth-child(3) { transition-delay: 0.16s; }
.faq-accordion-wrapper .reveal-init:nth-child(4) { transition-delay: 0.22s; }
.faq-accordion-wrapper .reveal-init:nth-child(5) { transition-delay: 0.28s; }

.reveal-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

/* Specificity override to ensure reveal-active wins over reveal-init without using !important */
.reveal-init.reveal-active,
.hero-section .reveal-init.reveal-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
}

/* Disable CSS transitions on elements animated dynamically by JS scroll/mouse loops after page load */
.parallax-ready .hero-content,
.parallax-ready .hero-visual-wrapper,
.parallax-ready .hero-bottom-group {
    transition: none !important;
}

/* ==========================================================================
   media queries & responsiveness
   ========================================================================== */

/* Large Screens & Desktop scaling */
@media (max-width: 1200px) {
    .hero-container {
        gap: 20px;
    }
}

/* Tablet & Intermediate Viewports */
@media (max-width: 991px) {
    .nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "visual"
            "content"
            "bottom";
        padding-top: 20px;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        align-items: center;
        padding: 30px;
        border-radius: 24px;
        width: 100%;
        max-width: 650px;
        margin: 0 auto;
        border-right-width: 4px;
        border-right-style: solid;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .hero-ctas {
        justify-items: center;
        width: 100%;
        max-width: 450px;
        margin: 0 auto 20px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-visual-wrapper {
        height: 320px !important;
        max-width: 320px !important;
        margin: 0 auto;
    }

    .box-1 { top: 12%; right: -2%; }
    .box-2 { bottom: 20%; left: -8%; }
    .box-3 { bottom: 6%; right: -1%; }

    .hero-stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        max-width: 450px;
        gap: 12px;
        margin: 20px auto 30px;
    }

    .stat-card {
        padding: 12px 20px;
        flex: 1 1 calc(50% - 12px);
        min-width: 130px;
    }

    .stat-num {
        font-size: 1.5rem;
    }

    /* Coverage: fix mobile order so content is above visual */
    .coverage-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        width: 100% !important;
    }
    .coverage-visual {
        order: 2 !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .coverage-content {
        order: 1 !important;
        width: 100% !important;
    }
    .abstract-map {
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    .neighbor-chip {
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-orbit-wrapper {
        margin-top: 30px;
    }

    .services-orbit-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .services-connectors-svg {
        display: none !important;
    }

    .services-orbit-core {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 450px;
        height: auto;
        border-radius: 20px;
        padding: 24px;
        margin: 0 auto 20px;
    }

    .services-orbit-core:hover {
        transform: scale(1.02);
    }

    .services-orbit-container .service-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 450px;
        margin: 0 auto;
    }

    .services-orbit-container .service-card:hover {
        transform: translateY(-4px) !important;
    }

    .why-us-orbit-wrapper {
        margin-top: 30px;
    }

    .why-us-orbit-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 0 10px;
    }

    .orbit-connectors-svg, .core-glow-pulsar {
        display: none !important;
    }

    .orbit-core {
        position: relative;
        width: 100%;
        max-width: 450px;
        height: auto;
        border-radius: 20px;
        padding: 24px;
        margin: 0 auto 20px;
    }

    .orbit-node {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        bottom: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 450px;
        animation: none !important;
        border-radius: 16px;
        padding: 16px;
        justify-content: flex-start;
        margin: 0 auto;
    }

    .orbit-hover-card {
        display: none !important;
    }

    .journey-map-wrapper {
        height: auto !important;
        min-height: auto;
        overflow: hidden !important;
    }

    .svg-road-container {
        right: 15px;
        transform: none;
        max-width: 50px;
        overflow: hidden !important;
    }

    .road-step-item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        padding-right: 60px;
        margin-bottom: 40px;
        justify-content: flex-start !important;
    }

    .step-badge {
        right: 26px !important;
        left: auto !important;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .road-step-item:nth-child(odd):hover .step-card-wrap,
    .road-step-item:nth-child(even):hover .step-card-wrap {
        transform: translateY(-5px);
    }
    
    .form-inputs-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    body {
        padding-bottom: 64px;
    }

    .mobile-sticky-bar {
        display: grid;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 24px 20px;
        border-radius: 20px;
        border-right-width: 3px;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: clamp(1.7rem, 6vw, 2.4rem);
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 22px;
    }

    .hero-ctas {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
        width: 100%;
    }

    .btn-premium {
        width: 100%;
        padding: 13px 24px;
        font-size: 0.92rem;
    }

    .hero-visual-wrapper {
        height: 280px !important;
        max-width: 280px !important;
    }

    .hero-badges {
        gap: 8px !important;
    }

    .badge {
        font-size: 0.72rem;
        padding: 5px 10px;
    }

    .cta-box-glass {
        padding: 55px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 30px 24px;
    }

    .reviews-slider-container {
        max-width: 100%;
    }

    .quote-box-wrapper {
        padding: 30px 20px;
    }

    .quote-tabs {
        flex-direction: column;
        gap: 8px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .footer-col-brand {
        align-items: center;
        text-align: center;
    }

    .footer-col-title {
        margin-bottom: 16px;
    }

    .footer-col-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-links, .footer-contact-info {
        text-align: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
    
    .header-actions .btn-phone, .header-actions .btn-whatsapp {
        display: none !important;
    }

    .floating-box {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .box-1 { top: 15%; right: -2%; }
    .box-2 { bottom: 18%; left: -6%; }
    .box-3 { bottom: 6%; right: -1%; }
}

/* Premium Cinematic CTA Button Redesign */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    z-index: 10;
    will-change: transform;
}

.btn-premium:active {
    transform: scale(0.96) translateY(-1px);
    transition: transform 0.1s ease;
}

/* Pulsating indicator status dot */
.pulse-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.pulse-indicator::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260%;
    height: 260%;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    animation: btn-pulse-wave 2s infinite ease-out;
}

@keyframes btn-pulse-wave {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* 1. WhatsApp Button Theme (Emerald Pulse) */
.btn-whatsapp-premium {
    background: #10b981;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    animation: cta-whatsapp-pulse-glow 2.5s infinite ease-in-out;
}

.btn-whatsapp-premium .status-online {
    background-color: #ffffff;
    color: #ffffff;
}

.btn-whatsapp-premium:hover {
    background: #0fa372;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6), 0 0 18px rgba(16, 185, 129, 0.3);
    transform: translateY(-4px) scale(1.02);
}

@keyframes cta-whatsapp-pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
    }
    50% {
        box-shadow: 0 8px 35px rgba(16, 185, 129, 0.65), 0 0 15px rgba(16, 185, 129, 0.3);
    }
}

/* 2. Call Button Theme (Gold Bevel Outline) */
.btn-call-premium {
    background: rgba(7, 11, 21, 0.6);
    border: 2px solid var(--color-gold);
    color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.08);
}

.btn-call-premium .status-calling {
    background-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-call-premium:hover {
    background: rgba(245, 158, 11, 0.08);
    border-color: #fbbf24;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.28), 0 0 18px rgba(245, 158, 11, 0.15);
    transform: translateY(-4px) scale(1.02);
    color: #ffffff;
}

.btn-call-premium:hover .status-calling {
    background-color: #ffffff;
    color: #ffffff;
}

/* 3. Quote Button Theme (Dark Glass with Gold Outline) */
.btn-quote-premium {
    background: rgba(255, 255, 255, 0.02);
    border: 1.5px dashed var(--color-gold);
    color: var(--color-text-primary);
    box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.02);
}

.btn-quote-premium .status-quote {
    background-color: var(--color-petrol);
    color: var(--color-petrol);
}

.btn-quote-premium:hover {
    background: rgba(255, 255, 255, 0.05);
    border-style: solid;
    border-color: #fbbf24;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.15), inset 0 0 15px rgba(255, 255, 255, 0.05);
    transform: translateY(-4px) scale(1.02);
}

/* Icon hover animations */
.btn-premium:hover .btn-icon-phone {
    animation: phone-shake-call 0.5s ease infinite alternate;
}

.btn-premium:hover .btn-icon-wa {
    animation: wa-pulse-glow-btn 0.8s ease infinite alternate;
}

@keyframes phone-shake-call {
    0% { transform: rotate(0deg); }
    33% { transform: rotate(-15deg); }
    66% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

@keyframes wa-pulse-glow-btn {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px var(--color-whatsapp)); }
    100% { transform: scale(1.18); filter: drop-shadow(0 0 10px var(--color-whatsapp)); }
}

/* Laser-Sweep reflective sheen shine effect across premium buttons */
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-25deg);
    transition: none;
}

.btn-premium:hover::before {
    left: 150%;
    transition: left 0.9s ease-in-out;
}

/* ==========================================================================
   Navigation Dropdown & Mobile Sticky Bottom Bar (Rebrand additions)
   ========================================================================== */

/* Dropdown styles for navigation */
.nav-menu ul li {
    position: relative;
}

/* Arrow inside dropdown trigger */
.nav-menu .arrow {
    font-size: 0.6rem;
    margin-right: 4px;
    transition: transform 0.25s ease;
    display: inline-block;
    vertical-align: middle;
}

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

/* Dropdown Menu block */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    width: 230px;
    background: rgba(8, 12, 24, 0.96);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--color-gold);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
    z-index: 120;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.55), 0 0 15px rgba(14, 165, 233, 0.12);
    display: block !important;
}

/* Hover reveal */
.nav-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    display: block !important;
}

.dropdown-menu li a {
    display: block;
    padding: 8px 18px;
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    transition: all 0.2s ease;
    text-align: right;
    border: none !important;
}

.dropdown-menu li a::after {
    display: none !important; /* disable underline animation on sub-links */
}

.dropdown-menu li a:hover {
    color: var(--color-gold) !important;
    background: rgba(14, 165, 233, 0.08);
    padding-right: 22px;
}

/* Drawer submenus for mobile */
.drawer-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    padding-right: 20px;
    margin-top: 0;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.3s;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer-dropdown.open-submenu .drawer-submenu {
    max-height: 400px;
    margin-top: 12px;
    margin-bottom: 6px;
}

.drawer-sublink {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: block;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.drawer-sublink:hover {
    color: var(--color-gold);
}

.drawer-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-dropdown-toggle .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.drawer-dropdown.open-submenu .drawer-dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   Trust Bar / Quick Benefits Strip
   ========================================================================== */
.trust-bar-strip {
    position: relative;
    z-index: 10;
    background: rgba(5, 8, 22, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.trust-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
}

.trust-benefit-item:hover {
    background: rgba(14, 165, 233, 0.08);
    border-color: rgba(14, 165, 233, 0.3);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
    transform: translateY(-2px);
}

.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.trust-benefit-item:hover .benefit-icon-wrapper {
    background: rgba(14, 165, 233, 0.2);
    color: var(--color-petrol);
}

.benefit-icon {
    width: 20px;
    height: 20px;
}

.benefit-text {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

@media (max-width: 991px) {
    .trust-bar-container {
        justify-content: center;
        gap: 12px;
    }
    .trust-benefit-item {
        flex: 1 1 calc(50% - 12px);
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .trust-benefit-item {
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

.inline-assembly-link {
    color: var(--color-gold);
    text-decoration: underline;
    font-weight: 600;
    margin-right: 5px;
    display: inline-block;
    transition: color 0.2s ease;
}

.inline-assembly-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   Subpage-specific styling for Services & Areas (Stage 3 Rebrand)
   ========================================================================== */

/* Breadcrumbs Styling */
.breadcrumb-strip {
    background-color: rgba(6, 10, 20, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 12px 0;
    margin-top: var(--header-height);
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.breadcrumb-item a {
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: var(--color-petrol);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "‹";
    margin-left: 8px;
    color: var(--color-text-muted);
}

.breadcrumb-item.active {
    color: var(--color-gold);
    font-weight: 500;
}

/* Service & Area Hero Section */
.service-hero-section, .area-hero-section {
    padding-top: 60px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.service-hero-section .hero-title, .area-hero-section .hero-title {
    font-size: 2.8rem;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-text-secondary) 50%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Glass Cards */
.service-glass-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    height: 100%;
}

.service-glass-card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
}

.service-glass-card.highlight-gold {
    border-color: rgba(245, 158, 11, 0.25);
    background: rgba(10, 18, 36, 0.6);
}

.service-glass-card.highlight-gold:hover {
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.15);
}

.card-glow-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-text-primary);
    border-bottom: 2px solid rgba(14, 165, 233, 0.15);
    padding-bottom: 8px;
}

.service-glass-card.highlight-gold .card-glow-title {
    border-bottom-color: rgba(245, 158, 11, 0.15);
}

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

/* Checklists & Grids */
.benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-checklist li {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checklist-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-petrol);
    margin-top: 9px;
    box-shadow: 0 0 8px var(--color-petrol);
}

.benefits-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.benefits-check-grid li {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-mark {
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Stepper Timeline for Subpages */
.service-steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    position: relative;
}

.service-steps-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: 23px;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-petrol), var(--color-gold));
    opacity: 0.3;
}

.service-steps-wrapper .road-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-steps-wrapper .step-badge {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-bg-dark);
    border: 2px solid var(--color-petrol);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    box-shadow: 0 0 15px var(--color-petrol-glow);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.service-steps-wrapper .road-step-item:nth-child(even) .step-badge {
    border-color: var(--color-gold);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

.service-steps-wrapper .road-step-item:hover .step-badge {
    transform: scale(1.15);
    background-color: var(--color-petrol);
    color: #fff;
    box-shadow: 0 0 25px var(--color-petrol);
}

.service-steps-wrapper .road-step-item:nth-child(even):hover .step-badge {
    background-color: var(--color-gold);
    box-shadow: 0 0 25px var(--color-gold);
}

.step-content {
    background: rgba(10, 18, 36, 0.3);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 16px 20px;
    border-radius: 16px;
    width: 100%;
}

.step-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

/* Area Chips */
.area-chip {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.area-chip:hover {
    border-color: var(--color-petrol);
    color: var(--color-text-primary);
    background: rgba(14, 165, 233, 0.08);
    transform: translateY(-2px);
}

/* Coverage / Callouts */
.coverage-callout {
    background: radial-gradient(circle at center, rgba(14,165,233,0.08) 0%, rgba(3,6,15,0.4) 100%);
    border-color: rgba(14, 165, 233, 0.25);
}

.related-services-wrapper .btn {
    margin: 4px;
}

.step-num-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid var(--color-petrol);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto;
    box-shadow: 0 0 10px var(--color-petrol-glow);
}

/* Row Utilities for subpage structural grids */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding: 12px;
}

.col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding: 12px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 12px;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 12px;
}

.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0 !important; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.text-center { text-align: center; }

@media (max-width: 991px) {
    .col-lg-7, .col-lg-5, .col-md-6, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .service-steps-wrapper::before {
        right: 18px;
    }
    .service-steps-wrapper .step-badge {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
}

/* Custom Overrides to fix subpage timeline overlap on desktop */
@media (min-width: 992px) {
    .service-steps-wrapper .road-step-item {
        position: relative !important;
        width: 100% !important;
        left: auto !important;
        right: auto !important;
        padding-right: 76px !important;
        padding-left: 0 !important;
        margin-bottom: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        transform: none !important;
    }

    .service-steps-wrapper .step-badge {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 48px !important;
        height: 48px !important;
        margin: 0 !important;
    }

    .service-steps-wrapper .step-content {
        background: rgba(10, 18, 36, 0.4) !important;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        padding: 20px 24px !important;
        border-radius: 16px !important;
        width: 100% !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
        backdrop-filter: blur(10px) !important;
    }

    .service-steps-wrapper .road-step-item:hover .step-badge {
        transform: translateY(-50%) scale(1.15) !important;
    }
}

/* Grid layout ordering and sticky styles for subpage timeline */
.sticky-feature-card {
    height: fit-content;
}

@media (max-width: 991px) {
    .service-process-grid .feature-column {
        margin-bottom: 32px;
    }
}

@media (min-width: 992px) {
    .service-process-grid .timeline-column {
        order: 1 !important;
    }
    .service-process-grid .feature-column {
        order: 2 !important;
    }
    .sticky-feature-card {
        position: sticky !important;
        top: 110px !important;
    }
}
