/* BOXMAR Desktop — Hero Section (Title, Map, Glows, Visual) */

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: var(--space-4xl);
}

/* Desert dune wave at bottom of hero */
.hero-dune-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.hero-dune-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Camel watermark background */
.hero-camel-watermark {
    position: absolute;
    bottom: -40px;
    right: -60px;
    width: 600px;
    height: 450px;
    color: rgba(200, 146, 42, 0.04);
    pointer-events: none;
    z-index: 1;
    transform: scaleX(-1);
    animation: watermark-drift 20s ease-in-out infinite alternate;
}

.hero-camel-watermark svg {
    width: 100%;
    height: 100%;
}

@keyframes watermark-drift {
    0% {
        transform: scaleX(-1) translateX(0px);
        opacity: 0.8;
    }

    100% {
        transform: scaleX(-1) translateX(20px);
        opacity: 1;
    }
}


/* ============================================
   HERO WORLD MAP
   ============================================ */
.hero-world-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
}

/* Continent fills */
.map-continent {
    fill: rgba(58, 135, 200, 0.16);
    stroke: rgba(58, 135, 200, 0.25);
    stroke-width: 0.6;
    stroke-linejoin: round;
}

/* Route lines */
.map-route {
    fill: none;
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-dasharray: 6 10;
    animation: map-route-dash 18s linear infinite;
}

.map-route-gold {
    stroke: rgba(200, 146, 42, 0.75);
    stroke-dasharray: 8 12;
    animation: map-route-dash 14s linear infinite;
}

.map-route-blue {
    stroke: rgba(58, 135, 200, 0.65);
    stroke-dasharray: 6 14;
    animation: map-route-dash 20s linear infinite reverse;
}

.map-route-silver {
    stroke: rgba(168, 184, 200, 0.45);
    stroke-dasharray: 4 16;
    animation: map-route-dash 24s linear infinite;
}

.map-route-silk {
    stroke: rgba(224, 176, 80, 0.85);
    stroke-width: 1.8;
    stroke-dasharray: 10 8;
    filter: drop-shadow(0 0 3px rgba(200, 146, 42, 0.6));
}

@keyframes map-route-dash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

/* City markers */
.map-city {
    cursor: default;
}

.city-pulse-ring {
    animation: city-pulse 2.5s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.city-pulse-ring-2 {
    animation: city-pulse 2.5s ease-in-out infinite 0.5s;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes city-pulse {

    0%,
    100% {
        r: 5;
        opacity: 0.3;
    }

    50% {
        r: 9;
        opacity: 0.08;
    }
}

/* City labels */
.map-city-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 600;
    fill: rgba(168, 184, 200, 0.75);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.map-city-label-hq {
    font-size: 10px;
    font-weight: 700;
    fill: rgba(224, 176, 80, 0.9);
}

/* Responsive: hide map on small screens */

/* Animated grid background */
.grid-bg {
    position: absolute;
    inset: 0;
    opacity: 0.022;
    background-image:
        linear-gradient(rgba(200, 146, 42, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 135, 200, 0.3) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: grid-scroll 30s linear infinite;
}

@keyframes grid-scroll {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(64px, 64px);
    }
}

/* Ambient glow orbs */
.hero-glow {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(200, 146, 42, 0.22) 0%,
            rgba(200, 146, 42, 0.1) 30%,
            rgba(200, 146, 42, 0.03) 55%,
            transparent 70%);
    top: -350px;
    right: -350px;
    animation: float 10s ease-in-out infinite;
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(58, 135, 200, 0.18) 0%,
            rgba(58, 135, 200, 0.07) 35%,
            rgba(58, 135, 200, 0.02) 55%,
            transparent 70%);
    bottom: -250px;
    left: -250px;
    animation: float 12s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.06);
    }
}

/* Circuit dot pattern */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 15% 40%, var(--gold-500) 1px, transparent 1px),
        radial-gradient(circle at 75% 25%, var(--blue-400) 1px, transparent 1px),
        radial-gradient(circle at 45% 70%, var(--silver-400) 1px, transparent 1px);
    background-size: 70px 70px, 90px 90px, 55px 55px;
}

/* Hero layout */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    max-width: 640px;
}

/* Hero headline */
.hero-title-creative {
    font-size: clamp(2.8rem, 6vw + 0.5rem, 5.2rem);
    line-height: 1.0;
    font-weight: 800;
    margin-bottom: var(--space-xl);
    letter-spacing: -0.045em;
    font-family: var(--font-accent);
    position: relative;
}

/* Gold glow behind the title */
.hero-title-creative::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 120%;
    transform: translateY(-50%);
    background: radial-gradient(ellipse at 30% 50%, rgba(200, 146, 42, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

.hero-title-creative .gradient-text {
    display: block;
    background: linear-gradient(135deg,
            var(--gold-100) 0%,
            var(--gold-300) 20%,
            var(--gold-400) 40%,
            var(--gold-200) 55%,
            var(--gold-400) 70%,
            var(--gold-300) 85%,
            var(--gold-100) 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-text 4s linear infinite;
    filter: drop-shadow(0 0 50px rgba(200, 146, 42, 0.4)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes shimmer-text {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 300% center;
    }
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw + 0.3rem, 2.6rem);
    color: var(--silver-100);
    margin-top: 12px;
    font-family: var(--font-accent);
    font-weight: 600;
    letter-spacing: -0.01em;
    opacity: 0.92;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.mask-glow {
    filter: drop-shadow(0 0 30px rgba(200, 146, 42, 0.25));
}

/* Hero description */
.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    margin-bottom: var(--space-2xl);
    padding: var(--space-lg) var(--space-xl);
    border-left: 4px solid var(--gold-400);
    background: linear-gradient(90deg,
            rgba(200, 146, 42, 0.12) 0%,
            rgba(200, 146, 42, 0.05) 50%,
            transparent 100%);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 0 0 1px rgba(200, 146, 42, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
}

.hero-desc::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--gold-300), var(--gold-500), var(--gold-300));
    border-radius: 2px;
    animation: border-shimmer 3s ease-in-out infinite alternate;
}

@keyframes border-shimmer {
    0% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 12px rgba(200, 146, 42, 0.6);
    }
}

