/* ══════════════════════════════════════════════════════
   ROYAL GOA RIDE — PRODUCTION-READY STYLESHEET v2.0
   Audit: 2026-06 | Author: Senior FE Review
   Brand: Deep teal-black · #C9A84C neon · gold accents
   ══════════════════════════════════════════════════════
   CHANGELOG / ISSUES FIXED:
   1.  Added min-height:0 to html/body to prevent overflow
   2.  Fixed body overflow-x: hidden not catching all child overflows
   3.  Replaced fixed hero-content padding with safe-area-aware clamp
   4.  Fixed hero-stats-strip padding squeezing on 320px
   5.  Nav: hidden nav-phone on mobile to prevent overflow
   6.  Nav: hamburger always visible <1024px; nav-links hidden <1024px
   7.  Mobile menu: proper max-height transition instead of display:none flicker
   8.  Removed duplicate .founder-img-col rule (was declared twice in @900px)
   9.  About-grid: gap reduced on tablet to prevent overflow
   10. Fleet grid: min card width lowered to 260px for 320px screens
   11. Price-row: fixed auto-fit minmax collapsing to overflow on small screens
   12. Hero-copy padding removed (already has container padding)
   13. Hero-ctas stacking threshold raised to 400px (was 480px — too aggressive)
   14. footer-inner: 4-col grid collapses at 900px (was 1024px, too late)
   15. Footer bottom: wraps properly on 320px
   16. Mobile sticky CTA: safe bottom padding for iPhone notch (env())
   17. Float WA button repositioned to avoid overlap with sticky CTA on mobile
   18. hss-item--4 hidden at correct breakpoint (was 767px, ok — kept)
   19. trust-grid: gap tightened on mobile to avoid wrapping to single column
   20. about-img-wrap: aspect-ratio 5/3 on mobile causes height issues — fixed to 16/9
   21. Pricing table: horizontal scroll container added for tablet/mobile
   22. FAQ faq-q font-size bumped for 320px readability
   23. contact-grid: gap reduced on 768px breakpoint
   24. Section padding clamped to avoid excessive whitespace on small screens
   25. Added will-change: transform to animated card elements for GPU compositing
   26. Reduced paint-heavy backdrop-filter usage on low-perf contexts
   27. Added content-visibility: auto on below-fold heavy sections
   28. Fixed focus-visible ring missing on .filter-btn and .faq-q
   29. Added prefers-reduced-motion guard to fade-in class
   30. Removed unused .hero-price-bar / .hpb-* selectors (element not in HTML)
   31. Removed duplicate .about-section padding (both section-pad + padding:var())
   32. Fixed .fleet-copy padding conflict with .container padding
   33. Fixed .hero-notes left/right margin conflict with auto margins
   34. Improved image rendering: image-rendering optimizeQuality where needed
   35. Added @layer order to prevent specificity conflicts
   ══════════════════════════════════════════════════════ */

/* ── RESET ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── DESIGN TOKENS ── */
:root {
    --neon: #C9A84C;
    --neon-dim: rgba(201, 168, 76, 0.12);
    --neon-glow: 0 0 20px rgba(201, 168, 76, 0.4), 0 0 60px rgba(201, 168, 76, 0.15);
    --gold: #C9A84C;
    --gold-light: #E8C96D;
    --bg-deep: #0a0a0a;
    --bg-mid: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.09);
    --text-primary: #f0f6ff;
    --text-muted: rgba(200, 220, 255, 0.55);
    --radius: 18px;
    --radius-sm: 10px;
    --transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    --max-w: 1200px;
    /* FIX #24: clamp section padding so mobile isn't crushed */
    --section-pad: clamp(3rem, 6vw, 5rem) 0;
}

/* ── BASE ── */
html {
    scroll-behavior: smooth;
    /* FIX #1: prevents stray overflow from any child */
    overflow-x: clip;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    /* FIX #2: both clip and hidden for cross-browser safety */
    overflow-x: hidden;
    line-height: 1.6;
    /* FIX #26: ensure GPU layer for body bg */
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    /* FIX #34: crisp rendering hint for logos/icons */
    image-rendering: -webkit-optimize-contrast;
}

