/* =========================================================
   Kiruna North Pole Taxi — SHARED DESIGN SYSTEM
========================================================= */
:root {
    --bg: #000000;
    --bg-alt: #111111;
    --nav-bg: #000000;
    --panel: #111111;
    --panel-border: rgba(255, 204, 0, 0.2);
    --field-bg: #000000;
    --field-border: rgba(255, 204, 0, 0.4);
    --text: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);

    --gold: #FFCC00;
    --gold-dark: #E6B800;
    --gold-soft: rgba(255, 204, 0, 0.15);

    --wa: #25D366;
    --wa-hover: #1EBE5C;

    --hero-text: #f5f6f8;
    --hero-text-dim: rgba(245, 246, 248, 0.75);

    --radius: 12px; /* sharper corners like modern design */
    --transition: all 0.25s ease;
    --max-width: 1180px;
}

[data-theme="light"] {
    --bg: #ffffff;
    --bg-alt: #f4f5f8;
    --nav-bg: rgba(255, 255, 255, 0.95);
    --panel: #ffffff;
    --panel-border: rgba(0, 0, 0, 0.1);
    --field-bg: #f9f9f9;
    --field-border: rgba(0, 0, 0, 0.2);
    --text: #000000;
    --text-dim: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
    color: var(--text);
}

[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder {
    color: rgba(20, 21, 26, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================================
   NAVBAR
========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 5%;
    background: var(--nav-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--panel-border);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.brand img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    padding: 3px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }

.nav-links a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.6rem;
}

.lang-switch { display: flex; gap: 0.35rem; }

.lang-flag {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    border-radius: 50%;
    font-size: 0.95rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.55;
    transition: var(--transition);
}

.lang-flag svg { border-radius: 3px; flex-shrink: 0; }

.lang-flag:hover { opacity: 0.85; background: rgba(255,255,255,0.14); }
.lang-flag.active { opacity: 1; border-color: var(--gold); background: var(--gold-soft); }

[data-theme="light"] .lang-flag {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .lang-flag:hover { background: rgba(20,21,26,0.08); }

.icon-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    color: var(--text);
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition);
}

.icon-btn:hover { background: rgba(255,255,255,0.14); }

[data-theme="light"] .icon-btn {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .icon-btn:hover { background: rgba(20,21,26,0.08); }

.qr-wrap { position: relative; }

.qr-popover {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 1100;
    width: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: var(--transition);
}

.qr-wrap:hover .qr-popover,
.qr-wrap:focus-within .qr-popover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.qr-popover img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    background: #fff;
    padding: 6px;
}

.qr-popover p {
    font-size: 0.75rem;
    text-align: center;
    color: var(--text-dim);
}

.nav-cta {
    background: var(--gold);
    color: #16130a;
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .qr-wrap { display: none; }
}

@media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        backdrop-filter: blur(14px);
        padding: 1.5rem 8%;
        gap: 1.25rem;
        border-bottom: 1px solid var(--panel-border);
    }
}