.glass-light-panel {
    background: linear-gradient(90deg, rgba(200, 146, 42, 0.08) 0%, rgba(200, 146, 42, 0.02) 60%, transparent 100%);
    border-left: 3px solid var(--gold-400);
    backdrop-filter: blur(8px);
}

/* Hero CTA row */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    align-items: center;
}

.hero-buttons .btn {
    font-size: 1rem;
    padding: 16px 36px;
    letter-spacing: 0.03em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .btn svg {
    flex-shrink: 0;
    transition: transform var(--t-fast);
}

.hero-buttons .btn:hover svg {
    transform: translateX(3px);
}

/* Hero mini-stats */
.hero-stats-glass {
    display: inline-flex;
    gap: 0;
    border: 1px solid rgba(200, 146, 42, 0.35);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
    background: rgba(3, 9, 18, 0.75);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(200, 146, 42, 0.1),
        0 0 30px rgba(200, 146, 42, 0.06) inset;
}

.stat-glass-item {
    display: flex;
    flex-direction: column;
    padding: var(--space-lg) var(--space-2xl);
    transition: all var(--t-base);
    position: relative;
    align-items: center;
    text-align: center;
}

.stat-glass-item+.stat-glass-item {
    border-left: 1px solid rgba(200, 146, 42, 0.22);
}

.stat-glass-item:hover {
    background: rgba(200, 146, 42, 0.1);
}

.stat-glass-item:hover .num {
    filter: drop-shadow(0 0 12px rgba(200, 146, 42, 0.7));
    transform: scale(1.05);
}

.stat-glass-item .num {
    font-size: 2.4rem;
    font-weight: 800;
    font-family: var(--font-accent);
    line-height: 1.1;
    transition: filter var(--t-base), transform var(--t-base);
}

.stat-glass-item .label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    margin-top: 4px;
}

/* ── Hero Camel Stage ── */
.hero-visual-content {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ── 25 Years Badge ── */
.hero-years-badge {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 0 3px rgba(200, 146, 42, 0.3),
        0 0 0 6px rgba(200, 146, 42, 0.1),
        var(--shadow-gold);
    animation: badge-spin-glow 6s ease-in-out infinite alternate;
    cursor: default;
}

@keyframes badge-spin-glow {
    0% {
        box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.3), 0 0 0 6px rgba(200, 146, 42, 0.1), var(--shadow-gold);
        transform: rotate(-3deg);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.5), 0 0 0 10px rgba(200, 146, 42, 0.15), var(--glow-gold);
        transform: rotate(3deg);
    }
}

.years-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--navy-900);
}

.years-badge-num {
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
}

.years-badge-text {
    font-size: 0.48rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.3;
    margin-top: 1px;
}

.hero-camel-stage {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ── Hero Logo Display (above camel) ── */
.hero-logo-display {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-halo {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(200, 146, 42, 0.35) 0%,
            rgba(200, 146, 42, 0.15) 35%,
            rgba(200, 146, 42, 0.05) 60%,
            transparent 75%);
    animation: logo-halo-pulse 3.5s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes logo-halo-pulse {
    0% {
        transform: scale(0.85);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.25);
        opacity: 1;
    }
}

.hero-logo-img-large {
    width: 136px;
    height: 136px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 28px rgba(200, 146, 42, 0.65)) drop-shadow(0 0 56px rgba(200, 146, 42, 0.28)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    animation: logo-float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
        filter:
            drop-shadow(0 0 40px rgba(200, 146, 42, 0.8)) drop-shadow(0 0 80px rgba(200, 146, 42, 0.35)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    }
}

/* Concentric glow rings around camel */
.camel-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.camel-ring-1 {
    width: 330px;
    height: 330px;
    border: 1px solid rgba(200, 146, 42, 0.28);
    animation: spin-slow 25s linear infinite;
    box-shadow: 0 0 20px rgba(200, 146, 42, 0.06) inset;
}

.camel-ring-2 {
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(58, 135, 200, 0.18);
    animation: spin-slow 40s linear infinite reverse;
}

.camel-ring-3 {
    width: 470px;
    height: 470px;
    border: 1px solid rgba(200, 146, 42, 0.08);
    animation: spin-slow 55s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Camel core container */
.camel-core {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 38% 32%,
            rgba(200, 146, 42, 0.2) 0%,
            rgba(58, 135, 200, 0.14) 35%,
            rgba(5, 14, 28, 0.7) 65%,
            rgba(2, 8, 16, 0.85) 100%);
    border-radius: 50%;
    border: 1px solid rgba(200, 146, 42, 0.3);
    box-shadow:
        0 0 80px rgba(200, 146, 42, 0.28),
        0 0 160px rgba(58, 135, 200, 0.15),
        0 0 40px rgba(200, 146, 42, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.6);
    /* Fix #3.2: Use only transform+opacity (GPU-composited) instead of animating box-shadow */
    animation: camel-breathe 7s ease-in-out infinite alternate;
    overflow: visible;
}

@keyframes camel-breathe {
    0% {
        transform: scale(0.97);
        opacity: 0.92;
    }

    100% {
        transform: scale(1.03);
        opacity: 1;
    }
}

.camel-svg {
    width: 260px;
    height: 230px;
    filter:
        drop-shadow(0 6px 24px rgba(200, 146, 42, 0.5)) drop-shadow(0 0 14px rgba(58, 135, 200, 0.3)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    animation: camel-float 8s ease-in-out infinite;
    overflow: visible;
}

@keyframes camel-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    35% {
        transform: translateY(-12px);
    }

    70% {
        transform: translateY(-8px);
    }
}

/* Circuit lines animation — enhanced */
.circuit-lines path {
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: circuit-draw 2.5s ease-in-out infinite alternate;
}

.circuit-lines path:nth-child(1) {
    animation-delay: 0s;
}

.circuit-lines path:nth-child(2) {
    animation-delay: 0.4s;
}

.circuit-lines path:nth-child(3) {
    animation-delay: 0.8s;
}

.circuit-lines path:nth-child(4) {
    animation-delay: 0.2s;
}

.circuit-lines path:nth-child(5) {
    animation-delay: 0.6s;
}

.circuit-lines path:nth-child(6) {
    animation-delay: 1.0s;
}

.circuit-lines path:nth-child(7) {
    animation-delay: 1.2s;
}

.circuit-lines path:nth-child(8) {
    animation-delay: 1.4s;
}

@keyframes circuit-draw {
    0% {
        stroke-dashoffset: 80;
        opacity: 0.2;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
}

/* Circuit node pulse rings */
.node-pulse {
    animation: node-ring-pulse 2s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes node-ring-pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.6);
    }
}

