/* ===== SAI MANJU — SKY BLUE PREMIUM THEME ===== */
/* Multi-mood sections: cool sky→warm→cool flow */
:root {
    /* Base palette */
    --bg-deep: #040810;
    --bg-section: #060d1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* Accent spectrum */
    --gold: #0ea5e9;
    --gold-bright: #38bdf8;
    --amber: #7dd3fc;
    --ember: #0284c7;
    --coral: #06b6d4;
    --purple: #8b5cf6;
    --indigo: #6366f1;
    --cyan: #22d3ee;
    --teal: #14b8a6;
    --green: #25D366;
    /* Neutrals */
    --white: #f0f4f8;
    --white-soft: rgba(240, 244, 248, 0.85);
    --muted: #64748b;
    --dim: #334155;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-deep);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

/* ===== GRAIN OVERLAY ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 99990;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(145deg, #040810 0%, #0a1628 50%, #040810 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.9s cubic-bezier(.77, 0, .18, 1);
}

#loader.done {
    transform: translateY(-100%)
}

.loader-inner {
    text-align: center
}

.loader-logo-wrap {
    margin-bottom: 28px
}

.loader-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin: 0 auto;
    opacity: 0;
    animation: loaderPop 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    filter: drop-shadow(0 0 50px rgba(56, 189, 248, 0.25));
}

@keyframes loaderPop {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg)
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0)
    }
}

.loader-progress {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0 auto 24px;
    border-radius: 8px;
    overflow: hidden
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple), var(--gold-bright), var(--ember));
    animation: loadBar 2.2s 0.4s ease-in-out forwards;
    border-radius: 8px
}

@keyframes loadBar {
    to {
        width: 100%
    }
}

.loader-destination {
    margin-bottom: 20px
}

.loader-dest-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 0.6s 0.8s ease forwards;
}

.loader-dest-text {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(90deg, var(--gold-bright), var(--ember), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 0.6s 1.2s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.loader-speedo {
    margin-bottom: 24px
}

.speedo-svg {
    width: 110px
}

.speedo-arc {
    animation: arcFill 2.2s 0.4s ease-in-out forwards
}

@keyframes arcFill {
    to {
        stroke-dashoffset: 15
    }
}

.speedo-needle {
    transform-origin: 60px 65px;
    animation: needleSweep 2.2s 0.4s ease-in-out forwards
}

@keyframes needleSweep {
    0% {
        transform: rotate(-90deg)
    }

    100% {
        transform: rotate(55deg)
    }
}

.loader-bottom {
    display: flex;
    justify-content: space-between;
    width: 280px;
    margin: 0 auto
}

.loader-loc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--muted);
    letter-spacing: 0;
    animation: trackSp 1.5s 0.8s ease forwards
}

@keyframes trackSp {
    to {
        letter-spacing: 3px
    }
}

.loader-est {
    font-size: 0.6rem;
    color: var(--muted);
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.5s 2s ease forwards
}

/* ===== SCROLL PROGRESS ===== */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--ember), var(--gold-bright), var(--cyan), var(--purple));
    z-index: 10000;
    transition: width 0.08s;
}

/* ===== FIXED LEFT SPEEDOMETER ===== */
#fixed-speedo {
        position: fixed;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 8500;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
}

/* Hide speedometer when QR code is visible (desktop only) */
@media (min-width: 900px) {
    .google-qr-section:focus-within ~ #fixed-speedo,
    .google-qr-section:hover ~ #fixed-speedo {
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

#fixed-speedo.visible {
    opacity: 1
}

.fs-gauge {
    position: relative;
    width: 110px;
    height: 110px
}

.fs-svg {
    width: 100%;
    height: 100%
}

.fs-needle {
    transform-origin: 60px 60px;
    transition: transform 0.15s ease-out
}

.fs-reading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fs-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-bright), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.fs-unit {
    font-size: 0.5rem;
    letter-spacing: 2px;
    color: var(--muted);
    font-weight: 700;
    margin-top: 2px
}

.fs-gear {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--gold-bright);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s;
}

.fs-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.6rem;
    color: var(--gold);
}

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: all 0.4s ease;
    background: transparent;
}

#header.scrolled {
    background: rgba(6, 6, 14, 0.8);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.h-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.h-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.3))
}

.h-logo-text {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.h-logo-text .logo-sai {
    color: #fff;
    font-weight: 700;
}

.h-logo-text .logo-manju {
    color: #ef4444;
    font-weight: 800;
}

.h-logo-text .logo-mds {
    color: #fbbf24 !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(251, 191, 36, 0.28);
}

.h-nav {
    display: flex;
    gap: 32px
}

.h-nav a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.h-nav a:visited {
    color: #fff;
}

.h-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-bright), var(--amber));
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.h-nav a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.h-nav a:hover::after {
    width: 60%;
}

.h-phone {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    color: #fff;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(56, 189, 248, 0.2);
}

.h-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(56, 189, 248, 0.35)
}

.h-menu {
    display: none;
    background: none;
    border: none;
    color: var(--gold-bright);
    cursor: pointer;
    padding: 4px
}

#mobile-nav {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(6, 6, 14, 0.98);
    backdrop-filter: blur(30px);
    padding: 30px 6% 40px;
    flex-direction: column;
    gap: 0;
    z-index: 8999;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#mobile-nav.open {
    transform: translateY(0);
    display: flex
}

#mobile-nav a {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: block;
    width: 100%;
    text-align: center;
}

#mobile-nav a:hover {
    color: var(--gold-bright);
}

.mn-call {
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    color: #fff !important;
    text-align: center;
    padding: 16px !important;
    border-radius: 12px;
    border: none !important;
    font-weight: 800 !important;
    margin-top: 16px;
    box-shadow: 0 4px 14px rgba(56, 189, 248, 0.3);
}

.mn-wa {
    background: var(--green);
    color: #fff !important;
    text-align: center;
    padding: 16px !important;
    border-radius: 12px;
    border: none !important;
    font-weight: 800 !important;
    margin-top: 10px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 5% 40px
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.05)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(4, 8, 16, 0.92) 0%, rgba(4, 8, 16, 0.6) 40%, rgba(10, 22, 40, 0.7) 70%, rgba(4, 8, 16, 0.85) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(0deg, rgba(4, 8, 16, 0.9), transparent);
    perspective: 400px
}

.road-lines {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 4px;
    height: 200%;
    background: repeating-linear-gradient(to bottom, var(--gold-bright) 0px, var(--gold-bright) 30px, transparent 30px, transparent 60px);
    transform: translateX(-50%) rotateX(60deg);
    transform-origin: bottom center;
    animation: roadMove 0.8s linear infinite;
    opacity: 0.35;
}