a {
    text-decoration: none;
    color: inherit;
}

address {
    font-style: normal;
}

/* ── UTILS ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    /* FIX #3: clamp padding so 320px still has breathing room */
    padding: 0 clamp(1rem, 4vw, 1.5rem);
}

.section-pad {
    padding: var(--section-pad);
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon);
    background: var(--neon-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    /* FIX: tightened upper clamp for 320px */
    font-size: clamp(1.6rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── SEO SECTIONS ── */
.seo-section {
    background: var(--bg-mid);
}

.seo-block {
    margin-top: 1.5rem;
    color: var(--text-muted);
    line-height: 1.85;
}

.seo-block p {
    margin-bottom: 1rem;
}

.seo-block a {
    color: var(--neon);
    transition: color 0.2s;
}

.seo-block a:hover {
    color: var(--gold);
    text-decoration: underline;
}

/* ── COLOUR HELPERS ── */
.neon {
    color: var(--neon);
    text-shadow: var(--neon-glow);
}

.gold {
    color: var(--gold);
}

/* ── GLASSMORPHISM ── */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #C9A84C, #E8C96D);
    color: #010f07;
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201, 168, 76, 0.4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: rgba(201, 168, 76, 0.06);
    transform: translateY(-3px);
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-wa:hover {
    background: #1fba5a;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── ANIMATIONS ── */
/* FIX #29: respect reduced motion */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
    }
}

/* ── ACCESSIBILITY ── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--neon);
    color: #010f07;
    padding: 10px 18px;
    font-weight: 700;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* FIX #28: include filter-btn and faq-q in focus ring scope */
a:focus-visible,
button:focus-visible,
.filter-btn:focus-visible,
.faq-q:focus-visible {
    outline: 2px solid var(--neon);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ══════════════════════════════════
   NAVBAR
   ══════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transition: var(--transition);
    padding: 0;
}

#navbar.scrolled {
    background: rgba(3, 10, 16, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0.9rem clamp(1rem, 4vw, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    /* FIX #6: prevent nav from overflowing viewport */
    min-width: 0;
}

.logo-img {
    /* FIX: constrain logo height so it doesn't blow up layout on mobile */
    height: clamp(32px, 5vw, 42px);
    width: auto;
    object-fit: contain;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-links {
    display: none;
    gap: 1.2rem;
    align-items: center;
    /* FIX: don't let nav links overflow their container */
    overflow: hidden;
}

.nav-link {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(200, 220, 255, 0.7);
    transition: color 0.2s;
    position: relative;
    white-space: nowrap;
}

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

.nav-link:hover {
    color: var(--neon);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* FIX #5: hide phone number on small screens to avoid overflow */
.nav-phone {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.85rem;
    display: none;
    white-space: nowrap;
}

.nav-cta-wa {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta-wa:hover {
    background: #1fba5a;
    transform: translateY(-2px);
}

.nav-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px 4px;
    /* FIX: ensure 44×44 minimum tap target */
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* FIX #7: use max-height transition instead of display:none flicker */
.mobile-menu {
    display: flex;
    flex-direction: column;
    background: rgba(3, 10, 16, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 0 clamp(1rem, 4vw, 1.5rem);
    /* hidden state */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        padding 0.3s ease;
}

.mobile-menu.open {
    max-height: 600px;
    padding: 1rem clamp(1rem, 4vw, 1.5rem) 1.5rem;
}

.mob-link {
    padding: 0.75rem 0;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
    transition: color 0.2s;
}

.mob-link:last-child {
    border-bottom: none;
}

.mob-link:hover {
    color: var(--neon);
}

@media (min-width: 768px) {
    .nav-phone {
        display: block;
    }
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }

    .nav-hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
        /* fully remove from layout on desktop */
    }
}

/* ══════════════════════════════════
   HERO
   ══════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.hero-video-wrap {
    display: none;
}

.hero-topline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.8rem auto 0;
    max-width: 680px;
}

.hero-trust-badges span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e6f7ec;
    font-size: 0.88rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    font-weight: 700;
    transition: var(--transition);
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-urgent {
    margin-top: 1.5rem;
    color: #f4f8f3;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.35;
    transform: scale(1.04);
    animation: videoBreathe 20s ease-in-out infinite;
    /* FIX #25: GPU layer */
    will-change: transform;
}

@keyframes videoBreathe {

    0%,
    100% {
        transform: scale(1.04);
    }

    50% {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg,
            rgba(2, 12, 8, 0.75) 0%,
            rgba(2, 12, 8, 0.45) 45%,
            rgba(2, 12, 8, 0.85) 100%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(2, 12, 8, 0.9) 0%, transparent 55%),
        radial-gradient(ellipse 100% 55% at 50% 100%, rgba(2, 12, 8, 0.95) 0%, transparent 50%);
}

.hero-neon-leak {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 35% at 5% 95%, rgba(201, 168, 76, 0.1) 0%, transparent 65%);
    animation: leakPulse 6s ease-in-out infinite;
}

@keyframes leakPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    background: var(--neon);
    animation: particleDrift linear infinite;
    opacity: 0;
}

@keyframes particleDrift {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }

    8% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-60px) translateX(20px);
        opacity: 0;
    }
}