/* Gold glow base beneath camel */
.camel-glow-base {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 24px;
    background: radial-gradient(ellipse, rgba(200, 146, 42, 0.45) 0%, transparent 70%);
    filter: blur(10px);
    animation: glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% {
        opacity: 0.5;
        width: 170px;
    }

    100% {
        opacity: 1;
        width: 220px;
    }
}

/* Camel footprint trail */
.camel-footprint-trail {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    pointer-events: none;
}

.footprint {
    font-size: 1rem;
    opacity: 0;
    animation: footprint-appear 3s ease-in-out infinite;
    filter: grayscale(1) brightness(0.6) sepia(1) hue-rotate(10deg);
}

.fp-1 {
    animation-delay: 0s;
}

.fp-2 {
    animation-delay: 0.5s;
}

.fp-3 {
    animation-delay: 1s;
}

.fp-4 {
    animation-delay: 1.5s;
}

@keyframes footprint-appear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    20% {
        opacity: 0.5;
        transform: scale(1);
    }

    60% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

/* Floating feature cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    background: rgba(3, 9, 18, 0.92);
    border: 1px solid rgba(200, 146, 42, 0.35);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(200, 146, 42, 0.1),
        0 0 20px rgba(200, 146, 42, 0.05) inset;
    white-space: nowrap;
    transition: all var(--t-base);
}

.hero-float-card:hover {
    border-color: rgba(200, 146, 42, 0.55);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(200, 146, 42, 0.2),
        0 0 30px rgba(200, 146, 42, 0.1) inset;
    transform: translateY(-3px) !important;
}

.hero-float-card.card-tl {
    top: 18%;
    left: -8%;
    animation: float-obj 5s ease-in-out infinite;
}

.hero-float-card.card-br {
    bottom: 12%;
    right: -8%;
    animation: float-obj 6s ease-in-out infinite reverse;
    animation-delay: 1s;
}

.hero-float-card.card-ml {
    top: 50%;
    left: -14%;
    transform: translateY(-50%);
    animation: float-obj 7s ease-in-out infinite;
    animation-delay: 0.5s;
    border-color: rgba(200, 146, 42, 0.25);
}

@keyframes float-obj {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-float-card.card-ml {
    animation: float-obj-ml 7s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes float-obj-ml {

    0%,
    100% {
        transform: translateY(-50%);
    }

    50% {
        transform: translateY(calc(-50% - 10px));
    }
}

/* Float card icon circles */
.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon-gold {
    background: rgba(200, 146, 42, 0.18);
    border: 1px solid rgba(200, 146, 42, 0.4);
    color: var(--gold-300);
    box-shadow: 0 0 12px rgba(200, 146, 42, 0.15) inset;
}

.float-icon-blue {
    background: rgba(58, 135, 200, 0.18);
    border: 1px solid rgba(58, 135, 200, 0.4);
    color: var(--blue-300);
    box-shadow: 0 0 12px rgba(58, 135, 200, 0.15) inset;
}

.hero-float-card>div:not(.float-card-icon) {
    display: flex;
    flex-direction: column;
}

.hero-float-card strong {
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
}

.hero-float-card span {
    color: var(--silver-400);
    font-size: 0.72rem;
    margin-top: 1px;
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200, 146, 42, 0.45);
    animation: particle-float linear infinite;
}

.particle:nth-child(even) {
    background: rgba(58, 135, 200, 0.4);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}


/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 13px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--t-base);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-gold);
}

.btn-glow {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-300), var(--gold-400));
    color: var(--navy-900);
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(200, 146, 42, 0.6);
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: btn-shine 3s infinite;
}

@keyframes btn-shine {
    0% {
        left: -60%;
    }

    100% {
        left: 120%;
    }
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-gold);
}

.btn-outline {
    border: 2px solid rgba(200, 146, 42, 0.4);
    color: var(--gold-300);
    background: rgba(200, 146, 42, 0.05);
}

.btn-outline:hover {
    border-color: var(--gold-400);
    background: rgba(200, 146, 42, 0.12);
    transform: translateY(-2px);
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(168, 184, 200, 0.3);
    color: var(--silver-200);
    backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
    background: rgba(168, 184, 200, 0.1);
    border-color: var(--silver-300);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--silver-300);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-blue {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-blue);
}


/* ============================================
   CAMEL DIVIDER
   ============================================ */
.camel-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-2xl);
    background: linear-gradient(90deg, var(--navy-950) 0%, #0A1828 30%, #0D1E38 50%, #0A1828 70%, var(--navy-950) 100%);
    border-top: 1px solid rgba(200, 146, 42, 0.12);
    border-bottom: 1px solid rgba(200, 146, 42, 0.15);
    position: relative;
    overflow: hidden;
}

.camel-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 146, 42, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.camel-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.4), rgba(200, 146, 42, 0.2), transparent);
    max-width: 500px;
    position: relative;
}

.camel-divider-line::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.15), transparent);
    filter: blur(2px);
}

.camel-divider-icon {
    width: 80px;
    height: 58px;
    opacity: 0.88;
    filter: drop-shadow(0 0 12px rgba(200, 146, 42, 0.45)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
    animation: camel-walk 3s ease-in-out infinite alternate;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.camel-divider-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes camel-walk {
    0% {
        transform: translateY(0px) rotate(-1.5deg) scaleX(1);
    }

    50% {
        transform: translateY(-4px) rotate(0deg) scaleX(1.02);
    }

    100% {
        transform: translateY(-2px) rotate(1.5deg) scaleX(1);
    }
}


/* ============================================
   PAGE HERO (SUBPAGES)
   ============================================ */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-900) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(200, 146, 42, 0.15);
}

/* Bottom fade on page-hero */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(5, 14, 28, 0.3));
    pointer-events: none;
    z-index: 1;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw + 0.5rem, 3.2rem);
    margin-bottom: var(--space-md);
}

.page-hero>.container>p {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 640px;
    line-height: 1.7;
}