@keyframes roadMove {
    to {
        transform: translateX(-50%) rotateX(60deg) translateY(60px)
    }
}

/* Hero HUD */
.hero-hud {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    padding: 80px 5% 40px
}

.hud-tl {
    position: absolute;
    top: 90px;
    left: 5%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.hud-speedo {
    width: 65px
}

.hud-speed-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    color: var(--gold-bright);
    font-weight: 700;
    margin-top: -4px
}

.hud-unit {
    font-size: 0.55rem;
    color: var(--muted);
    letter-spacing: 1.5px;
    font-weight: 600
}

.hud-tr {
    position: absolute;
    top: 90px;
    right: 5%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hud-bl {
    position: absolute;
    bottom: 50px;
    left: 5%;
    font-size: 0.63rem;
    color: var(--muted);
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 4;
    max-width: 600px
}

.hero-pre {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 20px;
    display: inline-block;
    font-weight: 700;
    background: rgba(56, 189, 248, 0.08);
    padding: 6px 16px;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.15);
    opacity: 0;
    animation: fadeUp 0.8s 2.8s ease forwards;
}

.hero-title {
    font-size: clamp(3.2rem, 8.5vw, 6.5rem);
    line-height: 0.92;
    margin-bottom: 24px;
    font-weight: 900
}

.ht-line {
    display: block;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards
}

.ht-line:nth-child(1) {
    animation-delay: 3s;
    background: linear-gradient(135deg, #fff 20%, var(--gold-bright) 50%, var(--amber) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ht-line:nth-child(2) {
    animation-delay: 3.2s;
    color: var(--white);
    -webkit-text-fill-color: var(--white)
}

.hero-sub {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.7s 3.4s ease forwards;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    letter-spacing: 0.3px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.7s 3.6s ease forwards
}

/* CTAs */
.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.8px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    font-family: inherit;
}

.cta-gold {
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    color: #000;
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
}

.cta-gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.5), 0 0 20px rgba(255,255,255,0.2) inset;
}

.cta-outline {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px) saturate(150%);
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.02);
    border-color: var(--gold-bright);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
    color: var(--gold-bright);
}

.cta-ghost {
    color: var(--muted);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-ghost:hover {
    color: var(--white);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.cta-sm {
    padding: 8px 16px;
    font-size: 0.72rem
}

/* Hero car */
.hero-car {
    position: absolute;
    right: 3%;
    bottom: 8%;
    z-index: 2;
    width: 38%;
    max-width: 460px
}

.car-glow {
    position: absolute;
    inset: -60px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(56, 189, 248, 0.06) 40%, transparent 70%);
    filter: blur(50px);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite alternate
}

@keyframes glowPulse {
    from {
        opacity: 0.6;
        transform: scale(1)
    }

    to {
        opacity: 1;
        transform: scale(1.1)
    }
}

.car-img {
    width: 100%;
    border-radius: 16px;
    animation: carFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.6))
}

@keyframes carFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    50% {
        transform: translateY(-12px) rotate(0.5deg)
    }
}

/* ===== SECTION COMMON ===== */
.sec-label {
    display: block;
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 12px;
    font-weight: 700
}

.sec-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--white) 40%, var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sec-sub {
    text-align: center;
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 54px;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== VIDEO SHOWCASE ===== */
#video-showcase {
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-deep) 0%, #050c18 50%, var(--bg-section) 100%);
}

.vid-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

.vid-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.vid-theater {
    position: relative;
}

.vid-tabs {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 4px;
    background: rgba(7, 16, 30, 0.75);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 14px;
}

.vid-tab {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.vid-tab:hover {
    color: var(--text);
    background: rgba(56, 189, 248, 0.12);
}

.vid-tab.active {
    color: #04101e;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.28);
}

.vid-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.12);
    box-shadow:
        0 0 80px rgba(56, 189, 248, 0.06),
        0 30px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.5s, border-color 0.5s;
}

.vid-frame:hover {
    border-color: rgba(56, 189, 248, 0.25);
    box-shadow:
        0 0 120px rgba(56, 189, 248, 0.1),
        0 40px 120px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.vid-frame.playing {
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow:
        0 0 150px rgba(56, 189, 248, 0.12),
        0 40px 120px rgba(0, 0, 0, 0.6);
}

.vid-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    cursor: pointer;
    overflow: hidden;
}

.vid-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Play Overlay */
.vid-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    transition: opacity 0.4s, visibility 0.4s;
    z-index: 3;
}

.vid-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.vid-play-btn {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: rgba(56, 189, 248, 0.15);
    backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vid-play-btn:hover {
    background: rgba(56, 189, 248, 0.3);
    transform: scale(1.1);
}

.vid-play-btn svg {
    position: relative;
    z-index: 2;
    margin-left: 4px;
}

.play-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(56, 189, 248, 0.3);
    animation: playPulse 2s ease-in-out infinite;
}

.play-ring-2 {
    inset: -16px;
    border-color: rgba(56, 189, 248, 0.15);
    animation-delay: 0.5s;
}

@keyframes playPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.15);
        opacity: 0.4
    }
}

.vid-play-label {
    font-size: 0.7rem;
    letter-spacing: 4px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

/* Progress bar */
.vid-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 4;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.vid-screen:hover .vid-progress,
.vid-progress.active {
    opacity: 1;
}

.vid-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-bright), var(--cyan));
    border-radius: 0 2px 2px 0;
    transition: width 0.1s linear;
}

/* Film strip decorations */
.vid-strip {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 6px;
    background: repeating-linear-gradient(to bottom,
            rgba(56, 189, 248, 0.08) 0px,
            rgba(56, 189, 248, 0.08) 8px,
            transparent 8px,
            transparent 16px);
    z-index: 1;
    pointer-events: none;
}

.vid-strip-l {
    left: -10px;
}

.vid-strip-r {
    right: -10px;
}

/* Stats under video */
.vid-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.vid-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 500;
}

/* ===== TRUST BAR ===== */
#trust-bar {
    background: linear-gradient(180deg, var(--bg-deep), var(--bg-section));
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 40px 5%;
    position: relative;
}

#trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.03) 0%, transparent 70%);
    pointer-events: none
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 12px
}

.trust-num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px
}

.trust-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold)
}

.trust-label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-top: 6px
}

.trust-div {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.06), transparent)
}