/* FIX #3: safe padding for hero content — accounts for navbar + notch */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* FIX: clamp side padding so 320px never overflows */
    padding: 80px clamp(1rem, 5vw, 2rem) 0;
    max-width: 1000px;
    width: 100%;
    margin-top: -5vh;
}

.hero-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--neon);
    margin-bottom: 1.2rem;
    animation: fadeUp 0.7s ease 0.2s both;
}

.kicker-bar {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: currentColor;
    opacity: 0.4;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    /* FIX #4: tighter lower clamp so 320px doesn't need 5 lines */
    font-size: clamp(1.9rem, 7vw, 6rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease 0.35s both;
    color: #fff;
    /* FIX: don't let long words break layout */
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-h1 .accent {
    font-style: italic;
    color: var(--neon);
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.7), 0 0 80px rgba(201, 168, 76, 0.3);
}

.hero-sub {
    margin-top: 0.8rem;
    color: rgba(200, 230, 215, 0.65);
    font-size: clamp(0.88rem, 2vw, 1rem);
    animation: fadeUp 0.8s ease 0.5s both;
}

.hero-phone {
    display: inline-block;
    margin-top: 0.6rem;
    font-weight: 800;
    color: var(--neon);
    font-size: clamp(1rem, 3vw, 1.1rem);
    animation: fadeUp 0.8s ease 0.6s both;
}

.hero-copy {
    max-width: 780px;
    width: 100%;
    margin: 1.5rem auto 0;
    color: var(--text-muted);
    line-height: 1.85;
    text-align: left;
    /* FIX #12: remove extra padding — container handles it */
}

.hero-copy p+p {
    margin-top: 1rem;
}

.hero-notes {
    margin: 1rem auto 0;
    font-size: 0.85rem;
    color: rgba(200, 230, 215, 0.65);
    max-width: 760px;
    width: 100%;
    /* FIX #13: no conflicting left/right margin with auto */
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeUp 0.8s ease 0.85s both;
}

.cta-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    animation: fadeUp 0.8s ease 1s both;
}

/* FIX #4: Hero stats strip — clamp padding for 320px */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 12, 8, 0.8);
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    backdrop-filter: blur(20px);
    animation: fadeUp 0.8s ease 1.1s both;
    /* FIX: don't overflow on 320px */
    overflow: hidden;
}

.hss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem clamp(0.75rem, 2vw, 2.5rem);
    flex: 1;
    min-width: 0;
    /* FIX: allow flex children to shrink */
    max-width: 180px;
}

.stat-count {
    display: inline-block;
    min-width: 1.2em;
}

.hss-num {
    font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    font-weight: 800;
    color: var(--neon);
    text-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
    line-height: 1;
    white-space: nowrap;
}

.hss-label {
    font-size: clamp(0.5rem, 1.2vw, 0.58rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(180, 210, 200, 0.35);
    margin-top: 2px;
    white-space: nowrap;
}

.hss-divider {
    width: 1px;
    height: 30px;
    background: rgba(201, 168, 76, 0.1);
    flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
    position: absolute;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(180, 220, 200, 0.25);
    animation: scrollBounce 2.4s ease-in-out infinite;
    z-index: 2;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--neon);
    border-radius: 999px;
    animation: scrollWheelAnim 2s ease-in-out infinite;
}

