:root {
    --primary: #FFC000;
    --primary-dark: #cca300;
    --primary-glow: rgba(255, 192, 0, 0.6);
    --black: #0d0d0d;
    --black-light: #1a1a1a;
    --white: #ffffff;
    --bg-light: #f7f7f7;
    --text-color: #555555;
    --border-color: #eeeeee;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* ========================
   RESET & BASE
======================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

/* ========================
   CUSTOM CURSOR
======================== */
@media (pointer: fine) {
    body {
        cursor: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background: var(--primary);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
    }

    .cursor-ring {
        width: 36px;
        height: 36px;
        border: 2px solid var(--primary);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, opacity 0.3s;
        opacity: 0.5;
    }

    .cursor-ring.hovering {
        width: 55px;
        height: 55px;
        opacity: 1;
        background: rgba(255, 192, 0, 0.08);
    }
}


/* ========================
   UTILITIES
======================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 130px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-white {
    background-color: var(--white);
}

/* ========================
   BADGE
======================== */
.badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255, 192, 0, 0.12);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 192, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.new-opening-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff3e3e, #d60000);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.5);
    animation: blinkPulse 2s infinite ease-in-out;
}

.new-opening-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--white);
    animation: flashDot 1s infinite alternate;
}

@keyframes blinkPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 62, 62, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 35px rgba(255, 62, 62, 0.8);
    }
}

@keyframes flashDot {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 192, 0, 0.35), transparent);
    animation: shimmerBadge 2.5s infinite;
}

@keyframes shimmerBadge {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

/* ========================
   SECTION DARK
======================== */
.section-dark {
    background-color: var(--black);
    color: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.section-dark h2 {
    color: var(--white);
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.06)0%, transparent 70%);
    z-index: 1;
    animation: driftGlow 8s ease-in-out infinite alternate;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.04)0%, transparent 70%);
    z-index: 1;
    animation: driftGlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes driftGlow {
    0% {
        transform: translate(0, 0)scale(1)
    }

    100% {
        transform: translate(5%, 10%)scale(1.2)
    }
}

.section-dark .container {
    position: relative;
    z-index: 2;
}

/* ========================
   SECTION HEADINGS
======================== */
.section-heading {
    margin-bottom: 50px;
}

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

.section-heading h2 {
    font-size: 2.8rem;
}

.section-heading h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff9500);
    border-radius: 2px;
    margin-top: 12px;
    animation: expandLine 1.2s ease forwards;
}

.section-heading.center h2::after {
    margin: 12px auto 0;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0
    }

    to {
        width: 60px;
        opacity: 1
    }
}

/* ========================
   BUTTONS
======================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #ffb300);
    color: var(--black);
    box-shadow: 0 8px 25px rgba(255, 192, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 192, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
}

.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(37, 211, 102, 0.5);
}

.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.btn-black {
    background: var(--black);
    color: var(--white);
}

.btn-black:hover {
    background: var(--primary);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 192, 0, 0.4);
}

.btn-block {
    width: 100%;
}

/* ========================
   GRIDS
======================== */
.grid {
    display: grid;
    gap: 30px;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width:992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================
   TOPBAR
======================== */
.topbar {
    background: linear-gradient(90deg, #080808, var(--black-light));
    color: #888;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 192, 0, 0.1);
}

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

.topbar-left {
    display: flex;
    gap: 25px;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.topbar-item:hover {
    color: var(--white);
}

.topbar-item svg {
    width: 14px;
    color: var(--primary);
}

.topbar-item a:hover {
    color: var(--white);
}

.lang-toggle span {
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
    font-weight: 700;
}

.lang-toggle span:hover,
.lang-toggle span.active {
    color: var(--primary);
}

/* ========================
   NAVBAR
======================== */
#header {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

#header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-left: 8px;
}

.logo img {
    height: 60px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.header-slogan {
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-left: 5px;
    opacity: 0.8;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.desktop-nav a {
    color: var(--black);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #ff9500);
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--primary-dark);
}

.mobile-menu-btn {
    display: none;
}

/* ========================
   FULL-SCREEN HERO
======================== */
.hero-section {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #050508;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.3;
    z-index: 0;
    animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1)translate(0, 0)
    }

    100% {
        transform: scale(1.12)translate(-2%, -1%)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.98) 0%, rgba(5, 5, 8, 0.75) 55%, rgba(5, 5, 8, 0.45) 100%);
    z-index: 2;
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 2;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.1)0%, transparent 70%);
    top: -150px;
    left: -100px;
    animation: orbDrift 9s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 130, 0, 0.07)0%, transparent 70%);
    bottom: -100px;
    right: 5%;
    animation: orbDrift 12s ease-in-out infinite alternate-reverse;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(40px, -30px)
    }
}