/* ===== SERVICES — COOL-TONED SECTION ===== */
#services {
    padding: 100px 5%;
    background:
        linear-gradient(180deg, var(--bg-section) 0%, #070720 50%, var(--bg-section) 100%);
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none
}

#services::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.04) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto
}

.svc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 22px 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(8px);
}

.svc-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(56, 189, 248, 0.2) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none
}

.svc-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.3);
}

.svc-card:hover::before {
    opacity: 1
}

.svc-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(56, 189, 248, 0.08);
    color: var(--amber);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 24px;
    border: 1px solid rgba(56, 189, 248, 0.12);
}

.svc-badge.bq {
    background: rgba(34, 211, 238, 0.06);
    color: var(--cyan);
    border-color: rgba(34, 211, 238, 0.12)
}

.svc-badge.br {
    background: rgba(255, 90, 31, 0.06);
    color: var(--coral);
    border-color: rgba(255, 90, 31, 0.12)
}

.svc-icon {
    margin-bottom: 18px;
    transition: transform 0.4s
}

.svc-card:hover .svc-icon {
    transform: scale(1.15) rotate(-3deg)
}

.svc-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.3px
}

.svc-desc {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 16px
}

.svc-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04)
}

.svc-card ul {
    margin-bottom: 22px
}

.svc-card li {
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--white-soft);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03)
}

.svc-card li::before {
    content: '→  ';
    color: var(--amber);
    font-weight: 700
}

.svc-cta {
    width: 100%;
    justify-content: center
}

/* ===== WHY US — WARM SECTION ===== */
#why-us {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-section), #060e1a 50%, var(--bg-section));
    position: relative;
}

#why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.04) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none
}

.why-grid {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 32px;
    max-width: 680px;
    margin: 0 auto
}

.why-road {
    position: relative
}

.road-svg {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%
}

.road-line-draw {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 2s ease
}

.road-line-draw.drawn {
    stroke-dashoffset: 0
}

.why-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(14, 165, 233, 0.4);
    background: var(--bg-deep);
    transition: all 0.5s;
    z-index: 2;
}

.why-dot.filled {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(14, 165, 233, 0.5)
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.why-item {
    opacity: 0;
    transform: translateX(-24px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1)
}

.why-item.visible {
    opacity: 1;
    transform: translateX(0)
}

.why-num {
    font-size: 1.3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold-bright), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.why-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 6px 0 8px
}

.why-item p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.65
}

/* ===== AREAS — PURPLE-TINTED ===== */
#areas {
    padding: 80px 5%;
    background: linear-gradient(180deg, var(--bg-section), #090818 50%, var(--bg-section));
    position: relative;
}

#areas::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none
}

.area-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto 28px
}

.area-pill {
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    transition: all 0.35s;
    cursor: default;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
}

.area-pill:hover {
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    color: #000;
    transform: scale(1.08);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.2);
}

.area-pill:hover::after {
    content: 'We come to you!';
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 6, 14, 0.95);
    color: var(--white);
    font-size: 0.62rem;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.area-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem
}

.area-note a {
    color: var(--amber);
    text-decoration: underline;
    text-underline-offset: 3px
}

/* ===== TESTIMONIALS ===== */
#testimonials {
    padding: 100px 5%;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-section), var(--bg-deep));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.marquee-wrap {
    margin-bottom: 44px;
    width: 100%;
    align-self: stretch;
}

.marquee-row {
    display: flex;
    gap: 20px;
    width: max-content
}

.marquee-fwd {
    animation: marqueeL 50s linear infinite
}

.marquee-rev {
    animation: marqueeR 55s linear infinite;
    margin-top: 20px
}

@keyframes marqueeL {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes marqueeR {
    from {
        transform: translateX(-50%)
    }

    to {
        transform: translateX(0)
    }
}

.marquee-row:hover {
    animation-play-state: paused
}

.rev-card {
    min-width: 300px;
    max-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    flex-shrink: 0;
    backdrop-filter: blur(8px);
    transition: border-color 0.3s;
}

.rev-card:hover {
    border-color: rgba(56, 189, 248, 0.15)
}

.rev-stars {
    color: var(--gold-bright);
    font-size: 0.85rem;
    margin-bottom: 12px;
    letter-spacing: 3px
}

.rev-text {
    font-size: 0.84rem;
    color: var(--white-soft);
    line-height: 1.65;
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif;
    font-style: italic
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 10px
}

.rev-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple), var(--gold-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.68rem;
    color: #fff;
}

.rev-name {
    font-weight: 700;
    font-size: 0.82rem
}

.rev-ctx {
    font-size: 0.66rem;
    color: var(--muted)
}

.spotlight {
    max-width: 560px;
    margin: 0 auto 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    min-height: 200px;
    backdrop-filter: blur(8px);
}

.spot-quote {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--gold-bright), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 300
}

.spot-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--white-soft);
    margin-bottom: 18px;
    font-style: italic
}

.spot-stars {
    color: var(--gold-bright);
    margin-bottom: 10px;
    letter-spacing: 3px
}

.spot-name {
    font-weight: 700;
    font-size: 0.9rem
}

.spot-ctx {
    font-size: 0.72rem;
    color: var(--muted)
}

.g-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 24px;
    border-radius: 30px;
    max-width: 360px;
    margin: 0 auto;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.g-badge:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.2)
}

.testi-submit {
    max-width: 620px;
    width: 100%;
    margin: 26px auto 0;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px;
}

.testi-submit h3 {
    margin: 0 0 14px;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

#testimonial-form {
    display: grid;
    gap: 10px;
}

#testimonial-form input,
#testimonial-form select,
#testimonial-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 19, 35, 0.9);
    color: var(--text);
    border-radius: 10px;
    padding: 11px 12px;
}

#testimonial-form textarea {
    min-height: 90px;
    resize: vertical;
}

.testi-msg {
    margin: 2px 2px 0;
    min-height: 18px;
    font-size: 0.78rem;
    color: var(--muted);
}

.testi-msg.ok {
    color: #22c55e;
}

.testi-msg.err {
    color: #f87171;
}

/* ===== BOOKING — WARM GLOW ===== */
#booking {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-deep), #080d14 50%, var(--bg-section));
    position: relative;
}

#booking::before {
    content: '';
    position: absolute;
    top: -10%;
    right: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at top right, rgba(56, 189, 248, 0.04) 0%, transparent 50%);
    pointer-events: none
}

#booking::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at bottom left, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none
}

.book-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.urgency {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--coral);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 28px
}

.urg-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: pulse 1.5s ease infinite;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.4)
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.6)
    }
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px
}

.cc {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--dim);
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.cc-gold {
    border-left-color: var(--gold-bright)
}