/* =========================================================
   HERO (with animated aurora + snow)
========================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5% 4rem;
}

.hero.compact { min-height: 60vh; justify-content: center; }

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('../Assets/Images/gallery/vw-taxi-hero.png');
    background-size: cover;
    background-position: center 50%;
    filter: saturate(1.15) brightness(1.10);
    animation: heroBgKen 20s ease-in-out infinite alternate;
}

@keyframes heroBgKen {
    0%   { transform: scale(1)    translateX(0)   translateY(0); }
    100% { transform: scale(1.06) translateX(-1%) translateY(-0.5%); }
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
    background-image: none;
    filter: saturate(1.15) brightness(1.10);
}

.hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(100deg, rgba(6,8,12,0.45) 0%, rgba(6,8,12,0.22) 55%, rgba(6,8,12,0.1) 100%),
        linear-gradient(180deg, rgba(6,8,12,0.15) 0%, rgba(6,8,12,0.1) 50%, rgba(6,8,12,0.45) 100%);
}

.aurora {
    position: absolute;
    inset: -10% -10% 40% -10%;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
    background:
        radial-gradient(ellipse 60% 40% at 20% 10%, rgba(60,255,170,0.32), transparent 60%),
        radial-gradient(ellipse 50% 35% at 60% 5%, rgba(80,180,255,0.28), transparent 60%),
        radial-gradient(ellipse 55% 30% at 85% 20%, rgba(255,176,32,0.22), transparent 60%);
    filter: blur(30px);
    animation: auroraShift 14s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0%   { transform: translateX(-4%) translateY(0) scaleY(1); opacity: 0.55; }
    50%  { transform: translateX(3%) translateY(2%) scaleY(1.1); opacity: 0.8; }
    100% { transform: translateX(-2%) translateY(-1%) scaleY(0.95); opacity: 0.6; }
}

.snow-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-soft);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.hero-content h1 {
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.25rem;
    color: var(--hero-text);
    text-shadow: 0 4px 30px rgba(0,0,0,0.7), 0 0 60px rgba(255,176,32,0.1);
}

/* =====================================================
   HERO SITE-NAME DISPLAY OVERLAY
===================================================== */
.hero-site-name {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
    display: flex;
    justify-content: flex-end;
    padding: 7rem 5% 0 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-site-name.show { opacity: 1; }

.hero-site-name-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.hero-site-name.show .hero-site-name-inner {
    animation: heroNameFadeIn 1s cubic-bezier(0.22,1,0.36,1) both;
}

@media (max-width: 860px) {
    .hero-site-name { justify-content: center; padding: 6rem 5% 0; }
}

@keyframes heroNameFadeIn {
    from { opacity: 0; transform: translateY(-24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-site-name-logo {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 16px rgba(255,204,0,0.5));
    animation: logoFloat 4s ease-in-out infinite alternate;
}

@keyframes logoFloat {
    from { transform: translateY(0); }
    to   { transform: translateY(-6px); }
}

.hero-site-name-text {
    font-size: clamp(1.1rem, 2.5vw, 1.7rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow:
        0 2px 16px rgba(0,0,0,0.9),
        0 0 40px rgba(255,176,32,0.5);
    white-space: nowrap;
    background: linear-gradient(90deg, #FFB020 0%, #fff 50%, #FFB020 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroNameShimmer 4s linear infinite;
}

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

.hero-site-name-sub {
    font-size: clamp(0.6rem, 1.2vw, 0.8rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.hero-content h1 .gold-text { color: var(--gold); }

.hero-content .hero-tagline {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--hero-text-dim);
    max-width: 560px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.75), 0 1px 4px rgba(0,0,0,0.6);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =========================================================
   BUTTONS
========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.8rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold { background: #000000; color: var(--gold); }
.btn-gold:hover { background: transparent; border-color: #000; color: #000000; transform: translateY(-2px); }

.btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--panel-border);
    color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

[data-theme="light"] .btn-ghost {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.16);
}
[data-theme="light"] .btn-ghost:hover { background: rgba(20,21,26,0.08); }

.hero .btn-ghost {
    background: rgba(10,12,16,0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(245,246,248,0.35);
    color: var(--hero-text);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.hero .btn-ghost:hover { background: rgba(10,12,16,0.6); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-hover); transform: translateY(-2px); }

/* =========================================================
   STATS STRIP
========================================================= */
.stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 720px;
}

.stat h3 { font-size: 1.8rem; color: var(--gold); font-weight: 800; }
.stat p { font-size: 0.85rem; color: var(--hero-text-dim); }

.weather-stat h3 { font-size: 1.5rem; white-space: nowrap; }

/* =========================================================
   SECTIONS
========================================================= */
section { padding: 5rem 0; }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 0.75rem; }
.section-head p { color: var(--text-dim); }
.section-head-left { text-align: left; margin: 0 0 1.5rem; max-width: none; }

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

.card {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.card:hover { transform: translateY(-4px); border-color: var(--gold); }

.card .icon-circle {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--gold-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.card p { color: var(--text-dim); font-size: 0.95rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.card-link:hover { gap: 0.65rem; color: var(--gold-dark); }

.destination-card { padding: 0; overflow: hidden; }

.card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.destination-card .card-body { padding: 1.5rem 1.75rem 1.75rem; }
.destination-card .card-body h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.destination-card .card-body p { color: var(--text-dim); font-size: 0.95rem; }

.photo-credit {
    display: none;
    margin-top: 0.75rem;
    font-size: 0.7rem;
    color: var(--text-dim);
    opacity: 0.7;
}

.photo-credit a { color: inherit; text-decoration: underline; }
.photo-credit a:hover { color: var(--gold); }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonial-video-wrap {
    max-width: 760px;
    margin: 0 auto 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
}

.testimonial-video-wrap video {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    display: block;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.testimonial-card .testimonial-quote {
    color: var(--text-dim);
    font-size: 0.95rem;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-author .avatar,
.testimonial-author .avatar-initial {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--gold-soft);
}

.testimonial-author .avatar {
    object-fit: cover;
}

.testimonial-author .avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-dim); }

/* =========================================================
   FAQ ACCORDION
========================================================= */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--panel);
    border: 1px solid var(--panel-border);
    border-radius: var(--radius);
    padding: 0 1.5rem;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--gold); }

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-answer {
    color: var(--text-dim);
    font-size: 0.95rem;
    padding-bottom: 1.25rem;
}

.bg-alt { background: var(--bg-alt); }

/* CTA banner */
.driver-spotlight {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem;
    background: linear-gradient(120deg, rgba(255,204,0,0.1), rgba(60,255,170,0.05));
    border: 1px solid var(--gold-soft);
    border-radius: 24px;
}

.driver-photo {
    flex: 1 1 420px;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.driver-spotlight-text { flex: 1 1 320px; padding: 1rem 1.5rem 1rem 0; }
.driver-spotlight-text .eyebrow { display: block; margin-bottom: 0.5rem; }
.driver-spotlight-text h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.6rem; }
.driver-spotlight-text p { color: var(--text-dim); }

@media (max-width: 720px) {
    .driver-spotlight { flex-direction: column; padding: 1.25rem; }
    .driver-photo { max-width: 100%; }
    .driver-spotlight-text { text-align: center; padding: 0.5rem 0.5rem 1rem; }
}

.cta-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, rgba(255,204,0,0.14), rgba(255,107,53,0.1));
    border: 1px solid var(--gold-soft);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../Assets/Images/gallery/vw-taxi-hero.png');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.18;
    z-index: 0;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, var(--bg) 120%);
    opacity: 0.85;
    z-index: 0;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--text-dim); margin-bottom: 1.75rem; }