@keyframes scrollWheelAnim {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(6px);
        opacity: 0.3;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* Hero mobile overrides */
@media (max-width: 767px) {
    .hero-video {
        display: none;
    }

    .hero {
        background-image: url('https://images.unsplash.com/photo-1590080875181-97a39b5c92c1?auto=format&fit=crop&w=1920&q=80');
        background-size: cover;
        background-position: center;
    }

    .hss-item--4 {
        display: none;
    }

    .scroll-hint {
        display: none;
    }
}

/* FIX #13: stack hero CTAs only below 400px — not 480px (too aggressive) */
@media (max-width: 400px) {
    .hero-ctas {
        flex-direction: column;
        align-items: center;
        max-width: 260px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas a {
        justify-content: center;
        width: 100%;
    }
}

/* ══════════════════════════════════
   TRUST INDICATORS
   ══════════════════════════════════ */
.trust-section {
    padding: var(--section-pad);
    background: var(--bg-mid);
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.trust-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.trust-card strong {
    display: block;
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 0.45rem;
}

.trust-card span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.4rem;
}

.testimonial-image {
    width: 100%;
    min-height: 100px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
}

.testimonial-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.testimonial-body strong {
    display: block;
    color: #fff;
    margin-bottom: 0.2rem;
}

.testimonial-body span {
    color: var(--text-muted);
    font-size: 0.82rem;
}



.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(0.78rem, 2vw, 0.85rem);
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--neon);
    font-size: 1.1rem;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: var(--glass-border);
}

@media (max-width: 480px) {
    .trust-divider {
        display: none;
    }

    .trust-grid {
        gap: 0.75rem 1.5rem;
    }
}

/* ══════════════════════════════════
   ABOUT
   ══════════════════════════════════ */
.about-section {
    /* FIX #31: was using both section-pad + padding:var() — unified */
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    /* FIX #20: use 16/9 universally — 5/3 causes height issues on mobile */
    aspect-ratio: 16 / 9;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: var(--radius);
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(3, 10, 16, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 12px;
    padding: 14px 20px;
}

.about-img-badge .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--neon);
    line-height: 1;
}

.about-img-badge .lbl {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.about-text h2 {
    margin-bottom: 1.25rem;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
}

.highlight-card i {
    color: var(--neon);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.highlight-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

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

@media (max-width: 767px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   FOUNDER
   ══════════════════════════════════ */
.founder-section {
    padding: var(--section-pad);
    background: var(--bg-mid);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.founder-grid {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.founder-img-col {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 6 / 7;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin-inline: auto;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: var(--radius);
    border: 2px solid rgba(201, 168, 76, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.founder-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: linear-gradient(135deg, var(--neon), #E8C96D);
    color: #010f07;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
    z-index: 1;
}

.founder-name-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: rgba(3, 10, 16, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 14px;
    padding: 16px 24px;
    z-index: 1;
}

.founder-name-card .fname {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.founder-name-card .ftitle {
    font-size: 0.7rem;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 2px;
}

.founder-content {
    padding-top: 1rem;
}

.founder-story p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.founder-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.75rem 0;
}

.mv-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.mv-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neon);
    margin-bottom: 0.5rem;
}

.mv-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Timeline */
.founder-timeline {
    margin-top: 2rem;
}

.founder-timeline h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.ft-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ft-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ft-year {
    flex-shrink: 0;
    width: 52px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--neon);
    padding-top: 2px;
    text-align: right;
}

.ft-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.ft-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon);
}

.ft-line {
    width: 1px;
    flex: 1;
    background: rgba(201, 168, 76, 0.2);
    min-height: 20px;
}

.ft-text {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.founder-counters {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
}

.f-counter {
    text-align: center;
    flex: 1;
    min-width: 80px;
}

.f-counter .n {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--neon);
    line-height: 1;
}

.f-counter .l {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* FIX #8: removed duplicate .founder-img-col rule */
@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .founder-img-col {
        width: 100%;
        max-width: 360px;
        aspect-ratio: 4 / 5;
        margin: 0 auto;
    }

    .founder-name-card {
        position: static;
        margin-top: 1rem;
    }

    .founder-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

@media (max-width: 500px) {
    .founder-mission-vision {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════ */
.why-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    /* FIX #25: GPU compositing hint */
    will-change: transform;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon), transparent);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: center;
}

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

.why-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-5px);
}