.cc-green {
    border-left-color: var(--green)
}

.cc-steel {
    border-left-color: var(--dim)
}

.cc:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.06)
}

.cc strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 1px;
    font-weight: 700
}

.cc span {
    font-size: 0.7rem;
    color: var(--muted)
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--muted)
}

.trust-badges span {
    display: flex;
    align-items: center;
    gap: 8px
}

.book-right {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(8px);
}

.book-right h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 8px
}

.book-right>p {
    color: var(--muted);
    font-size: 0.82rem;
    margin-bottom: 24px
}

#booking-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

#booking-form input,
#booking-form select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 15px 18px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.88rem;
    transition: all 0.3s;
    min-height: 50px;
}

#booking-form input:focus,
#booking-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.08)
}

#booking-form input::placeholder {
    color: var(--muted)
}

#booking-form select {
    appearance: none;
    cursor: pointer
}

#booking-form select option {
    background: #101624;
    color: #f0f4f8;
}

.form-urg {
    text-align: center;
    font-size: 0.75rem;
    color: var(--coral);
    margin-top: 8px;
    font-weight: 600
}

.success-icon {
    margin-bottom: 16px
}

#form-success {
    text-align: center;
    padding: 40px 0
}

#form-success h3 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-bright), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px
}

#form-success p {
    color: var(--muted);
    margin-bottom: 24px
}

/* ===== LOCATION ===== */
#location {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-section), var(--bg-deep));
}

.loc-grid {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 28px
}

.loc-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold-bright);
    border-radius: 20px;
    padding: 32px 40px;
    backdrop-filter: blur(12px);
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
}

.loc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.loc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.loc-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white);
    letter-spacing: 1px;
}

.loc-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
    font-family: inherit;
}

.loc-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    font-size: 0.8rem;
    color: var(--muted)
}

.loc-info span {
    display: flex;
    align-items: center;
    gap: 6px
}

.loc-info a {
    color: var(--gold)
}

.map-wrap {
    max-width: 900px;
    margin: 0 auto 32px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    height: 350px
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg)
}

.loc-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    margin: 0 auto
}

.loc-gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s
}

.loc-gallery img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4)
}

/* ===== GOVERNMENT LINKS ===== */
#govt-links {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-section), var(--bg-deep));
    position: relative;
}

.govt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.govt-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    text-decoration: none;
    color: inherit;
}

.govt-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 40px rgba(56, 189, 248, 0.04);
}

.govt-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.govt-info {
    flex: 1;
    min-width: 0;
}

.govt-info h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--white);
}

.govt-info p {
    font-size: 0.72rem;
    color: var(--muted);
    font-family: 'JetBrains Mono', monospace;
}

.govt-tags {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.govt-tags span {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(56, 189, 248, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.08);
    color: var(--muted);
    transition: all 0.3s;
}

.govt-card:hover .govt-tags span {
    color: var(--amber);
    border-color: rgba(56, 189, 248, 0.15);
}

.govt-arrow {
    position: absolute;
    top: 22px;
    right: 20px;
    color: var(--dim);
    transition: all 0.3s;
}

.govt-card:hover .govt-arrow {
    color: var(--gold-bright);
    transform: translate(2px, -2px);
}

.govt-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.65;
}

.govt-disclaimer svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== GAME BANNER ===== */
#game-banner {
    padding: 40px 5%;
    background: var(--bg-deep);
}

.game-banner-inner {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 36px 40px;
    border-radius: 20px;
    background: rgba(56, 189, 248, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    overflow: hidden;
    transition: all 0.4s;
}

.game-banner-inner:hover {
    border-color: rgba(56, 189, 248, 0.2);
    box-shadow: 0 0 80px rgba(56, 189, 248, 0.06);
}

.game-banner-glow {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.game-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.game-banner-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.06);
    border: 1px solid rgba(56, 189, 248, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.game-banner-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 20%, #38bdf8 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-banner-text p {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

.game-banner-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(180deg, var(--bg-deep), #030308);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 70px 5% 24px;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto 44px
}

.ft-logo {
    width: 80px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.15))
}

.ft-tagline {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
    margin-bottom: 16px
}

.ft-rating {
    color: var(--gold);
    font-size: 0.82rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px
}

.ft-ctas {
    display: none;
}

.ft-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--amber)
}

.ft-col a {
    display: block;
    color: var(--muted);
    font-size: 0.8rem;
    padding: 5px 0;
    transition: all 0.3s
}

.ft-col a:hover {
    color: var(--white);
    transform: translateX(4px)
}

.ft-col p {
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6
}

/* Contact column (last) — right-aligned */
.ft-col:last-child {
    text-align: right;
}
.ft-col:last-child h4 {
    text-align: right;
}
.ft-col:last-child a,
.ft-col:last-child p {
    text-align: right;
    margin-left: auto;
}
.ft-col:last-child a:hover {
    transform: translateX(-4px) !important;
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 24px;
    font-size: 0.68rem;
    color: var(--muted)
}

/* ===== AGENCY STRIP ===== */
.agency-strip {
    background: #010103;
    padding: 16px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.agency-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.7rem;
    color: var(--dim);
}

.agency-inner a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.agency-inner a:hover {
    color: var(--gold-bright);
}

.agency-div {
    color: rgba(255, 255, 255, 0.1);
}

/* ===== FLOATING ===== */
.fab {
    position: fixed;
    z-index: 8000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s
}

.fab:hover {
    transform: scale(1.12)
}

.fab-wa {
    bottom: 90px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: var(--green);
    animation: fabP 2s ease infinite;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3)
}

@keyframes fabP {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4)
    }

    50% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0)
    }
}

.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    height: 56px
}

.mb-call,
.mb-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 1px
}

.mb-call {
    width: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--amber));
    color: #fff
}

.mb-wa {
    width: 50%;
    background: var(--green);
    color: #fff
}

/* ===== EXIT POPUP ===== */
.popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 99998
}

.popup-box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 99999;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    border-radius: 24px;
    padding: 44px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes popIn {
    to {
        transform: translate(-50%, -50%) scale(1)
    }
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s
}

.popup-close:hover {
    color: var(--white)
}

.popup-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px
}

.popup-box>p {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 24px
}

.popup-dismiss {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.7rem;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.3s
}

.popup-dismiss:hover {
    color: var(--white)
}

/* ===== RESPONSIVE ===== */