.cta-banner .hero-actions { justify-content: center; }

/* =========================================================
   HERO BOOKING WIDGET (2027 style)
========================================================= */
.hero-book-section {
    position: relative;
    padding: 0 0 4rem;
    margin-top: -2px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
    overflow: visible;
}

/* Floating label above card */
.hb-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 1.5rem;
    padding-top: 3rem;
}

.hb-video-wrap {
    width: 100%;
    margin: 0 auto 2rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gold-soft);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hb-video-wrap video {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .hb-video-wrap video { aspect-ratio: 16 / 9; }
}

.hb-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: hbDotPulse 2s ease-in-out infinite alternate;
}

@keyframes hbDotPulse {
    from { opacity: 0.4; transform: scale(0.8); }
    to   { opacity: 1;   transform: scale(1.2); }
}

/* Main glassmorphism card */
.hb-card {
    position: relative;
    background: rgba(18, 21, 28, 0.72);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 28px;
    border: 1px solid rgba(255,204,0,0.18);
    padding: 2.5rem 2.5rem 2rem;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.04),
        0 32px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(255,204,0,0.06);
    overflow: hidden;
}

[data-theme="light"] .hb-card {
    background: rgba(255,255,255,0.75);
    border-color: rgba(60, 140, 220, 0.25);
    box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 0 40px rgba(60, 140, 220, 0.05);
}