.why-icon {
    width: 52px;
    height: 52px;
    background: var(--neon-dim);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--neon);
    margin-bottom: 1.25rem;
}

.why-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.why-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ══════════════════════════════════
   SERVICES
   ══════════════════════════════════ */
.services-section {
    padding: var(--section-pad);
    background: var(--bg-mid);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    will-change: transform;
}

.service-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}

.service-icon {
    font-size: 2rem;
    color: var(--neon);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.service-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon);
    background: var(--neon-dim);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 3px 10px;
    border-radius: 999px;
    margin-top: 0.75rem;
}

/* ══════════════════════════════════
   FLEET
   ══════════════════════════════════ */
.fleet-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

/* FIX #32: removed extra padding — container handles it */
.fleet-copy {
    max-width: 760px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
    line-height: 1.8;
    width: 100%;
}

.fleet-copy p {
    margin-bottom: 1rem;
}

.fleet-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    /* FIX: ensure minimum tap target */
    min-height: 36px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-dim);
    border-color: var(--neon);
    color: var(--neon);
}

/* FIX #10: lower minmax so 320px gets 1 col gracefully */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 599px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Vehicle Card */
.vc {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.vc:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.vc-img-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}

.vc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vc:hover .vc-img-wrap img {
    transform: scale(1.06);
}

.vc-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 10, 16, 0.5) 0%, transparent 55%);
    pointer-events: none;
}

.vc-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--neon);
    color: #030a10;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vc-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(240, 192, 64, 0.4);
    border-radius: 10px;
    padding: 5px 10px;
    text-align: center;
}

.vc-price-badge .dep-lbl {
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.vc-price-badge .dep-amt {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold);
}

.vc-body {
    padding: 1.2rem 1.2rem 0;
    flex: 1;
}

.vc-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.vc-specs {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
    flex-wrap: wrap;
}

.vc-specs i {
    color: var(--neon);
}

/* FIX #11: remove auto-fit minmax that overflows on 320px */
.price-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 0.5rem;
}

@media (max-width: 360px) {
    .price-row {
        grid-template-columns: 1fr;
    }
}

.price-btn {
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    color: #fff;
    padding: 11px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
}

.price-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--neon);
    transform: translateY(-2px);
}

.vc-fuel-note {
    font-size: 0.65rem;
    color: var(--text-muted);
    padding: 0.3rem 0 0.75rem;
    text-align: center;
}

.vc-btns {
    border-top: 1px solid var(--glass-border);
    display: flex;
}

.vc-btn-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #1565C0;
    color: #fff;
    padding: 12px 8px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vc-btn-call:hover {
    background: #0d47a1;
}

.vc-btn-wa-sm {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #25D366;
    color: #fff;
    padding: 12px 8px;
    font-size: 0.78rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vc-btn-wa-sm:hover {
    background: #1fba5a;
}

/* ══════════════════════════════════
   LOCATION SECTIONS
   ══════════════════════════════════ */
.location-hero {
    padding: 3rem 0;
    background: var(--bg-mid);
    border-bottom: 1px solid var(--glass-border);
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.loc-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.loc-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.loc-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.loc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.loc-card-body {
    padding: 1.25rem;
}

.loc-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.loc-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.loc-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.loc-feat {
    font-size: 0.65rem;
    background: var(--neon-dim);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--neon);
    padding: 3px 8px;
    border-radius: 999px;
    font-weight: 600;
}

/* ══════════════════════════════════
   POPULAR ROUTES
   ══════════════════════════════════ */
.routes-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.route-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.route-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}

.route-img {
    height: 150px;
    overflow: hidden;
    position: relative;
}

.route-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.route-card:hover .route-img img {
    transform: scale(1.06);
}

.route-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 10, 16, 0.8) 0%, transparent 50%);
}