/* ---- Tablet & Mobile (≤ 900px) ---- */
@media (max-width: 900px) {

    /* Header */
    .h-nav,
    .h-phone {
        display: none
    }

    .h-menu {
        display: block
    }

    #mobile-nav {
        display: flex;
        transform: translateY(-120%)
    }

    /* Hero */
    .hero-car {
        display: none
    }

    .hero-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #hero {
        padding: 120px 20px 60px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2.6rem, 10vw, 4rem)
    }

    .hud-tr,
    .hud-bl {
        display: none
    }

    /* Fixed Speedometer — compact on mobile */
    #fixed-speedo {
        display: flex !important;
        left: 10px;
        top: auto;
        bottom: 70px;
        transform: none;
        gap: 4px
    }

    .fs-gauge {
        width: 70px;
        height: 70px
    }

    .fs-val {
        font-size: 1rem
    }

    .fs-unit {
        font-size: 0.4rem;
        letter-spacing: 1px
    }

    .fs-gear {
        font-size: 0.85rem;
        padding: 2px 8px
        /* original styles restored, if any */
    }
    }

    .fs-info {
        display: none
    }

    /* Loader — fit mobile viewport */
    .loader-inner {
        padding: 0 20px;
        max-width: 100vw;
        overflow: hidden
    }

    .loader-logo {
        width: 140px !important;
        height: 140px !important
    }

    .loader-dest-text {
        font-size: 1rem;
        letter-spacing: 3px
    }

    .loader-dest-label {
        font-size: 0.55rem;
        letter-spacing: 4px
    }

    .loader-progress,
    .loader-bottom {
        width: 200px
    }

    .speedo-svg {
        width: 80px
    }

    /* Trust bar */
    .trust-inner {
        flex-wrap: wrap
    }

    .trust-div {
        display: none
    }

    .trust-item {
        flex: 1 1 45%;
        padding: 10px 4px
    }

    .trust-num {
        font-size: 2.2rem
    }

    /* Services */
    .svc-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 16px
    }

    #services {
        padding: 60px 16px
    }

    /* Why Us */
    #why-us {
        padding: 60px 16px
    }

    .why-grid {
        gap: 0 20px
    }

    /* Areas */
    #areas {
        padding: 50px 16px
    }

    .area-pills {
        gap: 8px
    }

    .area-pill {
        padding: 8px 16px;
        font-size: 0.75rem
    }

    /* Video Showcase */
    #video-showcase {
        padding: 50px 16px
    }

    .vid-frame {
        border-radius: 14px
    }

    .vid-play-btn {
        width: 60px;
        height: 60px
    }

    .vid-play-btn svg {
        width: 24px;
        height: 24px
    }

    .vid-play-label {
        font-size: 0.6rem;
        letter-spacing: 2px
    }

    .vid-stats {
        gap: 16px
    }

    .vid-tabs {
        display: flex;
        width: 100%;
        margin-bottom: 14px;
    }

    .vid-tab {
        flex: 1;
        padding: 8px 10px;
        font-size: 0.68rem;
        letter-spacing: 0.8px;
    }

    .vid-stat {
        font-size: 0.7rem
    }

    .vid-strip {
        display: none
    }

    /* Testimonials */
    #testimonials {
        padding: 60px 16px
    }

    .spotlight {
        padding: 24px 16px;
        margin: 0 0 24px
    }

    .testi-submit {
        margin-top: 18px;
        padding: 14px;
    }

    /* Booking */
    #booking {
        padding: 60px 16px
    }

    .book-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .book-right {
        padding: 24px 20px
    }

    /* Location */
    #location {
        padding: 60px 16px
    }

    .loc-grid {
        grid-template-columns: 1fr
    }

    .loc-gallery {
        grid-template-columns: 1fr
    }

    .map-wrap {
        height: 250px;
        border-radius: 12px
    }

    /* Government Links */
    #govt-links {
        padding: 60px 16px
    }

    .govt-grid {
        grid-template-columns: 1fr
    }

    .govt-card {
        padding: 18px 16px
    }

    .govt-disclaimer {
        padding: 16px;
        font-size: 0.7rem
    }

    /* Footer */
    .ft-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }

    /* Logo column spans both columns on top */
    .ft-col:first-child {
        grid-column: 1 / -1;
    }

    /* Contact column stays right-aligned */
    .ft-col:last-child {
        text-align: right;
    }

    .ft-ctas {
        display: none;
        /* Hide on mobile too */
    }

    .ft-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center
    }

    /* Agency Strip Mobile */
    .agency-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .agency-div {
        display: none;
    }

    /* Game Banner Mobile Fix */
    .game-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 28px 20px;
    }

    .game-banner-content {
        flex-direction: column;
    }

    /* Floating WhatsApp Button on Mobile */
    .mob-bar {
        display: none;
        /* Hide the full width bottom bar */
    }

    .fab-wa {
        bottom: 24px;
        right: 16px;
        width: 60px;
        height: 60px;
        z-index: 9999;
    }

    body {
        padding-bottom: 0;
    }

    /* Section spacing */
    .sec-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem)
    }

    .sec-sub {
        font-size: 0.85rem;
        margin-bottom: 36px;
        padding: 0 8px
    }

    .sec-label {
        font-size: 0.6rem;
        letter-spacing: 3px
    }

    /* Popup */
    .popup-box {
        padding: 28px 20px;
        width: 92%
    }
}

/* ---- Small Phones (≤ 480px) ---- */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2.2rem, 12vw, 3rem)
    }

    .hero-ctas {
        flex-direction: column
    }

    .hero-ctas .cta {
        width: 100%;
        justify-content: center
    }

    .hero-pre {
        font-size: 0.6rem;
        letter-spacing: 2px;
        padding: 5px 12px
    }

    .hero-sub {
        font-size: 0.88rem
    }

    #hero {
        padding: 90px 16px 30px
    }

    .svc-card {
        padding: 24px 20px
    }

    .svc-img {
        height: 140px
    }

    .cc {
        padding: 12px 14px
    }

    .cc strong {
        font-size: 0.68rem
    }

    .cc span {
        font-size: 0.65rem
    }

    .trust-num {
        font-size: 1.8rem
    }

    .trust-label {
        font-size: 0.6rem
    }

    .rev-card {
        min-width: 260px;
        max-width: 260px;
        padding: 16px
    }

    .loc-card {
        padding: 20px 16px
    }

    .why-items {
        gap: 32px
    }
}

/* ---- Very small screens (≤ 360px) ---- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 2rem
    }

    .loader-logo {
        width: 110px !important;
        height: 110px !important
    }

    .loader-progress,
    .loader-bottom {
        width: 180px
    }

    .loader-dest-text {
        font-size: 0.85rem;
        letter-spacing: 2px
    }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important
    }
}

/* ================================================================
   MOBILE RESPONSIVE FIX — Clean definitive version
   ================================================================ */