[data-theme="light"] .hb-glow-ring {
    background: conic-gradient(
        from var(--hb-angle, 0deg),
        transparent 0%,
        rgba(60, 140, 220, 0.3) 10%,
        transparent 20%,
        transparent 80%,
        rgba(60, 140, 220, 0.15) 90%,
        transparent 100%
    );
}

/* Animated glow ring (rotates around the border) */
.hb-glow-ring {
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: conic-gradient(
        from var(--hb-angle, 0deg),
        transparent 0%,
        rgba(255,204,0,0.6) 10%,
        transparent 20%,
        transparent 80%,
        rgba(255,204,0,0.3) 90%,
        transparent 100%
    );
    animation: hbRing 6s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@property --hb-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes hbRing {
    to { --hb-angle: 360deg; }
}

/* Step progress pills */
.hb-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
}

.hb-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.35;
    transition: opacity 0.3s ease;
}

.hb-step.active { opacity: 1; }

.hb-step-num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.hb-step.active .hb-step-num {
    background: var(--gold);
    border-color: var(--gold);
    color: #14130a;
    box-shadow: 0 0 14px rgba(255,204,0,0.5);
}

.hb-step-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-dim);
}

.hb-step.active .hb-step-label { color: var(--text); }

.hb-step-line {
    flex: 1;
    height: 1.5px;
    min-width: 2rem;
    margin: 0 0.75rem;
    background: linear-gradient(90deg, rgba(255,204,0,0.4), rgba(255,255,255,0.08));
    border-radius: 2px;
}

/* Quick route bar */
.hb-route-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255,204,0,0.14), rgba(255,204,0,0.06));
    border: 1px solid rgba(255,204,0,0.25);
    border-radius: 16px;
    padding: 1rem 1.4rem;
    margin-bottom: 1.75rem;
    transition: border-color 0.25s;
}

.hb-route-bar:hover { border-color: rgba(255,204,0,0.5); }

.hb-route-icon { font-size: 1.5rem; flex-shrink: 0; }

.hb-route-inner { flex: 1; min-width: 0; }

.hb-select {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    padding-right: 1rem;
}