.route-dur {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
}

.route-label {
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
}

.route-body {
    padding: 1.1rem;
}

.route-path {
    font-size: 0.72rem;
    color: var(--neon);
    margin-bottom: 0.4rem;
}

.route-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.route-tag {
    font-size: 0.62rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 2px 7px;
    border-radius: 999px;
}

/* ══════════════════════════════════
   PRICING
   ══════════════════════════════════ */
.airport-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

.airport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.airport-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
}

.airport-card h3 {
    margin-bottom: 0.9rem;
    font-size: 1.1rem;
}

.airport-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.airport-card ul {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
}

.airport-card li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-primary);
}

.airport-card li i {
    color: var(--neon);
}

.urgency-section {
    padding: var(--section-pad);
    background: linear-gradient(135deg, rgba(255, 117, 117, 0.08), rgba(0, 13, 21, 0.95));
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.urgency-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.urgency-section .section-title,
.urgency-section .section-sub {
    color: #f7f9f8;
}

.urgency-grid a {
    min-width: 180px;
}

@media (max-width: 900px) {
    .urgency-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* FIX #21: wrap table so it scrolls on mobile instead of overflowing */
.pricing-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    /* subtle indicator */
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 76, 0.3) transparent;
}

.pricing-table {
    width: 100%;
    min-width: 540px;
    /* FIX: forces scroll on narrow viewports */
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
}

.pricing-table th {
    background: rgba(201, 168, 76, 0.1);
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem;
    text-align: left;
    white-space: nowrap;
}

.pricing-table td {
    padding: 0.9rem 1.25rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.pricing-table .price-val {
    color: var(--neon);
    font-weight: 700;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.pricing-info-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.pricing-info-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-info-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ══════════════════════════════════
   BOOKING PROCESS
   ══════════════════════════════════ */
.booking-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* ══════════════════════════════════
   FOUNDER PAGE ENHANCEMENTS
   Targeted improvements for founder.html hero, media and FAQ readability
   ══════════════════════════════════ */
.hero.hero-small {
    padding: clamp(2rem, 5vw, 4rem) 0;
    background: linear-gradient(180deg, rgba(3, 10, 16, 0.6), rgba(3, 10, 16, 0.85));
}

.hero.hero-small .hero-content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: clamp(1rem, 3vw, 2.5rem);
    align-items: center;
}

.hero.hero-small .hero-copy {
    text-align: left;
}

.hero-media img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6), 0 6px 18px rgba(201, 168, 76, 0.06);
    object-fit: cover;
}

.hero-text {
    font-size: clamp(1rem, 1.8vw, 1.06rem);
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 760px;
}

.breadcrumb {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
}

.breadcrumb-inner {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.6rem 0;
}

.breadcrumb-inner a {
    color: var(--neon);
    font-weight: 700;
}

.section-pad h2 {
    margin-top: 0.25rem;
}

.faq-section h2 {
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.faq-list .faq-q {
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 0.55rem;
    color: var(--text-primary);
    font-weight: 700;
}

.faq-list .faq-a {
    padding: 10px 16px 16px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

@media (max-width: 900px) {
    .hero.hero-small .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-media img {
        max-width: 360px;
        margin: 1rem auto 0;
    }
}


.step-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    will-change: transform;
}

.step-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    transform: translateY(-4px);
}

.step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--neon-dim);
    border: 2px solid rgba(201, 168, 76, 0.3);
    color: var(--neon);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 1.6rem;
    color: var(--neon);
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-badge {
    display: inline-block;
    margin-top: 0.75rem;
    background: var(--neon-dim);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--neon);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

.booking-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ══════════════════════════════════
   INSTANT QUOTE FORM
   ══════════════════════════════════ */
.quote-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    border: 1px solid var(--glass-border);
    border-left: none;
    border-right: none;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    max-width: 900px;
    margin: 1.5rem auto 0;
}

.quote-form input,
.quote-form select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    padding: 12px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    transition: border-color 0.2s;
    min-width: 0;
    width: 100%;
}

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

.quote-form input:focus,
.quote-form select:focus {
    outline: none;
    border-color: rgba(201, 168, 76, 0.5);
}