/* 1. Global: prevent body-level horizontal scroll */
html { overflow-x: hidden; }
html, body { width: 100%; max-width: 100%; }

/* 2. Images always scale */
img, video { max-width: 100%; }

/* 3. Everything EXCEPT testimonials (which has its OWN overflow:hidden) */
#hero, #services, #why-us, #location, #booking, #govt-links, #game-banner,
header, footer, #header, #mobile-nav { overflow-x: hidden; }

/* 4. Map wrapper */
.map-wrap { overflow: hidden; max-width: 100%; }

/* ---- Phones  640px ---- */
@media (max-width: 640px) {
    /* Header: hide desktop nav, show hamburger */
    .h-nav { display: none !important; }
    .h-phone { display: none !important; }
    .h-menu { display: flex !important; align-items: center; justify-content: center; padding: 6px; }
    #header { padding: 0 16px; }
    .h-logo-text { font-size: 0.78rem; letter-spacing: 0.5px; gap: 4px; }

    /* Side padding on sections — but NOT overflow:hidden here (testimonials!) */
    section { padding-left: 16px !important; padding-right: 16px !important; }

    /* Grids collapse to single column */
    .svc-grid, .why-grid, .trust-grid, .ft-cols, .loc-grid, .booking-grid {
        grid-template-columns: 1fr !important;
        width: 100%;
    }

    /* General cards — but NOT rev-card which needs min-width for the marquee */
    .svc-card, .why-card, .loc-card {
        width: 100% !important;
        max-width: 100% !important;
    }

    .ft-col { width: 100%; }
    #hero { padding-left: 16px; padding-right: 16px; }

    .trust-row, .stats-row, .cc-row {
        flex-wrap: wrap !important;
        width: 100%;
    }

    /* Forms */
    form { width: 100%; max-width: 100%; box-sizing: border-box; }
    input, select, textarea { max-width: 100%; box-sizing: border-box; width: 100%; }
    iframe { width: 100% !important; max-width: 100% !important; }
}

/* ---- Tight Android / Motorola ≤ 420px ---- */
@media (max-width: 420px) {
    .h-logo-text { font-size: 0.72rem; }
    .h-logo-img { width: 30px; height: 30px; }
}

/* ================================================================
   PREMIUM STYLING EXPANSION — Professional Overhaul
   ================================================================ */