.hb-select option { background: #14151a; color: #f5f6f8; }

[data-theme="light"] .hb-select { color: var(--text); }
[data-theme="light"] .hb-select option { background: #fff; color: #14151a; }

/* Light Theme Component Overrides */
[data-theme="light"] .hb-label { color: #2c425e; }
[data-theme="light"] .hb-dot { background: #3a75b8; }
[data-theme="light"] .hb-step.active .hb-step-num { background: #3a75b8; border-color: #3a75b8; color: #fff; box-shadow: 0 0 14px rgba(58,117,184,0.3); }
[data-theme="light"] .hb-route-bar { background: linear-gradient(135deg, rgba(60, 140, 220, 0.08), rgba(60, 140, 220, 0.03)); border-color: rgba(60, 140, 220, 0.15); }
[data-theme="light"] .hb-route-bar:hover { border-color: rgba(60, 140, 220, 0.3); }
[data-theme="light"] .hb-field-label { color: #3a75b8; }
[data-theme="light"] .hb-icon { color: #3a75b8; }

/* Form layout */
.hb-form { display: flex; flex-direction: column; gap: 1.25rem; }

.hb-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1rem;
    align-items: end;
}

.hb-row-extras {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    align-items: start;
}

/* Field */
.hb-field { display: flex; flex-direction: column; gap: 0.4rem; }
.hb-field-note { flex: 2; }

.hb-field-label {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--gold);
    text-transform: uppercase;
}

/* Input wrapper */
.hb-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.hb-icon {
    position: absolute;
    left: 0.9rem;
    width: 16px; height: 16px;
    color: var(--gold);
    opacity: 0.75;
    pointer-events: none;
    flex-shrink: 0;
}

.hb-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.8rem 1rem 0.8rem 2.6rem;
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.22s ease;
    outline: none;
    -webkit-appearance: none;
}

.hb-input::placeholder { color: rgba(245,246,248,0.35); }

.hb-input:focus {
    border-color: var(--gold);
    background: rgba(255,204,0,0.06);
    box-shadow: 0 0 0 3px rgba(255,204,0,0.12);
}

.hb-input:valid:not(:placeholder-shown) {
    border-color: rgba(74,200,120,0.5);
}

[data-theme="light"] .hb-input {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.14);
    color: var(--text);
}
[data-theme="light"] .hb-input::placeholder { color: rgba(20,21,26,0.35); }
[data-theme="light"] .hb-input:focus { background: rgba(58,117,184,0.05); border-color: #3a75b8; box-shadow: 0 0 0 3px rgba(58,117,184,0.1); }
[data-theme="light"] .hb-toggle input:checked + .hb-toggle-track { background: #3a75b8; border-color: #3a75b8; box-shadow: 0 0 10px rgba(58,117,184,0.3); }
[data-theme="light"] .hb-toggle input:checked + .hb-toggle-track::after { background: #fff; }

.hb-select-inline {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2rem;
}

/* Extras toggles */
.hb-extras {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.hb-toggle-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 0.2rem;
}

.hb-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    user-select: none;
}

.hb-toggle input { display: none; }

.hb-toggle-track {
    width: 40px; height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.hb-toggle-track::after {
    content: '';
    position: absolute;
    left: 2px; top: 2px;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}

.hb-toggle input:checked + .hb-toggle-track {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(255,204,0,0.4);
}

.hb-toggle input:checked + .hb-toggle-track::after {
    left: calc(100% - 18px);
    background: #14130a;
}

.hb-toggle-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
}

/* Submit row */
.hb-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0.5rem;
}

.hb-payment-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hb-pay-label {
    font-size: 0.75rem;
    color: var(--text-dim);
    font-weight: 600;
}

.hb-pay-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hb-pay-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,204,0,0.2);
    border-color: var(--gold);
}

.hb-pay-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* The Book Now button */
.hb-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, #FFB020 0%, #E39A14 50%, #FFB020 100%);
    background-size: 200% auto;
    color: #14130a;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 28px rgba(255,204,0,0.4), 0 0 0 0 rgba(255,204,0,0);
}

.hb-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 14px 36px rgba(255,204,0,0.5), 0 0 0 4px rgba(255,204,0,0.12);
}

.hb-btn:active { transform: translateY(0) scale(0.98); }

.hb-btn-wa { width: 18px; height: 18px; flex-shrink: 0; }
.hb-btn-text { position: relative; z-index: 1; }
.hb-btn-arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.22s ease; }
.hb-btn:hover .hb-btn-arrow { transform: translateX(4px); }

/* Shine sweep animation */
.hb-btn-shine {
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: hbShine 3s ease-in-out infinite;
}

@keyframes hbShine {
    0%   { left: -75%; }
    60%  { left: 130%; }
    100% { left: 130%; }
}

/* Shake on error */
@keyframes hbShake {
    0%,100%{ transform: translateX(0); }
    20%    { transform: translateX(-8px); }
    40%    { transform: translateX(8px); }
    60%    { transform: translateX(-5px); }
    80%    { transform: translateX(5px); }
}
.hb-shake { animation: hbShake 0.6s ease; }

/* Trust badge row */
.hb-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.75rem;
}

.hb-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dim);
    transition: all 0.22s ease;
}

.hb-badge:hover {
    background: var(--gold-soft);
    border-color: var(--gold);
    color: var(--text);
    transform: translateY(-1px);
}