.page-hero .breadcrumb {
    display: flex;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: var(--space-lg);
    font-size: 0.88rem;
    align-items: center;
}

.page-hero .breadcrumb a:hover {
    color: var(--gold-400);
}

.page-hero .breadcrumb .sep {
    color: var(--gold-600);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* Service page hero themes */
.page-hero-themed {
    position: relative;
    overflow: hidden;
}

.page-hero-icon {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    opacity: 0.1;
    z-index: 0;
    width: 220px !important;
    height: 220px !important;
    animation: svc-icon-pulse 6s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 30px currentColor);
}

@keyframes svc-icon-pulse {
    0% {
        opacity: 0.07;
        transform: translateY(-50%) scale(0.95);
    }

    100% {
        opacity: 0.14;
        transform: translateY(-50%) scale(1.05);
    }
}

/* ── Service Hero Stats Bar ── */
.svc-hero-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    flex-wrap: wrap;
}

.svc-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: var(--space-md) var(--space-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(200, 146, 42, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    min-width: 120px;
    transition: all var(--t-base);
}

.svc-hero-stat:hover {
    background: rgba(200, 146, 42, 0.08);
    border-color: rgba(200, 146, 42, 0.35);
    transform: translateY(-2px);
}

.svc-hero-stat .stat-val {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.svc-hero-stat .stat-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* ── Service Feature Cards ── */
.svc-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.svc-feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--silver-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.svc-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left;
}

.svc-feature-card:hover::after {
    transform: scaleX(1);
}

.svc-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 146, 42, 0.2);
}

.svc-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    background: rgba(200, 146, 42, 0.08);
    border: 1px solid rgba(200, 146, 42, 0.18);
    transition: all var(--t-base);
}

.svc-feature-card:hover .svc-feature-icon {
    background: rgba(200, 146, 42, 0.15);
    border-color: rgba(200, 146, 42, 0.35);
    transform: scale(1.08);
}

.svc-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: var(--space-xs);
}

.svc-feature-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Dark variant */
.section--dark .svc-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.07);
}

.section--dark .svc-feature-card:hover {
    background: rgba(200, 146, 42, 0.06);
    border-color: rgba(200, 146, 42, 0.2);
}

.section--dark .svc-feature-card h4 {
    color: var(--white);
}

.section--dark .svc-feature-card p {
    color: rgba(255, 255, 255, 0.55);
}

/* ── Service Process Steps ── */
.svc-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
    margin-top: var(--space-2xl);
}

.svc-process::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--gold-500));
    z-index: 0;
}

.svc-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.svc-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--navy-900);
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-gold);
    transition: all var(--t-base);
}

.svc-process-step:hover .svc-step-num {
    transform: scale(1.12);
    box-shadow: var(--glow-gold);
}

.svc-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-800);
    margin-bottom: var(--space-xs);
}

.svc-step-desc {
    font-size: 0.82rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Dark variant */
.section--dark .svc-step-title {
    color: var(--white);
}

.section--dark .svc-step-desc {
    color: rgba(255, 255, 255, 0.5);
}

/* ── Service Badges ── */
.svc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    background: rgba(200, 146, 42, 0.08);
    border: 1px solid rgba(200, 146, 42, 0.25);
    color: var(--gold-600);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: all var(--t-base);
}

.svc-badge:hover {
    background: rgba(200, 146, 42, 0.15);
    border-color: rgba(200, 146, 42, 0.4);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.svc-badge svg {
    flex-shrink: 0;
}

.svc-badge-blue {
    background: rgba(58, 135, 200, 0.08);
    border-color: rgba(58, 135, 200, 0.25);
    color: var(--blue-600);
}

.svc-badge-blue:hover {
    background: rgba(58, 135, 200, 0.15);
    border-color: rgba(58, 135, 200, 0.4);
    box-shadow: var(--shadow-blue);
}

/* ── Service CTA Buttons ── */
.svc-cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ── Service Comparison Cards ── */
.svc-compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.svc-compare-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(200, 146, 42, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    backdrop-filter: blur(16px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.svc-compare-card:hover {
    border-color: rgba(200, 146, 42, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 146, 42, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.svc-compare-card.featured {
    border-color: var(--gold-500);
    background: linear-gradient(145deg, rgba(200, 146, 42, 0.08), rgba(200, 146, 42, 0.02));
}

.svc-compare-title {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-400);
    margin-bottom: var(--space-sm);
}

.svc-compare-subtitle {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: var(--space-lg);
}

.svc-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.svc-compare-list li:last-child {
    border-bottom: none;
}

.svc-compare-list li::before {
    content: '✓';
    color: var(--gold-400);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Service Info Box ── */
.svc-info-box {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    color: var(--white);
    border: 1px solid rgba(200, 146, 42, 0.18);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Fix specs-table contrast inside dark info box */
.svc-info-box .specs-table td {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.svc-info-box .specs-table td:first-child {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.svc-info-box .specs-table td:last-child {
    color: rgba(255, 255, 255, 0.65);
}

.svc-info-box .specs-table tbody tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.04);
}

.svc-info-box .specs-table tr:hover td {
    background: rgba(200, 146, 42, 0.08) !important;
    color: rgba(255, 255, 255, 0.95);
}

.svc-info-box .specs-table tr:last-child td {
    border-bottom: none;
}

.svc-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.svc-info-box h3 {
    color: var(--gold-400);
    margin-bottom: var(--space-lg);
    font-size: 1.15rem;
}

/* ── Light content card (right-side boxes on service pages) ── */
.svc-content-card {
    background: linear-gradient(145deg, #f8f9fc, #eff1f5);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid rgba(200, 146, 42, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.svc-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    opacity: 0.6;
}

.svc-content-card h3,
.svc-content-card h4 {
    color: var(--navy-800);
    margin-bottom: var(--space-lg);
    font-size: 1.15rem;
    font-weight: 700;
}

.svc-content-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

/* Route item cards inside light content cards */
.svc-route-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(200, 146, 42, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.svc-route-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(200, 146, 42, 0.25);
}

.svc-route-item .route-emoji {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.08), rgba(200, 146, 42, 0.02));
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 146, 42, 0.12);
    flex-shrink: 0;
}

.svc-route-item .route-name {
    font-weight: 700;
    color: var(--navy-800);
    font-size: 0.95rem;
}

.svc-route-item .route-time {
    color: var(--gray-500);
    font-size: 0.82rem;
}

/* Light-box tags styling */
.svc-content-card .tag {
    background: rgba(200, 146, 42, 0.08);
    color: var(--navy-700);
    border: 1px solid rgba(200, 146, 42, 0.2);
    font-size: 0.8rem;
    padding: 6px 14px;
    transition: all 0.2s ease;
}

.svc-content-card .tag:hover {
    background: rgba(200, 146, 42, 0.14);
    border-color: rgba(200, 146, 42, 0.35);
    transform: translateY(-1px);
}

/* ── Responsive for service components ── */


.hero-theme-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.theme-chemical {
    background: linear-gradient(160deg, var(--navy-950) 0%, #07180E 40%, var(--navy-900) 100%) !important;
}

/* Chemical-theme border enhancements */
.theme-chemical~.section .svc-stat-card,
.theme-chemical~.section--dark .svc-stat-card {
    border-color: rgba(16, 185, 129, 0.22);
    box-shadow: 0 2px 16px rgba(16, 185, 129, 0.08);
}

.theme-chemical~.section .svc-stat-card:hover {
    border-color: rgba(16, 185, 129, 0.4);
    background: rgba(16, 185, 129, 0.06);
}

.theme-chemical~.section .svc-advantage-list li {
    border-color: rgba(16, 185, 129, 0.18);
}

.theme-chemical~.section .svc-advantage-list li:hover {
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.06);
}

.theme-chemical~.section .svc-badge {
    border-color: rgba(16, 185, 129, 0.25);
}

.theme-chemical .svc-hero-stat {
    border-color: rgba(16, 185, 129, 0.25);
}

.theme-chemical .svc-hero-stat:hover {
    border-color: rgba(16, 185, 129, 0.45);
    background: rgba(16, 185, 129, 0.08);
}

.theme-chemical .svc-highlight-item {
    border-color: rgba(16, 185, 129, 0.2);
}

/* Chemical-theme: Process step numbers */
.theme-chemical~.section .svc-step-num,
.theme-chemical~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.06));
    border-color: rgba(16, 185, 129, 0.35);
    color: #10b981;
}

.theme-chemical~.section .svc-step-num::after {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
}

.theme-chemical~.section .svc-process-step:hover .svc-step-num {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
    box-shadow: 0 0 24px rgba(16, 185, 129, 0.2);
}

.theme-chemical~.section .svc-process-step:hover {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.12);
}