/* ----- GLOBAL: Premium gradient shimmer keyframe ----- */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes borderGlow {
    0%, 100% { box-shadow: 0 0 12px rgba(56,189,248,0.15), 0 0 0 1px rgba(56,189,248,0.12); }
    50% { box-shadow: 0 0 28px rgba(56,189,248,0.35), 0 0 0 1px rgba(56,189,248,0.3); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes gradientShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----- HEADER: Enhanced glassmorphism on scroll ----- */
#header.scrolled {
    background: rgba(4, 8, 16, 0.88) !important;
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-bottom: 1px solid rgba(56, 189, 248, 0.08) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.h-phone {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #7dd3fc) !important;
    box-shadow: 0 2px 14px rgba(56, 189, 248, 0.28) !important;
    letter-spacing: 0.3px;
}
.h-phone:hover {
    box-shadow: 0 6px 28px rgba(56, 189, 248, 0.45) !important;
    transform: translateY(-2px) scale(1.02);
}
.h-nav a::after {
    background: linear-gradient(90deg, var(--cyan), var(--gold-bright), var(--amber)) !important;
    height: 2px !important;
}

/* ----- HERO: Richer overlay + CTA upgrade ----- */
.hero-overlay {
    background:
        linear-gradient(135deg, rgba(4,8,16,0.95) 0%, rgba(4,8,16,0.55) 40%, rgba(6,15,28,0.75) 70%, rgba(4,8,16,0.9) 100%),
        radial-gradient(ellipse at 15% 85%, rgba(139,92,246,0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 15%, rgba(56,189,248,0.12) 0%, transparent 50%) !important;
}
.hero-pre {
    background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(139,92,246,0.08)) !important;
    border: 1px solid rgba(56,189,248,0.22) !important;
    backdrop-filter: blur(8px);
}
.cta-gold {
    background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 40%, #7dd3fc 100%) !important;
    box-shadow: 0 4px 20px rgba(56,189,248,0.35), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    color: #02080f !important;
    font-weight: 800 !important;
}
.cta-gold:hover {
    box-shadow: 0 12px 44px rgba(56,189,248,0.55), inset 0 1px 0 rgba(255,255,255,0.25) !important;
    transform: translateY(-4px) scale(1.03) !important;
}
.cta-outline {
    border: 1.5px solid rgba(56,189,248,0.3) !important;
    background: rgba(56,189,248,0.06) !important;
    backdrop-filter: blur(14px) saturate(160%) !important;
}
.cta-outline:hover {
    background: rgba(56,189,248,0.14) !important;
    border-color: rgba(56,189,248,0.5) !important;
    box-shadow: 0 0 20px rgba(56,189,248,0.15) !important;
}

/* ----- TRUST BAR: Glowing number shimmer ----- */
#trust-bar {
    border-top: 1px solid rgba(56,189,248,0.1) !important;
    border-bottom: 1px solid rgba(56,189,248,0.06) !important;
    background: linear-gradient(180deg, rgba(4,8,16,1) 0%, rgba(6,13,26,1) 50%, rgba(6,13,26,1) 100%) !important;
    position: relative;
}
#trust-bar::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.4), var(--cyan), rgba(56,189,248,0.4), transparent);
    pointer-events: none;
}
.trust-num {
    background: linear-gradient(135deg, #fff 0%, var(--gold-bright) 40%, var(--cyan) 80%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 0 8px rgba(56,189,248,0.3));
}
.trust-item {
    position: relative;
    transition: transform 0.3s;
}
.trust-item:hover {
    transform: translateY(-4px);
}
.trust-div {
    background: linear-gradient(180deg, transparent, rgba(56,189,248,0.15), transparent) !important;
}

/* ----- SECTION LABELS: More premium colour ----- */
.sec-label {
    color: var(--cyan) !important;
    letter-spacing: 6px !important;
    background: rgba(34,211,238,0.06);
    display: inline-block !important;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(34,211,238,0.14);
}
.sec-title {
    background: linear-gradient(135deg, #ffffff 30%, #e2f8ff 60%, var(--gold-bright) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* ----- SERVICES: Premium card glow ----- */
.svc-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(56,189,248,0.02) 50%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.svc-card:hover {
    transform: translateY(-14px) scale(1.03) !important;
    border-color: rgba(56,189,248,0.35) !important;
    box-shadow: 0 32px 80px rgba(0,0,0,0.65), 0 0 50px rgba(56,189,248,0.18), inset 0 1px 0 rgba(255,255,255,0.1) !important;
}
.svc-card h3 {
    background: linear-gradient(135deg, #fff 40%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px !important;
    font-size: 1.05rem !important;
}
.svc-img {
    border-radius: 16px !important;
    border: 1px solid rgba(56,189,248,0.08) !important;
    transition: all 0.4s !important;
    filter: brightness(0.95) saturate(1.1);
}
.svc-card:hover .svc-img {
    filter: brightness(1.05) saturate(1.2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.svc-card li {
    border-bottom: 1px solid rgba(56,189,248,0.05) !important;
    transition: color 0.3s;
}
.svc-card li:hover {
    color: var(--white);
}
.svc-card li::before {
    content: '→  ' !important;
    color: var(--cyan) !important;
}
.svc-badge {
    background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(56,189,248,0.05)) !important;
    border: 1px solid rgba(56,189,248,0.18) !important;
    color: var(--gold-bright) !important;
    font-weight: 800 !important;
}

/* ----- WHY US: Enhanced items----- */
#why-us {
    background: linear-gradient(180deg, var(--bg-section), #050d1c 45%, var(--bg-section) 100%) !important;
}
.why-item {
    background: rgba(255,255,255,0.02);
    border-radius: 18px;
    padding: 24px 28px;
    border: 1px solid rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    transition: all 0.5s cubic-bezier(0.22,1,0.36,1) !important;
    margin-bottom: 4px;
}
.why-item.visible {
    border-color: rgba(56,189,248,0.08);
}
.why-item:hover {
    background: rgba(56,189,248,0.04);
    border-color: rgba(56,189,248,0.18);
    transform: translateX(8px) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.why-item h4 {
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: var(--white);
    margin: 8px 0 10px !important;
}
.why-item p {
    line-height: 1.7 !important;
    color: #94a3b8 !important;
}
.why-num {
    font-size: 0.72rem !important;
    font-weight: 900 !important;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--cyan), var(--gold-bright)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-transform: uppercase;
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(56,189,248,0.12);
    background-color: rgba(56,189,248,0.04) !important;
    -webkit-text-fill-color: unset;
    color: var(--cyan);
    font-family: 'JetBrains Mono', monospace;
}

/* ----- AREAS: Upgrade pills ----- */
#areas {
    background: linear-gradient(180deg, var(--bg-section), #06091a 50%, var(--bg-section) 100%) !important;
}
.area-pill {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1) !important;
    color: #94a3b8 !important;
    font-weight: 600 !important;
}
.area-pill:hover {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #22d3ee) !important;
    color: #000 !important;
    border-color: transparent !important;
    box-shadow: 0 8px 28px rgba(56,189,248,0.3) !important;
    transform: scale(1.1) translateY(-2px) !important;
}
.area-note a {
    color: var(--cyan) !important;
    text-decoration-color: rgba(34,211,238,0.3) !important;
}

/* ----- TESTIMONIALS: Upgraded cards & spotlight ----- */
.rev-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(56,189,248,0.02) 100%) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
    transition: all 0.35s !important;
}
.rev-card:hover {
    border-color: rgba(56,189,248,0.2) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 25px rgba(56,189,248,0.08) !important;
    transform: translateY(-4px);
}
.rev-text {
    color: rgba(240,244,248,0.85) !important;
    line-height: 1.7 !important;
}
.rev-stars {
    letter-spacing: 2px !important;
}
.spotlight {
    background: linear-gradient(145deg, rgba(56,189,248,0.05) 0%, rgba(255,255,255,0.03) 60%, rgba(139,92,246,0.04) 100%) !important;
    border: 1px solid rgba(56,189,248,0.15) !important;
    border-radius: 28px !important;
    box-shadow: 0 0 60px rgba(56,189,248,0.06), 0 20px 60px rgba(0,0,0,0.4) !important;
    animation: borderGlow 4s ease-in-out infinite;
}
.g-badge {
    border: 1px solid rgba(56,189,248,0.2) !important;
    background: rgba(56,189,248,0.04) !important;
    transition: all 0.35s !important;
}
.g-badge:hover {
    background: rgba(56,189,248,0.1) !important;
    border-color: rgba(56,189,248,0.35) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56,189,248,0.12) !important;
}

/* ----- GOOGLE QR SECTION: Premium card ----- */
.google-qr-section {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(56,189,248,0.04) 50%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(56,189,248,0.18);
    border-radius: 24px;
    padding: 28px 36px;
    margin: 0 auto;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 40px rgba(56,189,248,0.06), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
    animation: borderGlow 5s ease-in-out infinite;
}
.google-qr-section:hover {
    transform: translateY(-6px);
    border-color: rgba(56,189,248,0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(56,189,248,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
}
.google-qr-link-wrap {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: #ffffff;
    padding: 14px;
}
.google-qr-link-wrap:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.google-qr-img {
    display: block;
    width: 340px;
    height: 340px;
    object-fit: contain;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
.google-qr-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.4;
}
.google-qr-link {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold-bright);
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid rgba(56,189,248,0.25);
    background: rgba(56,189,248,0.07);
    transition: all 0.3s;
    display: inline-block;
}
.google-qr-link:hover {
    background: rgba(56,189,248,0.15);
    border-color: rgba(56,189,248,0.45);
    color: var(--cyan);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(56,189,248,0.15);
}
@media (max-width: 480px) {
    .google-qr-section { padding: 20px 20px; }
    .google-qr-img { width: 260px; height: 260px; }
}
}

/* ----- FOOTER: 2-column Quick Links grid ----- */
.ft-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
    margin-top: 4px;
}
.ft-links-col {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ft-links-col a {
    display: block;
    padding: 5px 0;
    font-size: 0.85rem;
    color: #64748b !important;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}
.ft-links-col a:hover {
    color: var(--gold-bright) !important;
    transform: translateX(4px) !important;
}

/* ----- TESTI SUBMIT FORM: Premium inputs ----- */
.testi-submit {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(56,189,248,0.02) 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 24px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.testi-submit h3 {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #fff 40%, var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
#testimonial-form input,
#testimonial-form select,
#testimonial-form textarea {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 12px !important;
    color: var(--white) !important;
    font-family: inherit !important;
    transition: border-color 0.3s, box-shadow 0.3s !important;
    padding: 13px 14px !important;
}
#testimonial-form input:focus,
#testimonial-form select:focus,
#testimonial-form textarea:focus {
    outline: none;
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 3px rgba(34,211,238,0.12) !important;
}

/* ----- BOOKING: Premium form inputs ----- */
.book-right {
    background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(56,189,248,0.03) 50%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(56,189,248,0.1) !important;
    border-radius: 28px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06) !important;
}
.book-right h3 {
    background: linear-gradient(135deg, #fff 40%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem !important;
}
#booking-form input,
#booking-form select {
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 14px !important;
    transition: all 0.3s !important;
}
#booking-form input:focus,
#booking-form select:focus {
    border-color: var(--cyan) !important;
    box-shadow: 0 0 0 3px rgba(34,211,238,0.12), 0 4px 16px rgba(56,189,248,0.1) !important;
    background: rgba(56,189,248,0.05) !important;
}
#booking-form input:hover,
#booking-form select:hover {
    border-color: rgba(56,189,248,0.25) !important;
}
.cc {
    border-radius: 16px !important;
    transition: all 0.35s !important;
    background: rgba(255,255,255,0.02) !important;
}
.cc:hover {
    transform: translateX(8px) !important;
    background: rgba(56,189,248,0.05) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.urgency {
    background: rgba(255,68,68,0.06);
    border-radius: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(255,68,68,0.12);
}

/* ----- LOCATION: Enhanced cards & map ----- */
.loc-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(56,189,248,0.03) 50%, rgba(255,255,255,0.02) 100%) !important;
    border-top: 2px solid transparent !important;
    border-image: linear-gradient(90deg, var(--gold-bright), var(--cyan), var(--amber)) 1 !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.map-wrap {
    border: 1px solid rgba(56,189,248,0.12) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 40px rgba(56,189,248,0.05) !important;
    border-radius: 24px !important;
}
.loc-gallery img {
    border-radius: 18px !important;
    border: 1px solid rgba(56,189,248,0.08) !important;
    filter: brightness(0.92) saturate(1.05);
    transition: all 0.45s !important;
}
.loc-gallery img:hover {
    transform: scale(1.05) translateY(-4px) !important;
    filter: brightness(1.05) saturate(1.15);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 25px rgba(56,189,248,0.1) !important;
    border-color: rgba(56,189,248,0.2) !important;
}