.hero-full-content {
    position: relative;
    z-index: 3;
    padding: 40px 24px 100px;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.hero-branding-center {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.hero-logo-large {
    height: clamp(220px, 40vw, 420px);
    object-fit: contain;
    filter: drop-shadow(0 0 35px rgba(255, 192, 0, 0.45));
    transition: transform 0.5s ease;
}

.hero-logo-large:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 0 50px rgba(255, 192, 0, 0.6));
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 28px;
}

.hero-overline::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(255, 192, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.hero-overline::after {
    /* No after needed if we just do a static premium line, or we can animate the before */
}

.hero-full-content h1 {
    font-size: clamp(3.2rem, 8vw, 7rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-line-1 {
    display: block;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.hero-line-2.shimmer-word {
    display: inline-block;
    background: linear-gradient(90deg, #ffffff 0%, var(--primary) 25%, #ff9500 50%, var(--primary) 75%, #ffffff 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 5s linear infinite;
    font-weight: 900;
    padding-bottom: 0.15em;
    /* Prevents descenders like 'g' from being cut off */
}

@keyframes textShimmer {
    0% {
        background-position: 100% center
    }

    100% {
        background-position: -100% center
    }
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.65);
    margin: 0 auto 44px;
    max-width: 560px;
    line-height: 1.85;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

/* Scroll hint */
.scroll-hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.scroll-hint-icon {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.scroll-hint-dot {
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {

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

    60% {
        transform: translateY(14px);
        opacity: 0.3
    }
}

/* Stats bar at bottom of hero */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
    gap: 0;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.hero-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 192, 0, 0.4);
}

.hero-stat-lbl {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
    display: block;
}

.hero-stat-div {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* ========================
   NEON LINE
======================== */
.neon-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), #ff9500, var(--primary), transparent);
    background-size: 300% 100%;
    animation: neonFlow 3s linear infinite;
}

@keyframes neonFlow {
    0% {
        background-position: 0% center
    }

    100% {
        background-position: 300% center
    }
}

/* ========================
   TAXI SCROLL SCENE
======================== */
.taxi-scroll-wrapper {
    position: relative;
    height: 280vh;
    /* tall = more scroll = slower taxi */
    background: transparent;
}

.taxi-sticky-scene {
    position: sticky;
    top: 80px;
    /* below header */
    height: calc(100vh - 80px);
    overflow: hidden;
    background: #060810;
}

#taxiCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Overlay text on the taxi scene */
.taxi-scene-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    text-align: center;
    pointer-events: none;
    z-index: 10;
}

.taxi-scene-label {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 24px;
}

.taxi-progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
}

.taxi-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), #ff9500);
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(255, 192, 0, 0.8);
}

/* ========================
   TICKER STRIP
======================== */
.ticker-strip {
    background: linear-gradient(90deg, var(--primary), #ffb300 50%, var(--primary));
    padding: 14px 0;
    overflow: hidden;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.ticker-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: tickerScroll 25s linear infinite;
    width: max-content;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--black);
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ticker-item .dot {
    width: 6px;
    height: 6px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ========================
   TRUST CARDS
======================== */
.trust-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-card:hover {
    transform: translateY(-14px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 60px rgba(255, 192, 0, 0.15);
}

.trust-card h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.trust-icon-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 192, 0, 0.08);
    border: 2px solid rgba(255, 192, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.trust-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 192, 0, 0.15);
    animation: spinSlow 12s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg)
    }
}

.trust-icon-wrapper svg {
    width: 38px;
}

.trust-card:hover .trust-icon-wrapper {
    background: linear-gradient(135deg, var(--primary), #ff9500);
    color: var(--black);
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 10px 30px rgba(255, 192, 0, 0.4);
    border-color: transparent;
}

/* ========================
   SERVICE BOXES
======================== */
.service-box {
    background: var(--white);
    padding: 50px 40px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #ff9500);
    transition: width 0.5s ease;
}

.service-box:hover::after {
    width: 100%;
}

.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 192, 0, 0.25);
}

.service-box-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box:hover .service-box-icon {
    transform: scale(1.2) rotate(-8deg) translateY(-5px);
    filter: drop-shadow(0 10px 20px rgba(255, 192, 0, 0.3));
}

.service-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

/* ========================
   REVIEW CARDS
======================== */
.review-card {
    padding: 40px 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 4px solid var(--primary);
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-family: Georgia, serif;
    font-size: 6rem;
    color: rgba(255, 192, 0, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.review-card:hover::before {
    color: rgba(255, 192, 0, 0.2);
}

.star-rating {
    font-size: 1.3rem;
    margin-bottom: 18px;
    letter-spacing: 3px;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {

    0%,
    100% {
        filter: drop-shadow(0 0 2px rgba(255, 192, 0, 0.5))
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(255, 192, 0, 0.9))
    }
}

.review-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
    font-style: italic;
    line-height: 1.8;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    font-size: 1.05rem;
}

/* ========================
   FAQ
======================== */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 50px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 22px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
}

.faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 192, 0, 0.1);
    border: 2px solid rgba(255, 192, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--primary-dark);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    padding: 0 32px;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.4s ease;
}

.faq-answer p {
    color: var(--text-color);
    padding-bottom: 22px;
    font-size: 1rem;
}

.faq-item.active {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 192, 0, 0.25);
}

.faq-item.active .faq-question span,
.faq-item.active .faq-icon {
    color: var(--black);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    padding: 0 32px 22px;
}

.faq-item.active .faq-answer p {
    color: var(--black);
    font-weight: 500;
    padding-bottom: 0;
}

/* Dark Section Variant for FAQ */
.section-dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-dark .faq-question span {
    color: var(--white);
}

.section-dark .faq-answer p {
    color: rgba(255, 255, 255, 0.6);
}

.section-dark .faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 192, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.section-dark .faq-item.active {
    background: var(--primary);
    border-color: var(--primary);
}

.section-dark .faq-item.active .faq-question span,
.section-dark .faq-item.active .faq-answer p {
    color: var(--black);
}

/* ========================
   BOOKING SECTION (STANDALONE)
======================== */
.booking-section {
    background: #080810;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.booking-section.bg-white {
    background: var(--white);
    padding: 130px 0;
}

.booking-section.bg-white .booking-info h2 {
    color: var(--black);
}

.booking-section.bg-white .booking-info p,
.booking-section.bg-white .booking-perks li {
    color: var(--text-color);
}

.booking-section.bg-white .booking-direct p {
    color: #999;
}

.booking-section.bg-white .booking-bg-glow {
    background: radial-gradient(circle, rgba(255, 192, 0, 0.08) 0%, transparent 65%);
    opacity: 0.4;
}

.booking-bg-glow {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.06)0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: driftGlow 10s ease-in-out infinite alternate;
}

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

.booking-info .badge {
    /* inherits */
}

.booking-info h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.booking-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.booking-perks {
    margin-bottom: 36px;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
    font-size: 1rem;
}

.perk-icon {
    font-size: 1.2rem;
}

.booking-direct p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-direct {
    margin-top: 8px;
}

.booking-direct .btn {
    margin-right: 12px;
    margin-bottom: 10px;
}

/* The card */
.booking-card-standalone {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 20px;
    padding: 50px 45px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 192, 0, 0.1);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.booking-card-standalone::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.06)0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.booking-card-header {
    margin-bottom: 28px;
}

.booking-card-header h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.booking-card-header p {
    color: var(--text-color);
    font-size: 0.95rem;
}

.booking-form .form-group {
    margin-bottom: 18px;
}

.booking-form label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 7px;
    font-size: 0.88rem;
}

.booking-form input {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    background: #fafafa;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 192, 0, 0.1);
    transform: translateY(-1px);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section-overlay {
    position: relative;
    padding: 150px 0;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.map-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.map-bg iframe {
    width: 100%;
    height: 100%;
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(110%);
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.contact-info-card {
    background: rgba(8, 8, 16, 0.97);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 192, 0, 0.25);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    max-width: 500px;
    color: var(--white);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 192, 0, 0.06)0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-card h2 {
    color: var(--white);
}

.contact-desc {
    font-size: 1.05rem;
    color: #bbb;
    margin: 18px 0 36px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    transition: transform 0.3s ease;
}

.contact-list li:hover {
    transform: translateX(6px);
}

.icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(255, 192, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 1px solid rgba(255, 192, 0, 0.2);
    color: var(--primary);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.contact-list li:hover .icon-circle {
    transform: scale(1.12) rotate(-5deg);
    background: var(--primary);
    color: var(--black);
}

.contact-list h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-list p {
    color: #bbb;
}

.contact-list a {
    color: var(--primary);
}

.contact-list a:hover {
    color: var(--white);
}

/* ========================
   CTA BANNER
======================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary), #ffb300 50%, var(--primary));
    background-size: 200%;
    animation: ctaGrad 4s ease infinite;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

@keyframes ctaGrad {

    0%,
    100% {
        background-position: 0% center
    }

    50% {
        background-position: 100% center
    }
}

.cta-banner::before {
    content: '🚖';
    position: absolute;
    font-size: 9rem;
    opacity: 0.06;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    animation: ctaCar 5s ease-in-out infinite alternate;
}

@keyframes ctaCar {
    0% {
        transform: translateY(-50%)translateX(0)
    }

    100% {
        transform: translateY(-50%)translateX(-30px)
    }
}

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

.cta-banner-inner h2 {
    font-size: 2.4rem;
    margin: 0;
    color: var(--black);
}

/* ========================
   FOOTER
======================== */
.footer {
    background: #070710;
    color: #666;
    padding-top: 80px;
}

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

.footer-logo {
    height: 58px;
    margin-bottom: 18px;
    transition: filter 0.3s;
}

.footer-logo:hover {
    filter: brightness(1.3) drop-shadow(0 0 12px rgba(255, 192, 0, 0.5));
}

.footer h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 22px;
}

.footer h3::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--primary);
    margin-top: 8px;
    border-radius: 2px;
}

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