/* Chemical-theme: CTA banner */
.theme-chemical~.section .svc-cta-banner {
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(16, 185, 129, 0.08);
}

/* Chemical-theme: Hero image banner */
.theme-chemical~.section .svc-hero-image-banner,
.theme-chemical~.section--dark .svc-hero-image-banner {
    border-color: rgba(16, 185, 129, 0.18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.12), 0 0 40px rgba(16, 185, 129, 0.06);
}

/* Chemical-theme: Photo card hover */
.theme-chemical~.section .svc-photo-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(16, 185, 129, 0.15);
}

/* Chemical-theme: Tags */
.theme-chemical~.section .tag {
    border-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.theme-chemical~.section .tag:hover {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.4);
}

/* Chemical-theme: Specs table header */
.theme-chemical~.section .specs-table th {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
}

.theme-sea {
    background: linear-gradient(160deg, var(--navy-950) 0%, #071828 40%, var(--navy-800) 100%) !important;
}

/* Sea-theme: Blue accents */
.theme-sea~.section .svc-step-num,
.theme-sea~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.06));
    border-color: rgba(14, 165, 233, 0.35);
    color: #0ea5e9;
}

.theme-sea~.section .svc-process-step:hover {
    background: rgba(14, 165, 233, 0.04);
    border-color: rgba(14, 165, 233, 0.12);
}

.theme-sea~.section .svc-cta-banner {
    border-color: rgba(14, 165, 233, 0.25);
}

.theme-sea~.section .svc-hero-image-banner {
    border-color: rgba(14, 165, 233, 0.18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(14, 165, 233, 0.12);
}

.theme-sea~.section .svc-photo-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.theme-sea .svc-hero-stat {
    border-color: rgba(14, 165, 233, 0.25);
}

.theme-sea .svc-hero-stat:hover {
    border-color: rgba(14, 165, 233, 0.45);
    background: rgba(14, 165, 233, 0.08);
}

.theme-sea~.section .svc-stat-card {
    border-color: rgba(14, 165, 233, 0.22);
}

.theme-sea~.section .svc-stat-card:hover {
    border-color: rgba(14, 165, 233, 0.4);
    background: rgba(14, 165, 233, 0.06);
}

.theme-road {
    background: linear-gradient(160deg, var(--navy-950) 0%, #181008 50%, var(--navy-900) 100%) !important;
}

/* Road-theme: Amber accents */
.theme-road~.section .svc-step-num,
.theme-road~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.06));
    border-color: rgba(245, 158, 11, 0.35);
    color: #f59e0b;
}

.theme-road~.section .svc-process-step:hover {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.12);
}

.theme-road~.section .svc-cta-banner {
    border-color: rgba(245, 158, 11, 0.25);
}

.theme-road~.section .svc-hero-image-banner {
    border-color: rgba(245, 158, 11, 0.18);
}

.theme-road .svc-hero-stat {
    border-color: rgba(245, 158, 11, 0.25);
}

.theme-road .svc-hero-stat:hover {
    border-color: rgba(245, 158, 11, 0.45);
    background: rgba(245, 158, 11, 0.08);
}

.theme-road~.section .svc-stat-card {
    border-color: rgba(245, 158, 11, 0.22);
}

.theme-road~.section .svc-stat-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.06);
}

.theme-air {
    background: linear-gradient(160deg, var(--navy-950) 0%, #0C1828 30%, #142240 100%) !important;
}

/* Air-theme: Sky blue accents */
.theme-air~.section .svc-step-num,
.theme-air~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.06));
    border-color: rgba(56, 189, 248, 0.35);
    color: #38bdf8;
}

.theme-air~.section .svc-process-step:hover {
    background: rgba(56, 189, 248, 0.04);
    border-color: rgba(56, 189, 248, 0.12);
}