[data-theme="light"] .hb-badge {
    background: rgba(20,21,26,0.04);
    border-color: rgba(20,21,26,0.1);
}

/* Responsive */
@media (max-width: 860px) {
    .hb-card { padding: 1.75rem 1.25rem 1.5rem; }
    .hb-submit-row { flex-direction: column; align-items: stretch; }
    .hb-btn { justify-content: center; width: 100%; }
    .hb-payment-row { justify-content: center; }
}

@media (max-width: 640px) {
    .hb-row { grid-template-columns: 1fr; }
    .hb-row-extras { grid-template-columns: 1fr 1fr; }
    .hb-steps { display: none; }
}

/* =========================================================
   FLIGHT SCHEDULE TABLE (used on airport.html)
========================================================= */
.schedule-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    background: var(--panel);
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.schedule-table th,
.schedule-table td {
    text-align: left;
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.schedule-table thead th {
    background: var(--gold-soft);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.schedule-table tbody tr { border-top: 1px solid var(--panel-border); }
.schedule-table tbody tr:hover { background: rgba(255, 204, 0, 0.05); }

.schedule-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.schedule-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .schedule-table { min-width: 560px; }
}

/* =========================================================
   BOOKING FORM (used on book.html)
========================================================= */

.booking-section {
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../Assets/Images/gallery/vw-taxi-hero.png');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.16;
    z-index: 0;
}

.booking-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
    z-index: 0;
}

.booking-section .container { position: relative; z-index: 1; }

.booking-panel {
    position: relative;
    z-index: 2;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 2rem;
}

.routes-panel {
    background: var(--gold);
    color: #14151a;
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.routes-panel label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.8px; margin-bottom: 0.5rem; opacity: 0.75; }

.pickup-select {
    background: #14151a; color: #fff; border: none; border-radius: 10px;
    padding: 0.85rem 1.5rem; font-size: 1rem; font-weight: 600; cursor: pointer;
    min-width: 220px; text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.field label { display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.8px; color: var(--gold); margin-bottom: 0.5rem; }

.field .input-wrap { position: relative; display: flex; align-items: center; }
.field .input-wrap .icon { position: absolute; left: 0.9rem; font-size: 1rem; opacity: 0.85; }

.field input, .field select, .field textarea {
    width: 100%;
    background: var(--field-bg);
    border: 1px solid var(--field-border);
    border-radius: 10px;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    color: #fff;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
}

.field textarea { padding-left: 1rem; resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.5); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.12); }
.field select { appearance: none; cursor: pointer; }
.field select option { color: #000; }

.checkboxes { display: flex; align-items: center; gap: 1.5rem; padding-top: 1.6rem; }
.checkboxes label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; font-weight: 600; cursor: pointer; }
.checkboxes input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }

.payment-note { margin-top: 0.9rem; font-size: 0.85rem; color: var(--text-dim); text-align: center; }

/* =========================================================
   PAYMENT ICONS (Flexible Payment card)
========================================================= */
.payment-logos {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.1rem;
    flex-wrap: wrap;
}

.payment-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.22s ease;
    cursor: default;
    flex-shrink: 0;
}

.payment-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.payment-icon:hover {
    transform: translateY(-3px) scale(1.08);
    border-color: var(--gold);
    box-shadow: 0 6px 18px rgba(255, 176, 32, 0.25);
}

/* Tooltip label */
.payment-icon::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 12, 16, 0.92);
    color: #f5f6f8;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    white-space: nowrap;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.18s ease;
    z-index: 10;
}

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

[data-theme="light"] .payment-icon {
    border-color: rgba(20,21,26,0.12);
}
[data-theme="light"] .payment-icon::after {
    background: rgba(20,21,26,0.88);
}

/* =========================================================
   FOOTER
========================================================= */
footer {
    background: var(--bg-alt);
    border-top: 1px solid var(--panel-border);
    padding: 3.5rem 0 1.5rem;
}

.footer-map {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
    margin-bottom: 2.5rem;
    background: var(--bg-alt);
}