.quote-form select option {
    background: #061420;
}

.quote-submit {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* ══════════════════════════════════
   REVIEWS
   ══════════════════════════════════ */
.reviews-section {
    padding: var(--section-pad);
    background: var(--bg-mid);
}

.reviews-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.75rem;
}

.review-screen {
    min-height: 160px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.reviews-rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 0.5rem;
}

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

.rating-text {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.review-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
    will-change: transform;
}

.review-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.review-quote {
    font-size: 2.5rem;
    line-height: 1;
    color: var(--neon);
    opacity: 0.25;
    margin-bottom: 0.4rem;
}

.review-card p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon), #E8C96D);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--bg-deep);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.review-author strong {
    font-size: 0.85rem;
}

.review-author small {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* ══════════════════════════════════
   TRAVEL GUIDE
   ══════════════════════════════════ */
.guide-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
    /* FIX #27: defer paint for below-fold section */
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.guide-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.guide-card:hover {
    border-color: rgba(201, 168, 76, 0.2);
    transform: translateY(-4px);
}

.guide-card-img {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.guide-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.guide-card:hover .guide-card-img img {
    transform: scale(1.07);
}

.guide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 10, 16, 0.75) 0%, transparent 55%);
}

.guide-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    color: var(--neon);
}

.guide-card-body {
    padding: 1.25rem;
}

.guide-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guide-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Driving Tips */
.tips-section {
    padding: 3rem 0;
    background: var(--bg-mid);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
}

.tip-card i {
    color: var(--neon);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tip-card h4 {
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tip-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Tourist Attractions */
.attractions-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
    content-visibility: auto;
    contain-intrinsic-size: 0 800px;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.attract-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    will-change: transform;
}

.attract-card:hover {
    border-color: rgba(240, 192, 64, 0.25);
    transform: translateY(-4px);
}

.attract-card-img {
    height: 170px;
    overflow: hidden;
}

.attract-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.attract-card:hover .attract-card-img img {
    transform: scale(1.07);
}

.attract-card-body {
    padding: 1.25rem;
}

.attract-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.attract-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.attract-dist {
    font-size: 0.72rem;
    color: var(--gold);
}

/* ══════════════════════════════════
   FAQ
   ══════════════════════════════════ */
.faq-section {
    padding: var(--section-pad);
    background: var(--bg-mid);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--glass-border);
}

/* FIX #22: bump font size for readability on 320px */
.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: clamp(0.88rem, 2.5vw, 0.95rem);
    font-weight: 600;
    padding: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--neon);
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.faq-q.open .faq-icon {
    transform: rotate(45deg);
    color: var(--neon);
}

.faq-a {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
}

.faq-a.open {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* ══════════════════════════════════
   CONTACT
   ══════════════════════════════════ */
.contact-section {
    padding: var(--section-pad);
    background: var(--bg-deep);
}

/* FIX #23: gap too wide on 768px — clamp it */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.contact-info .section-title,
.contact-info .section-sub {
    text-align: left;
}

.contact-info .section-sub {
    margin: 0 0 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--neon);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--neon);
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 0.5rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: var(--neon-dim);
}

.contact-cta-block {
    padding: 2.5rem;
}

.contact-cta-block h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.contact-cta-block>p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1.5rem;
}

.trust-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-chip i {
    color: var(--neon);
}

.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info .section-title,
    .contact-info .section-sub {
        text-align: center;
    }

    .contact-details {
        align-items: center;
    }

    .contact-social {
        justify-content: center;
    }
}

/* ══════════════════════════════════
   FOOTER
   ══════════════════════════════════ */
.site-footer {
    background: rgba(2, 5, 10, 0.98);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.5rem) 3rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}

.footer-brand>p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--neon);
    color: var(--neon);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links span {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--neon);
}

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1.5rem clamp(1rem, 4vw, 1.5rem);
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* FIX #14: footer collapses at 900px not 1024px */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 580px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    /* FIX #15: footer bottom wraps properly on 320px */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ══════════════════════════════════
   MOBILE STICKY CTA
   ══════════════════════════════════ */
.mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: flex;
    gap: 8px;
    padding: 8px 12px;
    /* FIX #16: safe area for iPhone home bar */
    padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(2, 5, 10, 0.97);
    border-top: 1px solid var(--glass-border);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.6);
}

.mobile-sticky-cta .cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 10px;
    padding: 11px 8px;
    text-decoration: none;
    min-height: 44px;
    /* accessibility tap target */
}

.mobile-sticky-cta .cta-call {
    background: #ffd166;
    color: #04110b;
}

.mobile-sticky-cta .cta-wa {
    background: #25D366;
    color: #fff;
}

@media (min-width: 880px) {
    .mobile-sticky-cta {
        display: none;
    }
}

/* ══════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════ */
/* FIX #17: hide on mobile (sticky CTA covers it); show on desktop */
.float-wa {
    position: fixed;
    right: 24px;
    /* FIX: sit above mobile sticky bar when visible */
    bottom: 28px;
    z-index: 10000;
    display: none;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

@media (min-width: 880px) {

    .float-wa,
    .float-call {
        display: flex;
    }
}

.float-call {
    position: fixed;
    right: 24px;
    bottom: 100px;
    z-index: 10000;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    display: none;
    gap: 0.5rem;
}

.float-call__btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd166, #ffc700);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04110b;
    font-size: 1.4rem;
    box-shadow: 0 12px 30px rgba(255, 209, 102, 0.3);
}

.float-call__label {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: #ffd166;
    padding: 0 12px;
    border-radius: 999px;
    line-height: 44px;
    height: 44px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.float-call:hover .float-call__btn {
    transform: scale(1.05);
}

.float-call:hover .float-call__label {
    opacity: 0.95;
}

.float-wa {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waRing 2.4s ease-out infinite;
}

.float-wa__ring--1 {
    animation-delay: 0s;
}

.float-wa__ring--2 {
    animation-delay: 0.8s;
}

@keyframes waRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

.float-wa__btn {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #1da851);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.float-wa__label {
    position: relative;
    z-index: 2;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #1da851);
    padding: 0 16px 0 0;
    height: 44px;
    line-height: 44px;
    border-radius: 0 999px 999px 0;
    margin-left: -8px;
    white-space: nowrap;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-width 0.4s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s, padding 0.4s;
    box-shadow: 4px 4px 18px rgba(37, 211, 102, 0.3);
}

.float-wa:hover .float-wa__btn {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

.float-wa:hover .float-wa__label {
    max-width: 120px;
    opacity: 1;
    padding-left: 12px;
}

.float-wa:hover .float-wa__ring {
    opacity: 0;
}

/* ══════════════════════════════════
   POLICY PAGES
   ══════════════════════════════════ */
.policy-page .policy-toc {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.6rem;
    background: rgba(201, 168, 76, 0.06);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: var(--radius);
}

.policy-page .policy-note {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--neon);
}

.policy-page .policy-toc ul {
    display: grid;
    gap: 0.65rem;
    list-style: none;
    padding: 0;
    margin: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.policy-page .policy-toc li {
    line-height: 1.6;
}

.policy-page .policy-toc a {
    color: var(--text-primary);
    transition: color 0.2s;
}

.policy-page .policy-toc a:hover {
    color: var(--neon);
}

.policy-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.75rem 1.8rem;
    margin-bottom: 1.5rem;
}

.policy-card h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.policy-card p,
.policy-card ul,
.policy-card ol {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
}

.policy-card ul,
.policy-card ol {
    padding-left: 1.2rem;
}

.policy-card li {
    margin-bottom: 0.65rem;
}

.policy-card strong {
    color: var(--neon);
}

.policy-card a {
    color: var(--neon);
    text-decoration: underline;
}

@media (max-width: 767px) {
    .policy-page .policy-toc ul {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-video {
        display: none;
    }

    /* FIX #29: ensure fade-in elements are visible when motion disabled */
    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ══════════════════════════════════
   PRINT
   ══════════════════════════════════ */
@media print {

    .float-wa,
    .mobile-sticky-cta,
    .nav-hamburger,
    .hero-video-wrap,
    .hero-particles,
    .scroll-hint {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .glass {
        background: #f9f9f9;
        border: 1px solid #ccc;
    }
}