.theme-air~.section .svc-cta-banner {
    border-color: rgba(56, 189, 248, 0.25);
}

.theme-air~.section .svc-hero-image-banner {
    border-color: rgba(56, 189, 248, 0.18);
}

.theme-air .svc-hero-stat {
    border-color: rgba(56, 189, 248, 0.25);
}

.theme-air .svc-hero-stat:hover {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(56, 189, 248, 0.08);
}

.theme-air~.section .svc-stat-card {
    border-color: rgba(56, 189, 248, 0.22);
}

.theme-air~.section .svc-stat-card:hover {
    border-color: rgba(56, 189, 248, 0.4);
    background: rgba(56, 189, 248, 0.06);
}

.theme-rail {
    background: linear-gradient(160deg, var(--navy-950) 0%, #180A0A 50%, var(--navy-900) 100%) !important;
}

/* Rail-theme: Crimson accents */
.theme-rail~.section .svc-step-num,
.theme-rail~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.06));
    border-color: rgba(239, 68, 68, 0.35);
    color: #ef4444;
}

.theme-rail~.section .svc-process-step:hover {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.12);
}

.theme-rail~.section .svc-cta-banner {
    border-color: rgba(239, 68, 68, 0.25);
}

.theme-rail~.section .svc-hero-image-banner {
    border-color: rgba(239, 68, 68, 0.18);
}

.theme-rail .svc-hero-stat {
    border-color: rgba(239, 68, 68, 0.25);
}

.theme-rail .svc-hero-stat:hover {
    border-color: rgba(239, 68, 68, 0.45);
    background: rgba(239, 68, 68, 0.08);
}

.theme-rail~.section .svc-stat-card {
    border-color: rgba(239, 68, 68, 0.22);
}

.theme-rail~.section .svc-stat-card:hover {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.06);
}

.theme-food {
    background: linear-gradient(160deg, var(--navy-950) 0%, #0A180A 50%, var(--navy-900) 100%) !important;
}

/* Food-theme: Lime accents */
.theme-food~.section .svc-step-num,
.theme-food~.section--gray .svc-step-num {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15), rgba(132, 204, 22, 0.06));
    border-color: rgba(132, 204, 22, 0.35);
    color: #84cc16;
}

.theme-food~.section .svc-process-step:hover {
    background: rgba(132, 204, 22, 0.04);
    border-color: rgba(132, 204, 22, 0.12);
}

.theme-food~.section .svc-cta-banner {
    border-color: rgba(132, 204, 22, 0.25);
}

.theme-food~.section .svc-hero-image-banner {
    border-color: rgba(132, 204, 22, 0.18);
}

.theme-food .svc-hero-stat {
    border-color: rgba(132, 204, 22, 0.25);
}

.theme-food .svc-hero-stat:hover {
    border-color: rgba(132, 204, 22, 0.45);
    background: rgba(132, 204, 22, 0.08);
}

.theme-food~.section .svc-stat-card {
    border-color: rgba(132, 204, 22, 0.22);
}

.theme-food~.section .svc-stat-card:hover {
    border-color: rgba(132, 204, 22, 0.4);
    background: rgba(132, 204, 22, 0.06);
}

/* Service page hero decorations */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(200, 146, 42, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 146, 42, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    animation: grid-pulse 4s ease-in-out infinite alternate;
}

@keyframes grid-pulse {
    0% {
        opacity: 0.025;
    }

    100% {
        opacity: 0.06;
    }
}

.hero-wave-overlay {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 400%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='rgba(74,159,212,0.08)' d='M0,30 C240,60 480,0 720,30 C960,60 1200,0 1440,30 V60 H0 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 60px;
    animation: wave-hero 14s linear infinite;
    z-index: 0;
}

@keyframes wave-hero {
    to {
        transform: translateX(1440px);
    }
}

.hero-road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            rgba(200, 146, 42, 0.6) 0px, rgba(200, 146, 42, 0.6) 40px,
            transparent 40px, transparent 70px);
    z-index: 0;
    animation: road-dash 2s linear infinite;
}

@keyframes road-dash {
    to {
        background-position: 70px 0;
    }
}

.hero-cloud {
    position: absolute;
    width: 120px;
    height: 40px;
    background: rgba(168, 184, 200, 0.06);
    border-radius: var(--radius-full);
    z-index: 0;
    filter: blur(8px);
}

.hero-cloud.cloud-1 {
    top: 30%;
    right: 15%;
    animation: cloud-drift 16s ease-in-out infinite;
}

.hero-cloud.cloud-2 {
    top: 55%;
    right: 35%;
    width: 80px;
    height: 30px;
    animation: cloud-drift 22s ease-in-out infinite reverse;
}

@keyframes cloud-drift {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(44px);
    }
}

.hero-track-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 0;
    background: linear-gradient(90deg,
            transparent 0%, rgba(58, 135, 200, 0.3) 10%,
            rgba(58, 135, 200, 0.6) 50%, rgba(58, 135, 200, 0.3) 90%, transparent 100%);
}

.hero-track-lines::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(58, 135, 200, 0.25) 0px, rgba(58, 135, 200, 0.25) 20px,
            transparent 20px, transparent 30px);
}


/* ============================================
   FLOATING ELEMENTS
   ============================================ */

/* Inquiry float button */
.inquiry-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: var(--z-float);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: all var(--t-base);
}

.inquiry-float-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    font-size: 1.3rem;
    box-shadow: var(--shadow-gold);
    transition: all var(--t-base);
    animation: pulse-inquiry 2.5s ease-in-out infinite;
}

@keyframes pulse-inquiry {

    0%,
    100% {
        box-shadow: var(--shadow-gold);
    }

    50% {
        box-shadow: var(--glow-gold);
    }
}

.inquiry-float:hover .inquiry-float-icon {
    transform: scale(1.12);
    box-shadow: var(--glow-gold);
}

.inquiry-float-text {
    font-size: 0.62rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
}

/* WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: var(--z-float);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: all var(--t-base);
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 32px rgba(37, 211, 102, 0.55);
}

/* Scroll-to-top button */
.scroll-top {
    position: fixed;
    bottom: 152px;
    right: 28px;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--grad-gold);
    color: var(--navy-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--t-base);
    z-index: var(--z-float);
    box-shadow: var(--shadow-gold);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}