.footer-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

.location-map {
    width: 100%;
    max-width: var(--max-width);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--panel-border);
    background: var(--bg-alt);
}

.location-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

@media (max-width: 640px) {
    .location-map iframe { height: 300px; }
}

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

.footer-col h4 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    padding: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.footer-col p, .footer-col a { color: var(--text-dim); font-size: 0.9rem; display: block; margin-bottom: 0.6rem; transition: var(--transition); }
.footer-col a:hover { color: var(--gold); }

.footer-weather #weatherTemp { color: var(--gold); font-weight: 700; }

.footer-qr { margin-top: 1rem; }
.footer-qr-label { font-size: 0.75rem; font-weight: 700; margin-bottom: 8px; opacity: 0.8; }
.footer-qr-img { background: #fff; padding: 6px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); }

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    border-top: 1px solid var(--panel-border);
    padding-top: 1.5rem;
}

/* =========================================================
   WHATSAPP FLOAT
========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px; height: 56px;
    background: var(--wa);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    z-index: 500;
    transition: var(--transition);
}

.whatsapp-float:hover { background: var(--wa-hover); transform: translateY(-3px) scale(1.05); }

@media (max-width: 640px) {
    .routes-panel { flex-direction: column; align-items: stretch; }
}

/* =========================================================
   COOKIE / LOCAL STORAGE NOTICE
========================================================= */
.cookie-banner {
    position: fixed;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1500;
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--panel);
    border: 1px solid var(--panel-border);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
}

.cookie-banner.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner p {
    color: var(--text-dim);
    font-size: 0.85rem;
    flex: 1 1 320px;
    margin: 0;
}

.btn-sm { padding: 0.6rem 1.2rem; font-size: 0.85rem; flex-shrink: 0; }

@media (max-width: 760px) {
    .cookie-banner { bottom: 6rem; }
}

/* =========================================================
   LIGHT CONTACT VARIANT
========================================================= */
.light-section {
    background: #ffffff;
    color: #14151a;
    padding: 5rem 0;
}

.light-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.light-title h1 {
    display: inline-block;
    background: var(--gold);
    color: #14151a;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    position: relative;
}

.light-title h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.contact-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.light-card {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 2rem;
}

.light-card h2, .contact-info-heading {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #14151a;
}

.contact-photo {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.light-field { margin-bottom: 1.25rem; }

.light-field label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #14151a;
}

.light-field input, .light-field textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e2e4e9;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: #14151a;
    transition: var(--transition);
}

.light-field textarea { min-height: 130px; resize: vertical; }

.light-field input::placeholder, .light-field textarea::placeholder { color: #9aa0ab; }

.light-field input:focus, .light-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-soft);
}

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

.info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }

.info-list li { display: flex; align-items: flex-start; gap: 1rem; list-style: none; }

.info-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    background: var(--gold);
    color: #14151a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