/* ----- GOVERNMENT LINKS: Upgrade cards ----- */
.govt-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(56,189,248,0.02) 100%) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.govt-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(56,189,248,0.2) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 40px rgba(56,189,248,0.07) !important;
    background: rgba(56,189,248,0.04) !important;
}
.govt-icon {
    background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(56,189,248,0.04)) !important;
    border: 1px solid rgba(56,189,248,0.15) !important;
}

/* ----- GAME BANNER: Bolder glow ----- */
.game-banner-inner {
    background: linear-gradient(135deg, rgba(56,189,248,0.05) 0%, rgba(139,92,246,0.04) 50%, rgba(56,189,248,0.03) 100%) !important;
    border: 1px solid rgba(56,189,248,0.14) !important;
    box-shadow: 0 0 0 1px rgba(56,189,248,0.06), 0 8px 40px rgba(0,0,0,0.35) !important;
}
.game-banner-inner:hover {
    border-color: rgba(56,189,248,0.28) !important;
    box-shadow: 0 0 100px rgba(56,189,248,0.1), 0 20px 60px rgba(0,0,0,0.4) !important;
}
.game-banner-icon {
    background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(139,92,246,0.08)) !important;
    border: 1px solid rgba(56,189,248,0.18) !important;
    box-shadow: 0 4px 16px rgba(56,189,248,0.12);
}

/* ----- FOOTER: Premium dark gradient ----- */
footer {
    background: linear-gradient(180deg, var(--bg-deep) 0%, #020509 100%) !important;
    border-top: 1px solid rgba(56,189,248,0.08) !important;
    position: relative;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56,189,248,0.3), var(--cyan), rgba(56,189,248,0.3), transparent);
    pointer-events: none;
}
.ft-col h4 {
    color: var(--gold-bright) !important;
    font-size: 0.82rem !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}
.ft-col a {
    color: #64748b !important;
    transition: all 0.3s !important;
}
.ft-col a:hover {
    color: var(--gold-bright) !important;
    transform: translateX(6px) !important;
}
.ft-tagline {
    color: #475569 !important;
}
.ft-rating {
    background: rgba(56,189,248,0.05);
    border: 1px solid rgba(56,189,248,0.1);
    border-radius: 20px;
    padding: 6px 14px;
    display: inline-flex !important;
    width: fit-content;
}
.ft-bottom {
    border-top: 1px solid rgba(56,189,248,0.06) !important;
}
.ft-bottom a {
    color: var(--gold-bright) !important;
}

/* ----- EXIT POPUP: More dramatic ----- */
.popup-box {
    background: linear-gradient(145deg, rgba(10,18,32,0.98) 0%, rgba(4,8,20,0.98) 100%) !important;
    border: 1px solid rgba(56,189,248,0.18) !important;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 80px rgba(56,189,248,0.08) !important;
}

/* ----- MOBILE NAV: Upgrade ----- */
#mobile-nav {
    background: rgba(4,8,18,0.99) !important;
    border-bottom: 1px solid rgba(56,189,248,0.08) !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7) !important;
}
#mobile-nav a:hover {
    color: var(--cyan) !important;
}
.mn-call {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8, #22d3ee) !important;
    box-shadow: 0 6px 20px rgba(56,189,248,0.35) !important;
}

/* ----- SCROLL PROGRESS: Wider & more vivid ----- */
#scroll-progress {
    height: 3px !important;
    background: linear-gradient(90deg, var(--purple), var(--cyan), var(--gold-bright), var(--amber)) !important;
    box-shadow: 0 0 12px rgba(56,189,248,0.4) !important;
}

/* Stats Section Styling */
.stats-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .stats-section {
        margin: 40px auto;
        padding: 0 16px;
    }
}

 
 / *   S t a t s   S e c t i o n   S t y l i n g   * / 
 . s t a t s - s e c t i o n   { 
         m a x - w i d t h :   1 2 0 0 p x ; 
         m a r g i n :   6 0 p x   a u t o ; 
         p a d d i n g :   0   2 0 p x ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . s t a t s - s e c t i o n   { 
                 m a r g i n :   4 0 p x   a u t o ; 
                 p a d d i n g :   0   1 6 p x ; 
         } 
 }  
 