/* ============================================
   HERO COMPANY LABEL (above headline)
   ============================================ */
.hero-company-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(168, 184, 200, 0.75);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-xl);
    padding: 6px 16px;
    background: rgba(200, 146, 42, 0.06);
    border: 1px solid rgba(200, 146, 42, 0.25);
    border-radius: var(--radius-full);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 20px rgba(200, 146, 42, 0.06) inset;
}

.hero-company-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-300);
    box-shadow: 0 0 10px var(--gold-400), 0 0 20px rgba(200, 146, 42, 0.4);
    animation: pulse-dot 2s infinite;
    flex-shrink: 0;
}

.hero-company-sep {
    color: rgba(200, 146, 42, 0.5);
}


/* ============================================
   HERO TRUST ROW (below CTA buttons)
   ============================================ */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(168, 184, 200, 0.65);
    letter-spacing: 0.02em;
}

.hero-trust-item svg {
    flex-shrink: 0;
    opacity: 0.8;
}


/* ============================================
   HERO GLOBE WRAP
   ============================================ */
.hero-globe-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}


/* ============================================
   HERO FEATURE BADGES (below globe)
   ============================================ */
.hero-feature-badges {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
    margin-top: var(--space-lg);
}

.hero-feat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(3, 9, 18, 0.88);
    border: 1px solid rgba(200, 146, 42, 0.28);
    border-radius: var(--radius-full);
    backdrop-filter: blur(20px);
    font-size: 0.78rem;
    white-space: nowrap;
    transition: all var(--t-base);
}

.hero-feat-badge:hover {
    border-color: rgba(200, 146, 42, 0.5);
    background: rgba(200, 146, 42, 0.08);
}

.feat-badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon-gold {
    background: rgba(200, 146, 42, 0.15);
    border: 1px solid rgba(200, 146, 42, 0.3);
    color: var(--gold-300);
}

.feat-icon-blue {
    background: rgba(58, 135, 200, 0.15);
    border: 1px solid rgba(58, 135, 200, 0.3);
    color: var(--blue-300);
}

.feat-badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.feat-badge-text strong {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.feat-badge-text span {
    color: var(--silver-400);
    font-size: 0.68rem;
    line-height: 1.2;
}


/* ============================================
   HERO VISUAL CONTENT — improved layout
   ============================================ */
.hero-visual-content {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


/* ============================================
   GLOBE + CAMEL CENTERPIECE
   ============================================ */
.globe-camel-core {
    background: none;
    border: none;
    box-shadow: none;
    width: 340px;
    height: 340px;
    animation: camel-breathe 7s ease-in-out infinite alternate;
}

.globe-camel-svg {
    width: 340px;
    height: 340px;
    filter:
        drop-shadow(0 0 40px rgba(200, 146, 42, 0.6)) drop-shadow(0 0 80px rgba(58, 135, 200, 0.3)) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.7));
    animation: globe-float 8s ease-in-out infinite;
    overflow: visible;
}

@keyframes globe-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(-8px);
    }

    70% {
        transform: translateY(-5px);
    }
}

/* Globe outer rings animation */
.globe-outer-ring-1 {
    animation: globe-ring-pulse 4s ease-in-out infinite alternate;
    transform-origin: 170px 170px;
    transform-box: fill-box;
}

.globe-outer-ring-2 {
    animation: globe-ring-pulse 6s ease-in-out infinite alternate-reverse;
    transform-origin: 170px 170px;
    transform-box: fill-box;
}

@keyframes globe-ring-pulse {
    0% {
        opacity: 0.4;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Globe grid rotation animation */
.globe-grid {
    animation: globe-spin 35s linear infinite;
    transform-origin: 170px 170px;
    transform-box: fill-box;
}

@keyframes globe-spin {
    0% {
        transform: rotateY(0deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* City pulse animations */
.globe-city-pulse {
    animation: globe-city-pulse 2.5s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes globe-city-pulse {

    0%,
    100% {
        r: 3.5;
        opacity: 0.2;
    }

    50% {
        r: 7;
        opacity: 0.06;
    }
}

/* Route arc animation */
.globe-route-arc {
    stroke-dasharray: 4 6;
    animation: globe-arc-dash 8s linear infinite;
}

.globe-route-silk {
    stroke-dasharray: 6 4;
    animation: globe-arc-dash 5s linear infinite;
    filter: drop-shadow(0 0 3px rgba(200, 146, 42, 0.7));
}

@keyframes globe-arc-dash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -60;
    }
}

/* Camel on globe float */
.globe-camel {
    animation: globe-camel-walk 4s ease-in-out infinite alternate;
    transform-origin: 80px 80px;
    transform-box: fill-box;
}

@keyframes globe-camel-walk {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-4px) rotate(0deg);
    }

    100% {
        transform: translateY(-2px) rotate(1deg);
    }
}

/* City labels on globe */
.globe-city-label {
    font-family: 'Inter', sans-serif;
    font-size: 7px;
    font-weight: 600;
    fill: rgba(168, 184, 200, 0.8);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.globe-city-label-hq {
    font-size: 8px;
    font-weight: 800;
    fill: rgba(224, 176, 80, 0.95);
}


/* ============================================
   SILK ROAD LABEL (below camel)
   ============================================ */
.camel-silk-road-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    position: relative;
    z-index: 5;
}

.silk-road-text {
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-400);
    white-space: nowrap;
    animation: silk-road-glow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 6px rgba(200, 146, 42, 0.5));
}

@keyframes silk-road-glow {
    0% {
        opacity: 0.7;
        filter: drop-shadow(0 0 4px rgba(200, 146, 42, 0.4));
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(200, 146, 42, 0.8));
    }
}

.silk-road-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.5), transparent);
    max-width: 60px;
}


/* ============================================
   SERVICE PAGE — CINEMATIC HERO IMAGE BANNER
   ============================================ */
.svc-hero-image-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(200, 146, 42, 0.15), 0 0 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(200, 146, 42, 0.12);
}

.svc-hero-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7) saturate(0.85) contrast(1.05);
    transition: transform 8s ease, filter 0.5s ease;
}

.svc-hero-image-banner:hover img {
    transform: scale(1.04);
    filter: brightness(0.78) saturate(0.9) contrast(1.02);
}