.info-list strong { display: block; color: #14151a; font-size: 1rem; margin-bottom: 0.2rem; }
.info-list p, .info-list a { color: #5b616e; font-size: 0.92rem; }
.info-list a:hover { color: var(--gold-dark); }

.follow-us {
    background: #f4f5f7;
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.follow-us h3 { font-size: 1rem; font-weight: 800; margin-bottom: 1rem; color: #14151a; }

.social-icons { display: flex; gap: 0.75rem; }

.social-icons a {
    width: 40px; height: 40px;
    background: var(--gold);
    color: #14151a;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icons a:hover { background: var(--gold-dark); transform: translateY(-2px); }


/* =========================================================
   HERO — animated VW taxi scene
========================================================= */
.hero-night {
    background-image:
        radial-gradient(ellipse 70% 50% at 50% 115%, rgba(110,150,215,0.16), transparent 65%),
        linear-gradient(180deg, #05070c 0%, #0a101c 45%, #0f1727 78%, #131c2d 100%);
    filter: none;
}

.hero-car-scene {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.hero-car-scene svg { width: 100%; height: auto; display: block; }

/* car drives in place with a gentle sway; the world rolls past */
.vw-taxi-group { animation: vwSway 7s ease-in-out infinite; }
@keyframes vwSway {
    0%   { transform: translateX(0)   rotate(0deg); }
    25%  { transform: translateX(10px) rotate(0.15deg); }
    75%  { transform: translateX(-8px) rotate(-0.1deg); }
    100% { transform: translateX(0)   rotate(0deg); }
}

/* Van body bounce — heavier van = deeper bob */
.vw-body-bob { animation: vwBob 0.7s ease-in-out infinite alternate; }
@keyframes vwBob {
    from { transform: translateY(0); }
    to   { transform: translateY(-5px); }
}

/* Wheel spin */
.vw-wheel {
    animation: vwSpin 0.5s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes vwSpin { to { transform: rotate(360deg); } }

/* Exhaust puffs */
.vw-puff {
    opacity: 0;
    animation: vwPuff 1.8s ease-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.vw-puff2 { animation-delay: 0.6s; }
.vw-puff3 { animation-delay: 1.2s; }
@keyframes vwPuff {
    0%   { opacity: 0;   transform: translate(0,0)       scale(0.3); }
    10%  { opacity: 0.55; }
    100% { opacity: 0;   transform: translate(-70px,-40px) scale(2.2); }
}

/* Headlight beam pulse */
.vw-beam { animation: vwBeamPulse 3s ease-in-out infinite; }
@keyframes vwBeamPulse {
    0%, 100% { opacity: 0.5; }
    50%      { opacity: 0.9; }
}

/* Roof TAXI sign glow */
.taxi-sign-glow { animation: taxiGlow 1.4s ease-in-out infinite alternate; }
@keyframes taxiGlow {
    from { opacity: 0.3; filter: blur(0px); }
    to   { opacity: 1.0; filter: blur(1px); }
}

/* Wiper sweep */
.vw-wiper { animation: wiperSweep 2.5s ease-in-out infinite alternate; transform-origin: 278px 95px; transform-box: fill-box; }
@keyframes wiperSweep {
    from { transform: rotate(0deg); }
    to   { transform: rotate(20deg); }
}

/* Snow spray kicked up by wheels */
.vw-spray {
    opacity: 0;
    animation: vwSprayKick 0.75s linear infinite;
    transform-box: fill-box;
    transform-origin: center;
}
.vw-spray2 { animation-delay: 0.18s; }
.vw-spray3 { animation-delay: 0.09s; }
.vw-spray4 { animation-delay: 0.27s; }
.vw-spray5 { animation-delay: 0.36s; }
.vw-spray6 { animation-delay: 0.45s; }
@keyframes vwSprayKick {
    0%   { opacity: 0;    transform: translate(0,0)        scale(0.4); }
    18%  { opacity: 0.75; }
    100% { opacity: 0;    transform: translate(-40px,-20px) scale(1.5); }
}

/* Parallax scenery — each layer wraps seamlessly every 1200px */
.vw-layer-far   { animation: vwScroll 70s linear infinite; }
.vw-layer-near  { animation: vwScroll 38s linear infinite; }
.vw-layer-trees { animation: vwScroll 16s linear infinite; }
@keyframes vwScroll { to { transform: translateX(-1200px); } }

.road-dash { stroke-dasharray: 46 30; animation: roadMove 0.5s linear infinite; }
@keyframes roadMove { to { stroke-dashoffset: -76; } }

@media (prefers-reduced-motion: reduce) {
    .vw-taxi-group, .vw-body-bob, .vw-wheel, .vw-puff, .vw-beam,
    .vw-spray, .vw-layer-far, .vw-layer-near, .vw-layer-trees,
    .road-dash, .taxi-sign-glow, .vw-wiper { animation: none; }
    .vw-spray, .vw-puff { opacity: 0; }
}