.footer-links ul a {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-links ul a:hover {
    color: var(--primary);
    gap: 6px;
    padding-left: 4px;
}

.footer-links ul a::before {
    content: '→';
    opacity: 0;
    color: var(--primary);
    transition: all 0.3s;
    width: 0;
    overflow: hidden;
}

.footer-links ul a:hover::before {
    opacity: 1;
    width: 16px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 24px 0;
    text-align: center;
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ========================
   FLOATING WHATSAPP
======================== */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: waPulse 2.5s ease-in-out infinite;
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.3)
    }

    50% {
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0)
    }
}

.floating-wa svg {
    width: 32px;
    height: 32px;
}

.floating-wa:hover {
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.6);
}

/* ========================
   DECORATIVE
======================== */
.floating-taxi {
    position: absolute;
    font-size: 3rem;
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
    animation: floatTaxi linear infinite;
}

@keyframes floatTaxi {
    0% {
        transform: translateX(-120px)translateY(0)rotate(0deg);
        opacity: 0
    }

    5% {
        opacity: 0.04
    }

    95% {
        opacity: 0.04
    }

    100% {
        transform: translateX(110vw)translateY(-60px)rotate(5deg);
        opacity: 0
    }
}

/* ========================
   ANIMATION CLASSES
======================== */
.animate-up {
    opacity: 0;
    transform: translateY(40px);
    animation: animUp 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pop-up {
    opacity: 0;
    transform: translateY(50px)scale(0.96);
    transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pop-up.visible {
    opacity: 1;
    transform: translateY(0)scale(1);
}

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

.delay-1 {
    animation-delay: 0.15s;
    transition-delay: 0.15s
}

.delay-2 {
    animation-delay: 0.3s;
    transition-delay: 0.3s
}

.delay-3 {
    animation-delay: 0.45s;
    transition-delay: 0.45s
}

.delay-4 {
    animation-delay: 0.6s;
    transition-delay: 0.6s
}

.delay-5 {
    animation-delay: 0.75s;
    transition-delay: 0.75s
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width:1050px) {
    .booking-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .booking-info h2 {
        font-size: 2.2rem;
    }
}

@media (max-width:992px) {
    .section-padding {
        padding: 90px 0;
    }

    .topbar-left {
        display: none;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar {
        padding: 5px 0;
    }

    .hero-full-content {
        padding: 140px 24px 180px;
        max-width: 100%;
    }

    .hero-stats-bar {
        display: none;
    }

    /* simplified on mobile */
    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

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

    .contact-section-overlay {
        padding: 280px 0 60px;
        min-height: auto;
    }
}

@media (max-width:768px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background: var(--black);
        border-radius: 2px;
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px)rotate(45deg)
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px)rotate(-45deg)
    }

    .desktop-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        gap: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease;
    }

    .desktop-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .desktop-nav a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
        color: var(--black);
        text-align: left;
    }

    .desktop-nav a::after {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .cta-group {
        flex-direction: column;
    }

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

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .booking-card-standalone {
        padding: 35px 25px;
    }

    .contact-info-card {
        padding: 40px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .cta-banner-inner h2 {
        font-size: 1.8rem;
    }

    .ticker-strip {
        display: none;
    }

    /* Taxi scroll — keep sticky on mobile, just shorter scroll distance */
    .taxi-scroll-wrapper {
        height: 200vh;
    }

    .taxi-sticky-scene {
        position: sticky;
        top: 60px;
        height: calc(100vh - 60px);
    }

    .taxi-scene-label {
        font-size: 1.1rem;
    }

    .taxi-progress-bar {
        width: 140px;
    }
}

/* ========================
   MODAL STYLES
======================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background-color: var(--black-light);
    color: var(--white);
    padding: 40px;
    border: 1px solid var(--primary);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-body h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 2.2rem;
    border-bottom: 2px solid rgba(255, 192, 0, 0.2);
    padding-bottom: 10px;
}

.impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.impressum-section h3 {
    color: var(--primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.impressum-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.5;
}

.impressum-section a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.impressum-section a:hover {
    color: var(--primary);
}

.impressum-legal-text h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 40px 0 20px;
}

.impressum-legal-text h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 25px 0 10px;
}

.impressum-legal-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.impressum-legal-text a {
    color: var(--primary);
    word-break: break-all;
}

/* Scrollbar styling for modal */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}