.svc-hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 14, 28, 0.75) 0%,
            rgba(5, 14, 28, 0.35) 50%,
            rgba(5, 14, 28, 0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-2xl) var(--space-3xl);
}

.svc-hero-image-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-400);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-hero-image-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--grad-gold);
    border-radius: 2px;
}

.svc-hero-image-title {
    font-family: var(--font-accent);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.svc-hero-image-sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-sm);
    max-width: 480px;
    line-height: 1.6;
}

/* Decorative corner accent */
.svc-hero-image-banner::after {
    content: '';
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 60px;
    height: 60px;
    border-top: 2px solid rgba(200, 146, 42, 0.5);
    border-right: 2px solid rgba(200, 146, 42, 0.5);
    border-radius: 0 var(--radius-sm) 0 0;
    pointer-events: none;
}


/* ============================================
   MODERN HERO VISUAL v2
   Replaces camel SVG with animated globe/
   logistics visual with orbiting icons.
   ============================================ */

.hero-modern-visual {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Globe container */
.hero-globe-container {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating rings */
.hv-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hv-ring-1 {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(200, 146, 42, 0.2);
    animation: hv-spin 30s linear infinite;
    box-shadow: 0 0 30px rgba(200, 146, 42, 0.05) inset;
}

.hv-ring-2 {
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(58, 135, 200, 0.2);
    animation: hv-spin 20s linear infinite reverse;
}

.hv-ring-3 {
    width: 220px;
    height: 220px;
    border: 1px solid rgba(200, 146, 42, 0.15);
    animation: hv-spin 15s linear infinite;
}

@keyframes hv-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Central sphere */
.hv-sphere {
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
            rgba(200, 146, 42, 0.25) 0%,
            rgba(58, 135, 200, 0.15) 35%,
            rgba(5, 14, 28, 0.9) 65%,
            rgba(2, 8, 16, 0.98) 100%);
    border: 2px solid rgba(200, 146, 42, 0.35);
    box-shadow:
        0 0 80px rgba(200, 146, 42, 0.3),
        0 0 160px rgba(58, 135, 200, 0.15),
        0 0 40px rgba(200, 146, 42, 0.1),
        inset 0 0 60px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: hv-breathe 6s ease-in-out infinite alternate;
    z-index: 2;
}

@keyframes hv-breathe {
    0% {
        box-shadow: 0 0 60px rgba(200, 146, 42, 0.25), 0 0 120px rgba(58, 135, 200, 0.12), inset 0 0 60px rgba(0, 0, 0, 0.5);
        transform: scale(0.97);
    }

    100% {
        box-shadow: 0 0 100px rgba(200, 146, 42, 0.4), 0 0 200px rgba(58, 135, 200, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.5);
        transform: scale(1.03);
    }
}

/* Logo in sphere */
.hv-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(200, 146, 42, 0.5)) drop-shadow(0 0 40px rgba(200, 146, 42, 0.2));
    animation: hv-logo-float 5s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

@keyframes hv-logo-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Pulse rings */
.hv-pulse {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(200, 146, 42, 0.4);
    animation: hv-pulse-anim 3s ease-out infinite;
    pointer-events: none;
}

.hv-pulse-1 {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
}

.hv-pulse-2 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

.hv-pulse-3 {
    width: 160px;
    height: 160px;
    animation-delay: 2s;
}

@keyframes hv-pulse-anim {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Orbiting service icons */
.hv-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    pointer-events: none;
}

.hv-orbit-1 {
    animation: hv-orbit-spin 12s linear infinite;
}

.hv-orbit-2 {
    animation: hv-orbit-spin 16s linear infinite reverse;
}

.hv-orbit-3 {
    animation: hv-orbit-spin 10s linear infinite;
    animation-delay: -3s;
}

.hv-orbit-4 {
    animation: hv-orbit-spin 14s linear infinite reverse;
    animation-delay: -5s;
}

@keyframes hv-orbit-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hv-orbit-dot {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(5, 14, 28, 0.95);
    border: 1px solid rgba(200, 146, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(200, 146, 42, 0.2), 0 4px 12px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

/* Counter-rotate the icon so it stays upright */
.hv-orbit-1 .hv-orbit-dot {
    animation: hv-counter-spin 12s linear infinite reverse;
}

.hv-orbit-2 .hv-orbit-dot {
    animation: hv-counter-spin 16s linear infinite;
}

.hv-orbit-3 .hv-orbit-dot {
    animation: hv-counter-spin 10s linear infinite reverse;
    animation-delay: -3s;
}

.hv-orbit-4 .hv-orbit-dot {
    animation: hv-counter-spin 14s linear infinite;
    animation-delay: -5s;
}

@keyframes hv-counter-spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* SVG connection lines */
.hv-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.hv-route {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 8 12;
    animation: hv-route-dash 6s linear infinite;
}

.hv-route-gold {
    stroke: rgba(200, 146, 42, 0.5);
    animation-duration: 5s;
}

.hv-route-blue {
    stroke: rgba(58, 135, 200, 0.45);
    animation-duration: 7s;
    animation-direction: reverse;
}

.hv-route-silk {
    stroke: rgba(224, 176, 80, 0.7);
    stroke-width: 2;
    animation-duration: 4s;
    filter: drop-shadow(0 0 3px rgba(200, 146, 42, 0.5));
}

@keyframes hv-route-dash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -80;
    }
}

/* 25 Years badge */
.hv-years-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 0 0 3px rgba(200, 146, 42, 0.3),
        0 0 0 6px rgba(200, 146, 42, 0.1),
        var(--shadow-gold);
    animation: hv-badge-glow 5s ease-in-out infinite alternate;
    z-index: 10;
    cursor: default;
}

@keyframes hv-badge-glow {
    0% {
        box-shadow: 0 0 0 3px rgba(200, 146, 42, 0.3), 0 0 0 6px rgba(200, 146, 42, 0.1), var(--shadow-gold);
        transform: rotate(-3deg);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(200, 146, 42, 0.5), 0 0 0 10px rgba(200, 146, 42, 0.15), var(--glow-gold);
        transform: rotate(3deg);
    }
}

.hv-years-num {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -0.04em;
}

.hv-years-text {
    font-size: 0.42rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--navy-900);
    line-height: 1.3;
    margin-top: 2px;
}

/* Responsive */