/* ============================================
   MIAMI EXOTIC CAR RENTALS — Premium Dark Theme
   Mobile-First, One-Pager
   ============================================ */

/* --- Variables --- */
:root {
    --bg: #0A0A0A;
    --bg-card: #111111;
    --bg-elevated: #2A2A2A;
    --accent: #e8890c;
    --accent-glow: rgba(232, 137, 12, 0.35);
    --accent-hover: #f09d2a;
    --text: #E8E4DC;
    --text-muted: #8A8478;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 12px;
    --radius-sm: 8px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    transition: opacity 0.6s ease;
}

body.loaded {
    opacity: 1;
}


/* ============================================
   NEON LOGO LOADING SCREEN
   ============================================ */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    font-family: var(--font);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.loader-text {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
    animation: neonFlicker 1.5s ease-in-out infinite alternate;
}

.loader-accent {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    animation: neonGlow 1.5s ease-in-out infinite alternate;
    margin-left: 8px;
}

@keyframes neonFlicker {
    0% {
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
        text-shadow: none;
    }

    50% {
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.8);
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    100% {
        -webkit-text-stroke-color: rgba(255, 255, 255, 0.5);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@keyframes neonGlow {
    0% {
        -webkit-text-stroke-color: rgba(232, 137, 12, 0.4);
        text-shadow: none;
    }

    50% {
        -webkit-text-stroke-color: rgba(232, 137, 12, 1);
        text-shadow: 0 0 20px rgba(232, 137, 12, 0.5), 0 0 40px rgba(232, 137, 12, 0.2);
    }

    100% {
        -webkit-text-stroke-color: rgba(232, 137, 12, 0.6);
        text-shadow: 0 0 10px rgba(232, 137, 12, 0.3);
    }
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #f09d2a);
    border-radius: 2px;
    animation: fillBar 1.2s ease-out forwards;
}

@keyframes fillBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

body {
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    /* Hide scrollbar for a cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    display: none;
}

body.loaded {
    overflow-y: auto;
}

/* Mouse Tracker Glow Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle closest-side, rgba(232, 137, 12, 0.15) 0%, transparent 100%);
    transform: translate(calc(var(--mouse-x, 0px) - 300px), calc(var(--mouse-y, 0px) - 300px));
    pointer-events: none;
    z-index: 1;
    /* Stay behind content */
    opacity: 0;
    transition: opacity 0.5s ease;
}

body:hover::before {
    opacity: 1;
}

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

@keyframes borderRotate {
    0% {
        --angle: 0deg;
    }

    100% {
        --angle: 360deg;
    }
}

/* Subtle site edge glow — injected as real div by app.js */
.site-border-glow {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
    /* Very faint static base on all 4 edges (~30% of original) */
    background:
        radial-gradient(ellipse 80% 25% at 50% 0%, rgba(232, 137, 12, 0.065) 0%, transparent 100%),
        radial-gradient(ellipse 80% 25% at 50% 100%, rgba(232, 137, 12, 0.065) 0%, transparent 100%),
        radial-gradient(ellipse 20% 80% at 0% 50%, rgba(232, 137, 12, 0.05) 0%, transparent 100%),
        radial-gradient(ellipse 20% 80% at 100% 50%, rgba(232, 137, 12, 0.05) 0%, transparent 100%);
}

/* Moving spotlight blob that travels clockwise around the perimeter */
.site-border-glow::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(232, 137, 12, 0.13);
    filter: blur(90px);
    top: 50%;
    left: 50%;
    margin: -180px 0 0 -180px;
    animation: perimeterOrbit 14s linear infinite;
    pointer-events: none;
}

@keyframes perimeterOrbit {
    0% {
        transform: translate(0, -50vh);
    }

    /* top center */
    12.5% {
        transform: translate(50vw, -50vh);
    }

    /* top-right */
    25% {
        transform: translate(50vw, 0);
    }

    /* right center */
    37.5% {
        transform: translate(50vw, 50vh);
    }

    /* bottom-right */
    50% {
        transform: translate(0, 50vh);
    }

    /* bottom center */
    62.5% {
        transform: translate(-50vw, 50vh);
    }

    /* bottom-left */
    75% {
        transform: translate(-50vw, 0);
    }

    /* left center */
    87.5% {
        transform: translate(-50vw, -50vh);
    }

    /* top-left */
    100% {
        transform: translate(0, -50vh);
    }

    /* top center */
}

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

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Accent Utility --- */
.accent {
    color: var(--accent);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: 1;
}

.btn:hover::before {
    left: 200%;
}

.btn svg {
    transition: transform var(--transition);
    z-index: 2;
    position: relative;
}

.btn span {
    z-index: 2;
    position: relative;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent), #f09d2a);
    color: #000;
    box-shadow: 0 4px 15px rgba(232, 137, 12, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Glare sweep animation on glow buttons */
.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    animation: btn-glare 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes btn-glare {
    0%, 75% { left: -100%; }
    100% { left: 150%; }
}

.btn-glow:hover {
    background: linear-gradient(135deg, #f09d2a, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 137, 12, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-glow:hover::before {
    animation: none;
    left: -100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile-only pulse when user taps fleet card image */
.btn.mobile-highlight {
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.55), 0 0 18px rgba(255, 107, 0, 0.55);
    transform: translateY(-1px) scale(1.02);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: var(--radius);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: 6px;
}

/* Shimmering Hotel Image Wrapper */
.hotel-img-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.hotel-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: imgShimmerSweep 4s infinite linear;
}

@keyframes imgShimmerSweep {
    0% {
        left: -150%;
    }

    50% {
        left: 200%;
    }

    100% {
        left: 200%;
    }

    /* Pause interval inside animation */
}

/* Base style for magnetic buttons */
.btn.magnetic {
    transition: transform 0.1s linear, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.logo span {
    color: var(--accent);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.nav-active::after {
    width: 100%;
}

/* Active page — desktop */
.nav-links a.nav-active {
    color: #fff;
}

/* Active page — mobile overlay */
@media (max-width: 900px) {
    .nav-links.open a.nav-active {
        color: var(--accent);
    }
}

.nav-cta {
    display: block;
}

.hamburger {
    display: none;
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media(max-width:900px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 10000;
        position: relative;
    }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background: rgba(6, 6, 6, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 2.5rem;
        z-index: 9999;
        animation: slideInFade 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .nav-links.open a {
        font-size: 1.5rem;
        font-weight: 300;
        letter-spacing: 3px;
    }
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: clip; /* clip bg bleed without creating scroll container (overflow:hidden blocks touch scroll) */
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.92) 0%, rgba(6, 6, 6, 0.6) 40%, rgba(6, 6, 6, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 160px 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    /* Space between main group and trust card */
    width: 100%;
}

.hero-main-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(232, 137, 12, 0.12);
    color: var(--accent);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(232, 137, 12, 0.3);
    margin-bottom: 28px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.7;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    /* Reduced from 60px since promo banner follows directly */
    justify-content: center;
}

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

@keyframes chromic-spin {
    0% {
        --chromic-angle: 0deg;
    }

    100% {
        --chromic-angle: 360deg;
    }
}

/* Soft chromatic glow card */
.hero-trust {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    background: rgb(10, 10, 10);
    padding: 20px 40px;
    border-radius: 20px;
    width: fit-content;
    overflow: hidden;
}

/* Glare sweep across the trust banner */
.hero-trust::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -80%;
    width: 50%;
    height: 220%;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.07) 50%, transparent 60%);
    transform: skewX(-15deg);
    animation: trustGlare 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes trustGlare {
    0% {
        left: -80%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        left: 130%;
        opacity: 1;
    }

    41% {
        opacity: 0;
    }

    100% {
        left: 130%;
        opacity: 0;
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.trust-item span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

@media(max-width:600px) {
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 190px 20px 100px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 1.05rem;
        padding: 0 10px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 320px;
    }

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

    .trust-divider {
        display: none;
    }

    .hero-trust {
        gap: 20px;
        padding: 15px 20px;
        border-radius: 15px;
    }

    .trust-item strong {
        font-size: 1.2rem;
    }
}

/* ============================================
   BOOKING BAR
   ============================================ */
.booking-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
    position: relative;
    z-index: 20;
}

.booking-form {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.form-group input,
.form-group select {
    background: var(--bg);
    border: 1px solid var(--border);
    color: #fff;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #111;
}

.btn-form {
    min-width: 180px;
    justify-content: center;
}

@media(max-width:768px) {
    .booking-form {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }
}

/* ============================================
   SECTIONS (Generic)
   ============================================ */
.section {
    padding: 80px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 40px;
}

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

.section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FLEET
   ============================================ */
.fleet-section {
    background: var(--bg);
}

.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: 0;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

/* ============================================
   CAR CAROUSEL — "Choose Your Ride"
   ============================================ */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    margin: 40px 0 20px;
}

.carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    overflow: hidden;
    padding: 30px 0;
    position: relative;
}

.carousel-slide {
    flex-shrink: 0;
    width: 260px;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(2px) brightness(0.5);
    cursor: pointer;
    position: absolute;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide.active {
    width: 420px;
    height: 260px;
    opacity: 1;
    transform: scale(1);
    filter: none;
    border-color: var(--accent);
    box-shadow: 0 0 40px rgba(232, 137, 12, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 3;
    position: relative;
}

.carousel-slide.prev,
.carousel-slide.next {
    opacity: 0.5;
    transform: scale(0.85);
    filter: blur(1px) brightness(0.6);
    z-index: 2;
    position: relative;
}

.carousel-slide.far {
    opacity: 0;
    transform: scale(0.7);
    pointer-events: none;
    position: absolute;
}

/* Arrows */
.carousel-arrow {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.carousel-arrow:hover {
    background: rgba(232, 137, 12, 0.1);
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
}

.arrow-label {
    position: absolute;
    font-size: 0.6rem;
    color: var(--text-muted);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.carousel-prev .arrow-label {
    right: calc(100% + 8px);
}

.carousel-next .arrow-label {
    left: calc(100% + 8px);
}

/* Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 30px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent);
    box-shadow: 0 0 8px rgba(232, 137, 12, 0.4);
    width: 24px;
    border-radius: 4px;
}

/* Details Panel */
.carousel-details {
    max-width: 600px;
    margin: 0 auto;
}

.carousel-details-inner {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Frosted edge glow on details panel */
.carousel-details-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(232, 137, 12, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 30%,
            transparent 50%,
            rgba(255, 255, 255, 0.03) 70%,
            rgba(232, 137, 12, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.carousel-car-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.carousel-car-specs {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.carousel-car-price {
    margin-bottom: 20px;
}

.carousel-car-price .car-price {
    font-size: 2rem;
}

.carousel-cta {
    display: inline-flex;
}

@media (max-width: 768px) {
    .carousel-slide.active {
        width: 280px;
        height: 180px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        width: 160px;
        height: 110px;
    }

    .arrow-label {
        display: none;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-details-inner {
        padding: 20px;
    }

    .carousel-car-name {
        font-size: 1.3rem;
    }

    .carousel-car-specs {
        flex-wrap: wrap;
        gap: 10px;
    }
}

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

@keyframes rotateCardBorder {
    to {
        --card-angle: 360deg;
    }
}

.car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: visible;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

.car-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    padding: 2px;
    background: conic-gradient(from var(--card-angle) at 50% 50%, transparent 40%, rgba(232, 137, 12, 1), transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.car-card:hover::before {
    opacity: 1;
    animation: rotateCardBorder 3s linear infinite;
}

.car-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(232, 137, 12, 0.4), inset 0 0 0 1px rgba(232, 137, 12, 0.5);
    background: rgba(40, 40, 40, 0.95);
}

.car-card.hidden {
    display: none;
}

.car-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #000;
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.85;
    transform: scale(1.02);
    transform-origin: center center;
}

.car-card:hover .car-img-wrap img {
    transform: scale(1.12) translateY(-2px);
    opacity: 1;
    filter: brightness(1.15) contrast(1.05);
}

/* Urgency pill — base styles (applies on all pages: fleet, brand, homepage) */
.urgency-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 20px;
    padding: 3px 10px;
    white-space: nowrap;
}

/* Urgency pill as image overlay — no layout gap on cards without one */
.car-img-wrap .urgency-pill {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 3;
    margin: 0;
    background: rgba(8, 8, 8, 0.82);
    border-color: rgba(255, 107, 53, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.car-tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.tag-green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.tag-orange {
    background: rgba(232, 137, 12, 0.15);
    color: var(--accent);
    border: 1px solid rgba(232, 137, 12, 0.3);
}

.tag-gold {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.car-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.car-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    min-height: 3.4rem;
}

.car-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -0.2px;
    line-height: 1.3;
    color: #fff;
}

.car-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.car-specs span {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.car-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 800;
}

.car-price small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
}

/* ============================================
   IMAGE GALLERY
   ============================================ */
.car-gallery {
    margin-top: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Hidden gallery items (beyond first 4) — toggled by JS */
.gallery-item-hidden {
    display: none;
}

.gallery-grid.gallery-expanded .gallery-item-hidden {
    display: block;
}

/* "View More Photos" / "Show Less" button */
.gallery-view-more-btn {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    margin-top: 0;
}

.gallery-view-more-btn:hover {
    background: linear-gradient(135deg, rgba(232,137,12,0.15), rgba(232,137,12,0.25));
    border-color: var(--accent);
    color: var(--accent);
}

.gallery-grid.gallery-expanded .gallery-view-more-btn {
    /* Button stays visible when expanded, text changes to "Show Less" via JS */
}

/* ============================================
   WHY US
   ============================================ */
.why-section {
    background: var(--bg-elevated);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.why-card:hover {
    border-color: rgba(232, 137, 12, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: linear-gradient(135deg, rgba(232, 137, 12, 0.08), transparent);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

@media(max-width:600px) {
    .stat-num {
        font-size: 2.2rem;
    }
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-section {
    background: var(--bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all var(--transition);
}

.review-card:hover {
    border-color: rgba(232, 137, 12, 0.2);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--accent);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.review-card p {
    color: #ccc;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #f09d2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    color: #000;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

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

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--bg-elevated);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(232, 137, 12, 0.3);
}

.faq-q {
    width: 100%;
    padding: 18px 20px;
    background: 0;
    border: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

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

.faq-chevron {
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    background: var(--bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

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

.contact-info .section-label {
    text-align: left;
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-row a {
    color: var(--accent);
    transition: color var(--transition);
}

.contact-row a:hover {
    color: var(--accent-hover);
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: #fff;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    outline: 0;
    transition: border-color var(--transition);
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

.contact-form select option {
    background: #111;
}

/* ============================================
   NEWSLETTER SIGNUP (above footer)
   ============================================ */
.newsletter-section {
    background: #1a1a1a;
    padding: 48px 0;
    border-top: 1px solid var(--border);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-heading {
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text);
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.newsletter-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
    min-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius) 0 0 var(--radius);
    background: #f1f1f1;
    color: #111;
    font-size: 0.95rem;
    font-family: var(--font);
    outline: none;
    transition: box-shadow var(--transition);
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--accent);
}

.newsletter-btn {
    padding: 14px 28px;
    background: #333;
    color: var(--text);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: background var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--accent);
    color: #fff;
}

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4ade80;
    font-size: 0.95rem;
    font-weight: 500;
    min-width: 400px;
    justify-content: center;
}

@media (max-width: 768px) {
    .newsletter-inner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .newsletter-form,
    .newsletter-success {
        min-width: 0;
        width: 100%;
        max-width: 480px;
    }

    .newsletter-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 36px 0;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }

    .newsletter-input {
        border-radius: var(--radius);
    }

    .newsletter-btn {
        border-radius: var(--radius);
        padding: 14px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #020202;
    padding: 64px 0 24px;
    border-top: 1px solid var(--border);
}

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

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

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

.footer-brand .logo {
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 0;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   MOBILE BOTTOM NAV
   ============================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 20px;
    /* Floating detachment */
    left: 20px;
    width: calc(100% - 40px);
    z-index: 998;
    /* PERF: killed backdrop-filter blur(25px) — sticky bookbar
       re-blurred the entire viewport every scroll frame. */
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7), 0 0 20px rgba(232, 137, 12, 0.15);
    /* Strong shadow and subtle glow */
    border-radius: 24px;
    /* Fully rounded corners */
    padding: 10px 15px;
    /* Adjust padding for rounded pill shape */
    justify-content: space-between;
}

@media(max-width:768px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 90px;
        /* Increased padding-bottom to account for floating nav */
    }
}

.mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    transition: color var(--transition);
    position: relative;
}

.mbn-item svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.mbn-item.active,
.mbn-item:hover {
    color: var(--accent);
}

.mbn-item.active svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(232, 151, 29, 0.5));
}

.mbn-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--accent);
    border-radius: 4px;
    box-shadow: 0 0 8px var(--accent);
    animation: mbnPulse 2s infinite alternate;
}

@keyframes mbnPulse {
    0% {
        opacity: 0.6;
        box-shadow: 0 0 4px var(--accent);
        width: 16px;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 12px var(--accent);
        width: 24px;
    }
}

.mbn-call {
    color: var(--accent);
}

/* ============================================
   MOBILE ACTION BAR (Car Details) - ON TOP of nav
   ============================================ */
#mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    #mobile-action-bar {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 100px;
        left: 12px;
        right: 12px;
        gap: 10px;
        z-index: 999;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        padding: 12px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .mobile-price-row {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 4px 4px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-price-current {
        font-size: 1.4rem;
        font-weight: 800;
        color: #fff;
    }

    .mobile-price-retail {
        font-size: 0.75rem;
        color: var(--text-muted);
        text-decoration: line-through;
    }

    .mobile-action-btns {
        display: flex;
        gap: 10px;
    }

    .mobile-action-btn {
        flex: 1;
        padding: 14px 16px;
        font-family: var(--font);
        font-size: 0.95rem;
        font-weight: 700;
        text-align: center;
        text-decoration: none;
        border-radius: 12px;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
    }

    .mobile-action-book {
        background: linear-gradient(135deg, var(--accent), #f09d2a);
        color: #000;
        box-shadow: 0 0 20px rgba(232, 137, 12, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .mobile-action-book:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(232, 137, 12, 0.8), 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    .mobile-action-promo {
        background: rgba(232, 137, 12, 0.2);
        color: var(--accent);
        border: 2px solid var(--accent);
        box-shadow: 0 0 12px rgba(232, 137, 12, 0.3);
    }

    .mobile-action-promo:hover {
        background: rgba(232, 137, 12, 0.35);
        transform: translateY(-1px);
    }
}

/* ============================================
   NAVBAR DROPDOWN (DESKTOP)
   ============================================ */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    position: relative;
    transition: color var(--transition);
    text-decoration: none;
}

.nav-dropdown-btn:hover,
.nav-dropdown:hover .nav-dropdown-btn {
    color: #fff;
    text-decoration: none;
}

.dropdown-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    margin-left: 2px;
}

.dropdown-arrow:hover {
    background: rgba(255,255,255,0.1);
}

.nav-dropdown.active .dropdown-arrow svg {
    transform: rotate(180deg);
}

.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav-dropdown-btn:hover::after,
.nav-dropdown:hover .nav-dropdown-btn::after {
    width: 100%;
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-card);
    min-width: 220px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown.active .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all var(--transition);
    text-align: left;
}

.nav-dropdown-content a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 24px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 6px 16px;
}

/* ============================================
   ANIMATIONS (scroll reveal)
   ============================================ */
/* .reveal class is added by app.js — only hides content after JS runs */
/* Without JS, elements are naturally visible (no class = no hiding) */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-loaded .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ADVANCED PRICING & AESTHETICS
   ============================================ */

/* Outline Glow Animations for Cards */

.car-card,
.why-card,
.review-card {
    position: relative;
}

/* Super High-End Dynamic Traveling Light Border */
.car-card::after,
.why-card::after,
.review-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: none;
    padding: 1.5px;
    border-radius: inherit;
    background: conic-gradient(from var(--angle), transparent 50%, var(--accent) 70%, transparent 90%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderRotate 4s linear infinite;
    z-index: 20;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.car-card:hover::after,
.why-card:hover::after,
.review-card:hover::after {
    opacity: 1;
    background: conic-gradient(from var(--angle), transparent 20%, var(--accent) 80%, transparent 100%) border-box;
    animation-duration: 2s;
    box-shadow: inset 0 0 20px rgba(232, 137, 12, 0.2);
}

.car-card:hover,
.why-card:hover,
.review-card:hover {
    border-color: transparent;
    box-shadow: 0 0 60px rgba(232, 137, 12, 0.25), 0 0 100px rgba(255, 255, 255, 0.02);
    transform: translateY(-8px);
}

/* Pricing Hierarchy */
.price-context {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-retail {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    opacity: 0.6;
}

.price-current {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-current .car-price {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.price-current .price-period {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
}

.price-tag {
    font-size: 0.62rem;
    color: var(--accent);
    background: rgba(232, 137, 12, 0.1);
    border: 1px solid rgba(232, 137, 12, 0.28);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 5px;
    padding: 3px 9px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}
.price-tag::before {
    content: '✦';
    font-size: 0.55em;
    opacity: 0.7;
}

/* =========================================
   CAR DETAILS PAGE SPECIFIC
========================================= */

/* Hero Section override for single car */
/* (old car-hero System 1 rules removed — superseded by the redesigned rules below) */

/* Make Desktop Booking Widget Sticky */
.car-booking-widget {
    position: sticky;
    top: 100px;
    z-index: 10;
    align-self: start;
}

/* Responsive adjustments */
/* 640px matches JS mobile action bar breakpoint — keep in sync */
@media (max-width: 640px) {
    .car-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 140px;
        /* Space for action buttons + mobile nav */
    }

    /* Hide full booking widget on mobile - JS injects compact button bar */
    .car-booking-widget {
        display: none !important;
    }
}

/* Tablet: keep sidebar but make grid stack-friendly */
@media (max-width: 900px) and (min-width: 641px) {
    .car-details-grid {
        grid-template-columns: 1fr 280px;
        gap: 20px;
    }
}

/* (old 768px car-hero height/car-quick-stats override removed — dead code) */

/* =========================================
   GLOWING PRICING TOOLTIP BUBBLE
========================================= */

.price-tooltip-trigger {
    cursor: pointer;
    position: relative;
}

/* Invisible bridge on trigger — extends upward to meet tooltip */
.price-tooltip-trigger::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.price-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: calc(50% + var(--tt-nudge, 0px));
    transform: translateX(-50%) translateY(10px) scale(0.95);
    width: 280px;
    max-width: calc(100vw - 32px);
    background: rgba(20, 20, 20, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(232, 137, 12, 0.25);
    border-radius: 14px;
    padding: 16px 18px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 50;
    box-shadow:
        0 0 25px rgba(232, 137, 12, 0.15),
        0 0 60px rgba(232, 137, 12, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.6);
}

/* Invisible bridge to keep tooltip hoverable — extended for diagonal mouse paths */
.price-tooltip::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -20px;
    width: calc(100% + 40px);
    height: 18px;
    background: transparent;
}

/* Tooltip arrow */
.price-tooltip::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(20, 20, 20, 0.92);
    border-right: 1px solid rgba(232, 137, 12, 0.25);
    border-bottom: 1px solid rgba(232, 137, 12, 0.25);
}

/* Show tooltip on hover (desktop) or tap-toggle (mobile) */
.price-tooltip-trigger:hover .price-tooltip,
.price-tooltip:hover,
.price-tooltip-trigger.tt-open .price-tooltip,
.price-tooltip-trigger:focus .price-tooltip,
.price-tooltip-trigger:focus-within .price-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.tooltip-header {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 4px;
}

.tooltip-row>span:last-child {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
}

.tooltip-row+.tooltip-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tooltip-duration {
    color: var(--text-muted);
    font-weight: 500;
}

.tooltip-price {
    color: #fff;
    font-weight: 700;
}

.tooltip-save {
    font-size: 0.6rem;
    background: rgba(232, 137, 12, 0.12);
    color: rgba(232, 137, 12, 0.7);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 6px;
    white-space: nowrap;
}

.tooltip-save.tooltip-mid {
    background: rgba(232, 137, 12, 0.18);
    color: rgba(232, 137, 12, 0.85);
}

.tooltip-best {
    background: rgba(232, 137, 12, 0.25);
    color: var(--accent);
    text-shadow: 0 0 8px rgba(232, 137, 12, 0.3);
}

/* Clickable tooltip rows */
.tooltip-row-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border-radius: 8px;
    padding: 8px 6px;
    margin: 0 -6px;
    transition: all 0.2s ease;
}

.tooltip-row-link:hover {
    background: rgba(232, 137, 12, 0.1);
    box-shadow: 0 0 12px rgba(232, 137, 12, 0.15);
    transform: translateX(2px);
}

.tooltip-row-link:hover .tooltip-duration {
    color: var(--accent);
}

.tooltip-row-link:hover .tooltip-price {
    color: var(--accent);
}

/* Pulsing glow on the "Multi-Day Promo" tag to hint interactivity */
.price-tooltip-trigger .price-tag {
    animation: pulseTag 2s ease-in-out infinite;
}

@keyframes pulseTag {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 137, 12, 0.4);
    }

    50% {
        box-shadow: 0 0 10px 3px rgba(232, 137, 12, 0.2);
    }
}

/* ============================================
   CAR DETAILS PAGE
   ============================================ */
.car-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end;
}

.car-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    view-transition-name: car-hero;
}

.car-hero-content {
    position: relative;
    z-index: 2;
    padding: 140px 0 60px;

    /* Elegant Desktop Grid Layout */
    display: grid !important;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "title    title"
        "specs    cta";
    gap: 30px;
    align-items: end;
    text-align: left !important;
}

.back-link {
    grid-column: 1 / -1;
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    margin-bottom: 10px;
}

.back-link:hover {
    color: var(--accent);
}

.hero-badge {
    grid-column: 1 / -1;
    display: inline-block;
    padding: 4px 14px;
    border: 1px solid var(--accent);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    justify-self: start;
}

.car-hero-content h1 {
    grid-area: title;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin: 0;
}

.hero-specs {
    grid-area: specs;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    align-items: center;
}

.hero-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-specs .icon {
    font-style: normal;
    color: var(--accent);
}

/* Hero Price + CTA */
.hero-price-cta {
    grid-area: cta;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.hero-price-tag {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
}

.hero-price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
}

.hero-price-period {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-left: 2px;
}

/* (old 768px hero mobile override removed — superseded by the patch at end of file) */

/* Details Layout */
.car-details-section {
    padding-top: 60px;
}

.car-details-grid {
    display: grid;
    grid-template-columns: 1fr clamp(300px, 32%, 380px);
    gap: clamp(24px, 4vw, 60px);
    align-items: start;
}

/* Mobile: stack to single column (must come after base rule) */
@media (max-width: 640px) {
    .car-details-grid {
        grid-template-columns: 1fr;
    }
}

.car-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.detail-block {
    padding: 32px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Translucent edge glow — frosted card feel */
.detail-block::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(232, 137, 12, 0.15) 0%,
            rgba(255, 255, 255, 0.06) 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.04) 75%,
            rgba(232, 137, 12, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.detail-section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Performance Specs Grid */
.specs-grid-detail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.spec-card {
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.5;
    pointer-events: none;
}

.spec-card:hover {
    background: radial-gradient(circle at center, transparent 30%, rgba(232, 137, 12, 0.08) 100%);
    border-color: rgba(232, 137, 12, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 137, 12, 0.1);
}

.spec-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--accent);
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

/* Storytelling */
.story-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.story-content p:first-child::first-letter {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    float: left;
    margin-right: 8px;
    line-height: 1;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s;
}

.feature-item:hover {
    background: rgba(232, 137, 12, 0.05);
    border-color: rgba(232, 137, 12, 0.15);
    color: #fff;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(232, 137, 12, 0.1);
    color: var(--accent);
    flex-shrink: 0;
}

/* Rental Policy */
.policy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.policy-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: border-color 0.2s;
}

.policy-item:hover {
    border-color: rgba(232, 137, 12, 0.15);
}

.policy-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    flex-shrink: 0;
}

.policy-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    flex: 1;
}

.policy-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    text-align: right;
}

/* Promise / Exchange Cards */
.detail-promises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.promise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.promise-card:hover {
    border-color: rgba(232, 137, 12, 0.25);
    background: rgba(232, 137, 12, 0.04);
    transform: translateY(-3px);
}

.promise-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(232, 137, 12, 0.1);
    color: var(--accent);
    margin: 0 auto 16px;
}

.promise-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* Booking Widget */
.car-booking-widget {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.widget-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.widget-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.widget-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.widget-form label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.widget-form input {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.2s;
}

.widget-form input:focus {
    outline: none;
    border-color: var(--accent);
}

.price-estimate {
    display: block;
    padding: 1.2rem;
    background: rgba(232, 137, 12, 0.08);
    border: 1px solid rgba(232, 137, 12, 0.3);
    border-radius: 10px;
    text-align: center;
    margin-top: 8px;
}

.price-estimate-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-estimate-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-top: 5px;
}

.price-estimate-days {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 2px;
}

.price-estimate-savings {
    margin-top: 8px;
    padding: 5px 10px;
    background: rgba(232, 137, 12, 0.15);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.widget-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.5rem;
    opacity: 0.8;
}

/* Day selector buttons */
.day-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.day-btn {
    flex: 1 0 calc(25% - 0.4rem);
    padding: 0.55rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: inherit;
    transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
}

.day-btn:hover {
    border-color: rgba(232, 137, 12, 0.5);
    color: #fff;
}

.day-btn.selected {
    background: rgba(232, 137, 12, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 0 14px rgba(232, 137, 12, 0.35), inset 0 0 8px rgba(232, 137, 12, 0.1);
}

/* Car Details Responsive — tablet range (768-900px keeps 2-col grid with widget visible) */
@media (max-width: 900px) {
    .specs-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 2-col on tablet, stacks to 1 only at 600px */
    .detail-promises {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Keep policy items side-by-side on tablet */
    .policy-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .car-hero {
        min-height: 60vh;
        /* Reduced for mobile */
    }

    .car-hero-content {
        padding: 90px 0 40px;
        /* Tighter padding */
    }

    .car-hero-content h1 {
        font-size: 2.3rem;
        /* Tighter text */
        margin: 10px 0 15px;
    }

    .hero-price-amount {
        font-size: 1.8rem;
    }

    .hero-price-cta {
        flex-direction: column;
        align-items: stretch;
        /* Stretch button full width */
        gap: 16px;
    }

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

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

    .detail-promises {
        grid-template-columns: 1fr;
    }

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

    /* Taller gallery rows on phones */
    .gallery-grid {
        grid-auto-rows: 180px;
    }

    .car-details-section {
        padding-top: 30px;
    }

    .car-info {
        gap: 24px;
    }

    .detail-block {
        padding: calc(16px + 1vw) calc(18px + 0.5vw);
        border-radius: 12px;
    }

    .detail-section-title {
        font-size: 1.4rem;
    }

    .car-booking-widget {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .promise-card {
        padding: 20px 16px;
    }

    .spec-card {
        padding: 12px;
    }

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

    .spec-value {
        font-size: 0.85rem;
    }

    /* Booking widget full-width checkout button on small screens */
    .car-booking-widget .btn {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* Very small phones (iPhone SE / 375px) */
@media (max-width: 390px) {
    .car-hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-price-amount {
        font-size: 1.6rem;
    }

    .hero-specs {
        font-size: 0.8rem;
        gap: 8px 12px;
    }
}

/* Very small phones — single-column specs and tighter details */
@media (max-width: 480px) {
    .specs-grid-detail {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .spec-card {
        padding: 10px 8px;
    }

    .spec-label {
        font-size: 0.7rem;
    }

    .spec-value {
        font-size: 0.8rem;
    }

    .detail-block {
        padding: 16px;
    }

    .car-booking-widget {
        padding: 1.2rem;
    }

    /* Widget button text stays readable without overflow */
    .car-booking-widget .btn-lg {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* --- Phase 3 UI/CTR Fixes --- */
@media(max-width:900px) {
    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-btn {
        font-size: 1.5rem !important;
        font-weight: 300 !important;
        letter-spacing: 3px !important;
        padding: 10px !important;
    }

    .dropdown-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.1);
        margin-left: 8px;
    }

    .dropdown-arrow svg {
        width: 20px;
        height: 20px;
    }

    .nav-dropdown-content {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        min-width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        display: none !important;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 15px !important;
    }

    .nav-dropdown.active .nav-dropdown-content {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: slideDownFade 0.3s ease forwards;
    }

    .nav-dropdown-content a {
        font-size: 1.1rem !important;
        padding: 5px !important;
        text-align: center !important;
        color: var(--text-muted) !important;
    }

    .nav-dropdown-content a:hover {
        background: none !important;
        color: var(--accent) !important;
        padding-left: 5px !important;
    }
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* Promo Banner — was backdrop-filter blur(20px), replaced with near-opaque bg
   to fix scroll lag (visible throughout hero scroll). */
.promo-banner-glass {
    position: relative;
    margin-top: 40px;
    background: rgba(10, 10, 10, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 14px 6px 6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: promoFloat 4s ease-in-out infinite;
    will-change: transform;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    width: fit-content;
}

.promo-banner-glass:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(232, 137, 12, 0.5);
    box-shadow: 0 15px 40px rgba(232, 137, 12, 0.3), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation-play-state: paused;
    transform: translateY(-5px);
}

.promo-banner-glass .promo-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.promo-banner-glass .promo-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-banner-glass .promo-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.promo-banner-glass .promo-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.2;
}

.promo-banner-glass .promo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.promo-banner-glass:hover .promo-arrow {
    transform: translateX(3px);
}

@keyframes promoFloat {

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

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

@media(max-width: 768px) {
    .promo-banner-glass {
        margin-top: 30px;
        width: 100%;
        max-width: 320px;
        border-radius: 20px;
        padding: 12px 14px;
        white-space: nowrap;
        gap: 10px;
    }

    .promo-banner-glass .promo-copy {
        flex: 1;
        min-width: 0;
    }

    .promo-banner-glass .promo-arrow {
        flex-shrink: 0;
        margin-left: auto;
    }
}

/* CTR Badges */
.badge-fire {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(239, 68, 68, 0.3);
    margin-left: 8px;
    animation: pulseFire 2s infinite;
    vertical-align: middle;
}

@keyframes pulseFire {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.badge-urgency {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    color: #f09d2a;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid rgba(245, 158, 11, 0.3);
    margin-left: 8px;
    animation: pulseUrgency 2s infinite;
    vertical-align: middle;
}

@keyframes pulseUrgency {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Upgraded Dropdown Desktop UI */
@media(min-width: 901px) {
    .nav-dropdown-content a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-dropdown-content a:hover {
        background: linear-gradient(90deg, rgba(232, 137, 12, 0.1), transparent) !important;
        border-right: 2px solid var(--accent);
    }
}

/* =========================================
   URGENCY & SAVINGS UI ELEMENTS
========================================= */

/* "You save $X/day" chip under the compare-at price */
.savings-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 3px 9px;
    border-radius: 4px;
    margin-top: 4px;
    width: fit-content;
}

.savings-chip svg {
    flex-shrink: 0;
}

/* Demand bar — shown below the widget header for high-demand cars */
.demand-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(232, 137, 12, 0.07);
    border: 1px solid rgba(232, 137, 12, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 1.2rem;
    font-size: 0.82rem;
}

.demand-indicator .demand-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.demand-indicator .demand-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    line-height: 1.35;
}

.demand-indicator .demand-text strong {
    color: var(--accent);
    font-weight: 700;
}

.demand-indicator .demand-bar-wrap {
    width: 64px;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}

.demand-indicator .demand-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), #f09d2a);
    animation: demandPulse 2.4s ease-in-out infinite;
}

@keyframes demandPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.65;
    }
}

/* Calculator total-savings row */
.calc-savings-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.calc-savings-highlight .savings-label {
    color: #4ade80;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.calc-savings-highlight .savings-value {
    color: #4ade80;
    font-weight: 800;
    font-size: 1rem;
}

/* =========================================
   MOBILE LAYOUT OVERRIDES (max-width: 768px)
   ========================================= */
@media(max-width: 768px) {

    /* 1. Hero Typography & Spacing */
    .hero {
        align-items: flex-start;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3rem);
        /* Smaller font to prevent cramped text */
        line-height: 1.1;
        margin-bottom: 20px;
        padding: 0 10px;
        /* Safe space on edges */
    }

    .hero p {
        font-size: 1.05rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .container.hero-content {
        padding-top: 130px;
        gap: 40px;
    }

    /* 2. Car Card Spacing (Fleet Grid) */
    .car-card {
        margin: 0 10px;
        /* Ensure cards don't touch screen edges */
    }

    .car-body {
        padding: 20px 15px;
        /* More horizontal padding internally */
    }

    /* 3. Fleet Page Filters */
    .fleet-filters {
        padding: 0 15px;
        /* Padding for the container */
    }

    .filter-container,
    .brand-filters {
        gap: 8px;
        /* Tighter gap so items don't float too far apart when wrapping */
        justify-content: center;
    }

    .filter-btn,
    .brand-btn {
        padding: 6px 14px;
        /* Slightly smaller padding for buttons */
        font-size: 0.75rem;
    }

    /* Make sure savings chip and urgency indicator fit well */
    .savings-chip {
        font-size: 0.65rem;
        padding: 3px 6px;
    }

    .demand-indicator {
        padding: 8px 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .demand-indicator .demand-bar-wrap {
        width: 100%;
        /* Full width bar on mobile */
        margin-top: 4px;
    }
}

/* ============================================
   GLOBAL GLASS BACKGROUND & UX POLISH
   ============================================ */

/* Global Frosted Glass Background Elements */
html::before {
    content: '';
    position: fixed;
    inset: -50%;
    z-index: -3;
    background:
        radial-gradient(circle at 15% 50%, rgba(232, 137, 12, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(232, 137, 12, 0.02) 0%, transparent 50%);
    filter: blur(80px);
    pointer-events: none;
    animation: orbitBackground 25s linear infinite;
}

@keyframes orbitBackground {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   INTERACTIVE TOOLTIPS
   ============================================ */

/* Visible info icon that triggers tooltip on hover */
.info-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 6px;
    font-size: 0.7rem;
    color: var(--accent);
    opacity: 0.7;
    cursor: help;
    vertical-align: middle;
    position: relative;
    transition: opacity 0.2s;
}

.info-tip:hover {
    opacity: 1;
}

[data-tooltip] {
    position: relative;
    cursor: help;
}

/* Keep pointer cursor on buttons and links that happen to have tooltips */
.btn[data-tooltip],
a[data-tooltip],
button[data-tooltip],
input[data-tooltip] {
    cursor: pointer;
}

/* Tooltip pseudo-element only renders on hover/focus to avoid 60+
   invisible backdrop-filter layers killing fleet page performance */
[data-tooltip]::after {
    content: '';
    display: none;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus::after,
[data-tooltip].tt-active::after {
    content: attr(data-tooltip);
    display: block;
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: normal;
    max-width: 280px;
    width: max-content;
    letter-spacing: 0.5px;
    opacity: 1;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1000;
}

/* Tooltip adjustments for mobile — show on tap via focus */
@media (max-width: 768px) {
    [data-tooltip]::after {
        left: 0 !important;
        transform: none !important;
        margin-left: 0;
        margin-right: 0;
        white-space: normal;
        max-width: calc(100vw - 40px);
        word-wrap: break-word;
    }
    [data-tooltip]:hover::after,
    [data-tooltip]:focus::after,
    [data-tooltip].tt-active::after {
        opacity: 1;
        transform: none !important;
        left: 0 !important;
    }
}

/* ============================================
   TRANSLUCENT FADING EDGE BORDERS
   ============================================ */

.fading-edge-container {
    position: relative;
    border-radius: inherit;
}

/* ============================================================
   CAR DETAIL PAGE — MOBILE OVERHAUL
   ============================================================ */

/* Detail blocks: reduce padding on phones */
@media (max-width: 600px) {
    .detail-block {
        padding: calc(16px + 1vw) calc(14px + 1vw);
        border-radius: 12px;
    }

    .car-info {
        gap: 20px;
    }

    .detail-section-title {
        font-size: 1.3rem;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .detail-block {
        padding: calc(12px + 1vw) calc(10px + 2vw);
    }

    /* Single-column gallery on very small phones */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
}

/* Homepage hero buttons — ensure container is centered on all mobile sizes */
@media (max-width: 768px) {
    .hero-btns {
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Sticky bottom bar button (992px–900px range) — always full-width */
@media (max-width: 992px) {
    .car-booking-widget .btn {
        width: 100%;
    }
}

/* Policy grid — collapse to 1 col sooner (768px instead of 600px) */
@media (max-width: 768px) {
    .policy-grid {
        grid-template-columns: 1fr;
    }
}

/* Specs grid — collapse to 2 col at 768px for better readability */
@media (max-width: 768px) {
    .specs-grid-detail {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fading-edge-container::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: inherit;
    -webkit-mask: radial-gradient(circle at center, transparent 40%, black 100%);
    mask: radial-gradient(circle at center, transparent 40%, black 100%);
    pointer-events: none;
    z-index: 10;
}

/* ============================================
   GLOBAL MOBILE PADDING FIXES
   ============================================ */
@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }
    
    /* Fix for Featured Fleet section overlapping with navbar on mobile */
    .fleet-section {
        padding-top: 80px;
    }
    
    /* Ensure section labels don't overlap with navbar */
    .section-label {
        margin-top: 20px;
    }
}

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

    /* Promise cards: stack to 1 col on phones */
    .detail-promises {
        grid-template-columns: 1fr;
    }

    /* Container: extra breathing room on very small screens */
    .container {
        padding: 0 16px;
    }
}

/* ============================================================
   HOMEPAGE MOBILE CLEANUP
   ============================================================ */
@media (max-width: 768px) {

    /* --- Hero buttons: override massive inline padding --- */
    .hero-btns .btn {
        padding: 14px 28px !important;
        font-size: 1rem !important;
        max-width: 280px !important;
    }

    /* --- Hero: tighten vertical spacing --- */
    .hero-content {
        gap: 24px !important;
    }

    .hero-main-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    /* --- Hero paragraph: smaller on mobile --- */
    .hero-content p {
        font-size: 0.95rem !important;
        padding: 0 8px !important;
        margin-bottom: 0 !important;
    }

    /* --- Trust card: stack neatly, hide dividers --- */
    .hero-trust {
        gap: 16px !important;
        padding: 14px 20px !important;
    }

    .trust-divider {
        display: none;
    }

    /* --- "View Full Fleet" and other large inline-styled btns --- */
    .fleet-section .btn-lg,
    .reviews-section .btn-lg {
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }

    /* --- Booking bar: hide on mobile, too heavy --- */
    .booking-bar {
        display: none;
    }

    /* --- Why Us: 2-column on mobile instead of 1 col --- */
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .why-card {
        padding: 20px 16px !important;
    }

    .why-card h3 {
        font-size: 0.95rem !important;
    }

    .why-card p {
        font-size: 0.82rem !important;
    }

    /* --- Stats bar: 2×2 grid on mobile --- */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {

    /* Extra small: single column why-cards */
    .why-grid {
        grid-template-columns: 1fr !important;
    }

    /* Tighten hero title */
    .hero-main-group .hero-title,
    .hero-title {
        font-size: clamp(2.2rem, 11vw, 3rem) !important;
        letter-spacing: -1px !important;
    }
}

/* ============================================================
   DEFINITIVE MOBILE FIXES — overrides all conflicting earlier rules
   ============================================================ */

/* 1. Kill horizontal scroll */
html {
    overflow-x: hidden;
}

/* 2. Promo banner — no overflow on small screens */
@media (max-width: 600px) {
    .promo-banner-glass {
        white-space: normal !important;
        width: calc(100vw - 40px) !important;
        max-width: 360px;
        border-radius: 16px;
        padding: 12px 14px;
        gap: 10px;
        justify-content: flex-start;
    }

    .promo-banner-glass .promo-title {
        white-space: normal;
        font-size: 0.8rem;
    }

    .promo-banner-glass .promo-desc {
        white-space: normal;
        font-size: 0.72rem;
    }

    .promo-banner-glass .promo-arrow {
        margin-left: auto;
        flex-shrink: 0;
    }
}

/* 3. Car detail hero — switch from conflicting grid to simple flex on mobile */
@media (max-width: 768px) {
    .car-hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 110px 20px 40px !important;
        gap: 14px !important;
        grid-template-columns: unset !important;
        grid-template-areas: unset !important;
    }

    .car-hero-content h1 {
        font-size: 2.4rem !important;
        width: 100%;
    }

    .hero-badge {
        align-self: center;
    }

    .back-link {
        align-self: flex-start;
        margin-bottom: 4px;
    }

    .hero-specs {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 16px !important;
        width: 100%;
    }

    /* Hide hero Book Now button on mobile - use nav action buttons instead */
    .hero-price-cta {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .hero-price-cta .btn {
        display: none !important;
    }

    .hero-price-tag {
        justify-content: center !important;
    }
}

/* 4. Car details grid and widget — fixed bottom bar on mobile */
/* NOTE: The fixed bottom bar is defined in the @media (max-width: 992px) block above */
/* This section intentionally blank - the 900px duplicate rules were conflicting */

/* ============================================
   CAR CARD LINK FIXES — Multi-day promo buttons
   ============================================ */

/* Make car image clickable without affecting card layout */
.car-img-wrap {
    position: relative;
}

.car-image-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
}

/* Make car title clickable */
.car-title-row h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.car-title-row h3 a:hover {
    color: var(--accent);
}

/* CTA button: full-width, vertically stacked below price */
.car-bottom .view-details-btn {
    position: relative;
    z-index: 3;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 11px 16px;
    font-size: 0.82rem;
    letter-spacing: 0.3px;
}

/* Maintain card hover effects */
.car-card:hover .car-img-wrap img {
    transform: scale(1.12) translateY(-2px);
    opacity: 1;
    filter: brightness(1.15) contrast(1.05);
}

/* ============================================
   CAR DETAIL PAGE LOADING STATE
   ============================================ */
body.js-loading .car-hero,
body.js-loading .car-specs-grid,
body.js-loading .gallery-section,
body.js-loading .car-booking-widget {
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.js-loading::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(232, 137, 12, 0.3);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 9999;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}/* --- 27. Mobile Lazy Loading --- */
.mobile-hidden {
    display: none !important;
}

#load-more-btn {
    margin: 20px auto;
    display: block;
}


@media (max-width: 768px) {
  .price-tooltip {
    /* Force tooltip to stay within viewport on mobile */
    position: fixed;
    bottom: auto;
    top: 50%;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(0.95);
    max-width: calc(100vw - 32px);
    min-width: 220px;
    width: calc(100vw - 48px);
    z-index: 9999;
  }
  .price-tooltip-trigger:hover .price-tooltip,
  .price-tooltip:hover,
  .price-tooltip-trigger.tt-open .price-tooltip,
  .price-tooltip-trigger:focus .price-tooltip,
  .price-tooltip-trigger:focus-within .price-tooltip {
    transform: translate(-50%, -50%) scale(1);
  }
  .price-tooltip::before,
  .price-tooltip::after {
    display: none;
  }
}

@media (min-width: 769px) {
    .mobile-hidden {
        display: block !important;
    }
}

/* ============================================
   OTHER CARS & FAQ SECTION STYLES
   ============================================ */

.other-cars-section {
    background: var(--bg);
    padding: 80px 0;
}

.other-cars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .other-cars-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.other-cars-column,
.faq-column {
    display: flex;
    flex-direction: column;
}

.other-cars-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.other-car-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    text-decoration: none;
}

.other-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 137, 12, 0.3);
}

.other-car-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.other-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.other-car-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.other-car-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 8px 0;
}

.other-car-price {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0;
}

/* FAQ Styles - extending existing FAQ styles */
.faq-column .faq-list {
    margin-top: 30px;
}

.faq-column .faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.faq-column .faq-item.open {
    border-color: rgba(232, 137, 12, 0.3);
}

.faq-column .faq-q {
    background: transparent;
    padding: 16px 20px;
}

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

.faq-column .faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 20px 20px;
}

@media (max-width: 768px) {
    .other-cars-section {
        padding: 60px 0;
    }
    
    .other-car-card {
        flex-direction: row;
    }
    
    .other-car-image {
        width: 100px;
        height: 100px;
    }
    
    .other-car-info {
        padding: 15px;
    }
}

/* Mobile: Make Other Cars and FAQ sections prominent */
@media (max-width: 768px) {
    .car-details-related {
        padding: 40px 16px !important;
        background: var(--bg-card) !important;
    }
    
    .car-details-related h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    .car-details-related .grid-2 {
        gap: 2rem !important;
    }
    
    .other-car-link {
        padding: 1.25rem !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid var(--border) !important;
        border-radius: 12px !important;
    }
    
    .other-car-link img {
        width: 90px !important;
        height: 60px !important;
        border-radius: 8px !important;
    }
    
    .other-car-link div div:first-child {
        font-size: 1.1rem !important;
    }
    
    .faq-item {
        padding: 1rem !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid var(--border) !important;
        border-radius: 10px !important;
    }
    
    .faq-item h4 {
        font-size: 1rem !important;
        color: #fff !important;
    }
    
    .faq-item p {
        font-size: 0.9rem !important;
    }
}

/* ============================================
   BLOG & CAR DETAIL CONTENT LINKS
   ============================================ */
.blog-content a,
.story-text a,
.story-content a,
#detailContentDesc a,
#detailStoryDesc a {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 137, 12, 0.4);
    transition: all var(--transition);
}

.blog-content a:hover,
.story-text a:hover,
.story-content a:hover,
#detailContentDesc a:hover,
#detailStoryDesc a:hover {
    color: #fbbf24;
    border-bottom-color: var(--accent);
}

.blog-content .cta-block a {
    border-bottom: none;
}

/* ── Blog Related Guides / CTA Links ──────────────────────────────────── */
.blog-links-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 40px 0 0;
}

.blog-links-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 12px;
}

.blog-links-section p {
    margin: 0;
    line-height: 2;
}

.blog-links-section a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.95rem;
}

.blog-links-section a:hover {
    text-decoration: underline;
}

.blog-cta-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.blog-cta-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.blog-cta-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
}

/* ── Blog Tables ──────────────────────────────────────────────────────── */
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 0.95rem;
}
.blog-content table th,
.blog-content table td {
    padding: 12px 16px;
    border: 1px solid var(--border);
    text-align: left;
}
.blog-content table th {
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-weight: 600;
}
.blog-content table td {
    color: var(--text-muted);
}
.blog-content table del {
    color: #999;
    text-decoration: line-through;
}

/* ── Car Detail Silo Links ─────────────────────────────────────────────── */
.detail-silo-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.silo-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    text-decoration: none;
}

.silo-link:not(.silo-link-primary) {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.silo-link:not(.silo-link-primary):hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.silo-link-primary {
    background: linear-gradient(135deg, var(--accent), #f09d2a);
    color: #000;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(232,137,12,0.3);
}

.silo-link-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232,137,12,0.5);
}

/* ── Car Detail FAQ Accordion ─────────────────────────────────────── */
.detail-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.dfaq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dfaq-item:last-child {
    border-bottom: none;
}

.dfaq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.03);
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: background 0.2s;
}
.dfaq-trigger:hover {
    background: rgba(255,255,255,0.06);
}
.dfaq-trigger[aria-expanded="true"] {
    color: var(--accent);
    background: rgba(232,137,12,0.06);
}

.dfaq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.25s ease, color 0.2s;
}
.dfaq-trigger[aria-expanded="true"] .dfaq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.dfaq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
}
.dfaq-body.open {
    grid-template-rows: 1fr;
}
.dfaq-body > div {
    overflow: hidden;
}
.dfaq-body p {
    padding: 0 20px 18px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
}
.dfaq-body p strong {
    color: var(--text);
}

/* ── Hero Animated Gradient Text ──────────────────────────────────── */
@keyframes hero-gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-gradient-text {
    background: linear-gradient(
        120deg,
        #ffffff 0%,
        #ffffff 35%,
        #e8890c 50%,
        #f5a830 62%,
        #ffffff 78%,
        #ffffff 100%
    );
    background-size: 250% 250%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-shift 6s ease infinite;
}
/* Fallback for browsers without background-clip:text */
@supports not (-webkit-background-clip: text) {
    .hero-gradient-text {
        color: #ffffff;
        -webkit-text-fill-color: unset;
        animation: none;
    }
}

/* Scroll progress */
::-webkit-scrollbar { width: 0; }

/* ── Fleet Card Hover Image Zoom ──────────────────────────────────── */
.car-card:hover img,
.car-card:focus-within img {
    transform: scale(1.05);
}
.car-card img {
    transition: transform 0.3s ease;
}

/* ── Booking Form Input Focus Glow ──────────────────────────────────── */
.booking-widget input:focus,
.booking-form input:focus,
input:focus {
    outline: none;
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(232, 137, 12, 0.25);
}

/* ── View Transitions API ──────────────────────────────────────────── */
::view-transition-old(car-hero),
::view-transition-new(car-hero) {
  animation-duration: 0.4s;
  animation-timing-function: ease-out;
}
::view-transition-old(car-hero) {
  animation-name: slide-out;
}
::view-transition-new(car-hero) {
  animation-name: slide-in;
}
@keyframes slide-out {
  to { opacity: 0; transform: scale(0.95); }
}
@keyframes slide-in {
  from { opacity: 0; transform: scale(1.05); }
}


/* ── Booking Widget: Delivery Toggle Add-On ──────────────────────────── */
.delivery-addon-group {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.delivery-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.delivery-toggle-left {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.delivery-toggle-left svg {
    flex-shrink: 0;
    color: var(--accent);
}

.delivery-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
}

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

.delivery-free-badge {
    font-size: 0.72rem;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 20px;
    padding: 2px 8px;
    letter-spacing: 0.5px;
}

.delivery-free-note {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin: 5px 0 0 0;
    opacity: 0.8;
}

/* Toggle switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-track {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 22px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.toggle-track::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 2px;
    left: 2px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.toggle-switch input:checked + .toggle-track {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-track::after {
    transform: translateX(18px);
}

.toggle-switch input:disabled + .toggle-track {
    opacity: 0.75;
    cursor: not-allowed;
}

/* ── Booking Widget: Price Estimate Savings Banner ───────────────────── */
.price-estimate-savings-banner {
    display: none;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    margin-bottom: 10px;
    background: rgba(232, 137, 12, 0.14);
    border: 1px solid rgba(232, 137, 12, 0.45);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.3;
}

.price-estimate-savings-banner svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* ── Booking Widget: Reserve / Hold Card ─────────────────────────────── */
.widget-hold-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-top: 0.75rem;
}

.widget-hold-left {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    flex: 1;
    min-width: 0;
}

.widget-hold-left svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--text-muted);
}

.widget-hold-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.widget-hold-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
}

.widget-hold-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.85;
}

.btn-hold {
    flex-shrink: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(232, 137, 12, 0.4);
    border-radius: 6px;
    padding: 6px 12px;
    white-space: nowrap;
    text-decoration: none;
    background: rgba(232, 137, 12, 0.08);
    transition: background 0.2s, border-color 0.2s;
}

.btn-hold:hover {
    background: rgba(232, 137, 12, 0.18);
    border-color: var(--accent);
    color: var(--accent);
}

/* ============================================
   WHY US PAGE — Responsive Grid
   ============================================ */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}
@media (max-width: 640px) {
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ============================================
   WHY CHOOSE US — Features + Image Section
   ============================================ */
.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    stroke: #fff;
    fill: none;
}

.feature-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .features-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .features-image {
        aspect-ratio: 16/10;
        max-height: 350px;
        order: -1;
    }
}

/* ============================================
   3-STEP BOOKING PROCESS — Circles + Dashed Lines
   ============================================ */
.booking-steps {
    max-width: 900px;
    margin: 0 auto;
}

.booking-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}

.booking-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 280px;
}

.booking-step-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    position: relative;
    z-index: 2;
    background: var(--bg);
}

.booking-step-connector {
    position: absolute;
    top: 36px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 0;
    border-top: 2px dashed rgba(232, 137, 12, 0.35);
    z-index: 1;
}

.booking-step:last-child .booking-step-connector {
    display: none;
}

.booking-step-icon {
    margin-bottom: 8px;
    color: var(--accent);
}

.booking-step-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    fill: none;
}

.booking-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 8px;
}

@media (max-width: 600px) {
    .booking-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }
    .booking-step-connector {
        display: none;
    }
    .booking-step {
        max-width: 100%;
    }
}

/* ============================================
   RENTAL DURATIONS — 4-Column Cards
   ============================================ */
.rental-durations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.rental-duration-card {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid var(--border);
    position: relative;
    transition: var(--transition);
}

.rental-duration-card:first-child {
    border-radius: 12px 0 0 12px;
}

.rental-duration-card:last-child {
    border-radius: 0 12px 12px 0;
}

.rental-duration-card + .rental-duration-card {
    border-left: none;
}

.rental-duration-card.popular {
    border: 2px solid var(--accent);
    border-radius: 12px;
    z-index: 2;
    margin: -8px -1px;
    padding-top: 48px;
    background: var(--bg-card);
}

.rental-duration-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 16px;
    border-radius: 4px;
    white-space: nowrap;
}

.rental-duration-icon {
    color: var(--accent);
    margin-bottom: 20px;
}

.rental-duration-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent);
    fill: none;
}

.rental-duration-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.rental-duration-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 48px;
}

.rental-duration-card .duration-price {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.rental-duration-card .duration-price strong {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: 800;
}

.rental-duration-card .btn-duration {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.rental-duration-card .btn-duration:hover {
    background: var(--accent);
    color: #fff;
}

.rental-duration-card.popular .btn-duration {
    background: var(--accent);
    color: #fff;
}

.rental-duration-card.popular .btn-duration:hover {
    background: var(--accent-hover);
}

@media (max-width: 900px) {
    .rental-durations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .rental-duration-card,
    .rental-duration-card:first-child,
    .rental-duration-card:last-child {
        border-radius: 12px;
        border: 1px solid var(--border);
    }
    .rental-duration-card + .rental-duration-card {
        border-left: 1px solid var(--border);
    }
    .rental-duration-card.popular {
        margin: 0;
        border: 2px solid var(--accent);
    }
}

@media (max-width: 500px) {
    .rental-durations-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Booking Widget: Free Delivery Perk (3+ days green row) ──────────── */
#freeDeliveryPerk.savings-chip {
    display: flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.12) !important;
    border: 1px solid rgba(34, 197, 94, 0.35) !important;
    color: #22c55e !important;
    margin-top: 6px;
    width: 100%;
    box-sizing: border-box;
}

/* ── Design System Upgrade ── */

/* Lucide icon styling */
[data-lucide] {
    width: 40px;
    height: 40px;
    color: var(--accent);
    stroke-width: 1.5;
}


/* Gradient accent text */
.gradient-text,
.hero-title .accent {
    background: linear-gradient(135deg, #e8890c 0%, #f5c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card surface — was backdrop-filter: blur(20px), replaced with
   near-opaque solid background to fix scroll lag (multiple visible
   cards each forcing GPU re-blur per frame). Visually equivalent. */
.glass-card,
.why-card,
.review-card {
    background: rgba(17, 17, 17, 0.92);
    border: 1px solid rgba(232, 137, 12, 0.08);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.glass-card:hover,
.why-card:hover,
.review-card:hover {
    border-color: rgba(232, 137, 12, 0.25);
    box-shadow: 0 8px 32px rgba(232, 137, 12, 0.08);
    transform: translateY(-4px);
}

/* Spotlight hover effect on cards */
.spotlight-card {
    position: relative;
    overflow: hidden;
}
.spotlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(232,137,12,0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}
.spotlight-card:hover::before { opacity: 1; }

/* Car image zoom on hover */
.car-card .car-img-wrap img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.car-card:hover .car-img-wrap img {
    transform: scale(1.05);
}

/* Gradient section dividers */
.section-divider,
section + section::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto;
    max-width: 600px;
}

/* ============================================
   LOCATIONS MEGA DROPDOWN
   ============================================ */
.nav-mega-panel {
    min-width: 480px !important;
    padding: 1.5rem !important;
}

.nav-mega-header {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mega-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.nav-mega-col-title {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 20px 8px;
    margin-bottom: 4px;
}

@media (max-width: 900px) {
    .nav-mega-panel {
        min-width: 100% !important;
        padding: 0 !important;
    }

    .nav-mega-header {
        font-size: 0.65rem;
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .nav-mega-columns {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .nav-mega-col-title {
        padding: 0;
        text-align: center;
        margin-top: 8px;
    }

    .nav-dropdown-mega .nav-dropdown-content a {
        font-size: 1rem !important;
        padding: 4px !important;
    }
}

/* ============================================
   CONTACT PAGE — LOCATION TAGS SECTION
   ============================================ */
.location-tags-section {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-tags-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    min-height: 380px;
}

.location-tags-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.location-tags-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.location-tags-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.location-tags-content h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.location-tags-content .location-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.25rem;
}

.location-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.location-pill:hover {
    border-color: var(--accent);
    color: #fff;
    background: rgba(232, 137, 12, 0.08);
    transform: translateY(-1px);
}

.location-pill .pin-icon {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.location-delivery-banner {
    margin-top: 0.5rem;
    padding: 1.25rem 1.5rem;
    background: rgba(232, 137, 12, 0.06);
    border: 1px solid rgba(232, 137, 12, 0.15);
    border-radius: var(--radius);
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .location-tags-section {
        grid-template-columns: 1fr;
    }

    .location-tags-map {
        min-height: 240px;
        order: 2;
    }

    .location-tags-content {
        order: 1;
    }
}

/* ============================================
   CAR DETAIL PAGE — MOBILE FIXES (2026-04-04)
   ============================================ */

/* Fix 1: Multi-day discount tooltip — fixed width, content wraps inside */
/* (main .price-tooltip block already has width: 280px and box-sizing: border-box) */

/* Inline tooltip rows generated by JS (detail page) — flex-wrap to prevent overflow */
#detailPromoTooltip > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.78rem;
    min-width: 0;
}

#detailPromoTooltip > div > span {
    min-width: 0;
    flex-shrink: 1;
}

/* Fix 2: Mobile hero stats — glassmorphism backdrop for readability */
@media (max-width: 768px) {
    .hero-specs {
        background: rgba(0, 0, 0, 0.35) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        border-radius: 12px !important;
        padding: 10px 14px !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .hero-price-cta {
        background: rgba(0, 0, 0, 0.35);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border-radius: 12px;
        padding: 10px 14px !important;
        border: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
    }

    .hero-price-tag {
        justify-content: center;
    }
}

/* Fix 4a: Story/description — collapsible on all screens */
.story-content-wrap {
    position: relative;
}

.story-content-wrap.collapsed {
    max-height: 280px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .story-content-wrap.collapsed {
        max-height: 180px;
    }
}

.story-content-wrap.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg));
    pointer-events: none;
    z-index: 1;
}

.read-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    margin-top: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, rgba(232,137,12,0.15), rgba(232,137,12,0.25));
    border-color: var(--accent);
    color: var(--accent);
}

/* Fix 4b: Gallery — collapsible on mobile */
@media (max-width: 768px) {
    .gallery-grid.gallery-mobile-collapsed {
        max-height: 400px;
        overflow: hidden;
        position: relative;
    }

    .gallery-grid.gallery-mobile-collapsed::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 80px;
        background: linear-gradient(transparent, var(--bg));
        pointer-events: none;
        z-index: 1;
    }

    /* Hide the existing view-more button when mobile-collapsed is active,
       let the dedicated mobile expand button take over */
    .gallery-grid.gallery-mobile-collapsed .gallery-view-more-btn {
        position: relative;
        z-index: 2;
    }
}

.gallery-expand-btn {
    display: none;
}

@media (max-width: 768px) {
    .gallery-expand-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 12px 20px;
        margin-top: 12px;
        background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s;
        backdrop-filter: blur(10px);
    }

    .gallery-expand-btn:hover {
        background: linear-gradient(135deg, rgba(232,137,12,0.15), rgba(232,137,12,0.25));
        border-color: var(--accent);
        color: var(--accent);
    }
}

/* ============================================
   HOTEL PARTNER TRUST SECTION
   ============================================ */
.partner-trust-section {
    padding: 80px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.partner-trust-section .section-label {
    text-align: center;
}

.partner-trust-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.partner-trust-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.partner-trust-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.partner-trust-header p strong {
    color: var(--text);
    font-weight: 600;
}

.partner-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.partner-card {
    width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px 32px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 137, 12, 0.4);
    box-shadow: 0 8px 32px rgba(232, 137, 12, 0.12), 0 0 0 1px rgba(232, 137, 12, 0.15);
}

.partner-card-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.partner-card-logo img {
    max-height: 120px;
    max-width: 220px;
    object-fit: contain;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.partner-card:hover .partner-card-logo img {
    filter: brightness(1.1);
}

.partner-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.partner-card-tagline {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.partner-card-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.partner-card-cta {
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.partner-card:hover .partner-card-cta {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 640px) {
    .partner-trust-section {
        padding: 60px 0;
    }

    .partner-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .partner-card {
        width: 100%;
        max-width: 340px;
        padding: 32px 24px 24px;
    }

    .partner-card-logo {
        height: 90px;
        margin-bottom: 20px;
    }

    .partner-card-logo img {
        max-height: 90px;
    }

    .partner-card-cta {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll body */
html.lenis, html.lenis body {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

/* ================================================================
   BOOKING FLOW — In-House Reservation System
   ================================================================ */
.booking-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

/* ── Progress bar ──────────────────────────────────────────── */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}
.bp-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.bp-step.active, .bp-step.done { opacity: 1; }
.bp-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}
.bp-step.active .bp-num {
    border-color: var(--accent);
    background: var(--accent);
    color: #000;
}
.bp-step.done .bp-num {
    border-color: #4ade80;
    background: #4ade80;
    color: #000;
}
.bp-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.bp-step.active .bp-label { color: var(--accent); }
.bp-step.done .bp-label { color: #4ade80; }
.bp-line {
    width: 48px;
    height: 2px;
    background: #333;
    margin: 0 8px;
    margin-bottom: 22px;
}

/* ── Layout: sidebar + main ────────────────────────────────── */
.booking-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* ── Sidebar ───────────────────────────────────────────────── */
.booking-sidebar { position: sticky; top: 100px; }
.bs-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.bs-img { aspect-ratio: 16/10; overflow: hidden; }
.bs-img img { width: 100%; height: 100%; object-fit: cover; }
.bs-name {
    padding: 16px 20px 4px;
    font-size: 1.15rem;
    font-weight: 600;
}
.bs-rate {
    padding: 0 20px 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}
.bs-rate span { font-size: 1.5rem; }
.bs-policies { padding: 0 20px 16px; }
.bs-pol {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.bs-breakdown { padding: 16px 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.bs-line {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.bs-total { font-weight: 700; font-size: 1rem; color: var(--text); padding-top: 8px; }
.bs-deposit { color: var(--accent); font-weight: 600; }
.bs-balance { color: var(--text-muted); font-size: 0.8rem; }
.bs-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 8px 0; }

/* ── Form steps ────────────────────────────────────────────── */
.booking-step { display: none; }
.booking-step.active { display: block; animation: bkFadeIn 0.35s ease; }
@keyframes bkFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.booking-step h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-desc {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 0.9rem;
}
.bf-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 32px 0 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ── Form fields ───────────────────────────────────────────── */
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bf-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}
.bf-field label {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}
.bf-field input,
.bf-field select,
.bf-field textarea {
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}
.bf-field input:focus,
.bf-field select:focus {
    outline: none;
    border-color: var(--accent);
}
.bf-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.bf-hint {
    font-size: 0.78rem;
    color: #4ade80;
}
.bf-hint.error { color: #ff4444; }

/* Rental days badge */
.bf-rental-days {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    background: rgba(232, 137, 12, 0.08);
    border: 1px solid rgba(232, 137, 12, 0.25);
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 500;
}

/* Delivery note */
.bf-delivery-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 8px 0;
}
.bf-delivery-note.free { color: #4ade80; }

/* Checkbox */
.bf-checkbox {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin: 20px 0;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}
.bf-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
}
.bf-checkbox label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-muted);
}
.bf-checkbox label strong { color: var(--text); }
.bf-checkbox label a { color: var(--accent); text-decoration: underline; }

/* Add-on cards */
.bf-addon {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color 0.2s;
}
.bf-addon:hover { border-color: rgba(232, 137, 12, 0.3); }
.bf-addon input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--accent);
}
.bf-addon-info { flex: 1; }
.bf-addon-info label { font-size: 0.95rem; cursor: pointer; }
.bf-addon-info p { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }
.bf-addon-price { font-weight: 600; color: var(--accent); font-size: 0.95rem; white-space: nowrap; }

/* File upload */
.bf-upload {
    position: relative;
    padding: 28px;
    border: 2px dashed rgba(255,255,255,0.12);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s;
}
.bf-upload:hover { border-color: var(--accent); }
.bf-upload.has-file { border-color: #4ade80; border-style: solid; }
.bf-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
.bf-upload-text { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.bf-upload-hint { display: block; font-size: 0.75rem; color: #666; }

/* Error display */
.bf-error {
    padding: 14px 18px;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 8px;
    color: #ff6666;
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.bf-error-full {
    padding: 48px;
    text-align: center;
}
.bf-error-full a { color: var(--accent); text-decoration: underline; }

/* ── Action buttons ────────────────────────────────────────── */
.bf-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.btn-booking-next, .btn-booking-pay {
    padding: 14px 32px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-booking-next:hover, .btn-booking-pay:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(232, 137, 12, 0.3);
}
.btn-booking-pay { flex: 1; }
.btn-booking-pay:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-booking-back {
    padding: 14px 24px;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.btn-booking-back:hover { border-color: var(--text); color: var(--text); }
.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0,0,0,0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: bkSpin 0.6s linear infinite;
    display: inline-block;
}
@keyframes bkSpin { to { transform: rotate(360deg); } }

/* ── Review cards ──────────────────────────────────────────── */
.bf-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.bf-review-card {
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}
.bf-review-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 10px;
}
.bf-review-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

/* ── Payment section ───────────────────────────────────────── */
.bf-payment-section {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.bf-payment-section h3 { font-size: 1.15rem; margin-bottom: 12px; }
.bf-payment-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}
.bf-payment-note strong { color: var(--accent); }
.sq-card-container {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    margin-bottom: 16px;
}
.sq-card-errors {
    color: #ff4444;
    font-size: 0.85rem;
    min-height: 20px;
    margin-bottom: 8px;
}

/* Demo card form */
.demo-card-form .bf-field { margin-bottom: 14px; }
.demo-card-note {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
    margin-top: 12px;
    padding: 8px;
    background: rgba(232, 137, 12, 0.05);
    border-radius: 4px;
}

/* Mobile summary (hidden on desktop) */
.bf-summary-mobile { display: none; margin-bottom: 24px; }

/* ── Confirmation ──────────────────────────────────────────── */
.bf-confirmation { text-align: center; padding: 32px 0; }
.bf-conf-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #4ade80;
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.bf-conf-ref {
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.bf-conf-ref strong {
    color: var(--accent);
    font-family: monospace;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}
.bf-conf-next {
    text-align: left;
    max-width: 500px;
    margin: 32px auto;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
}
.bf-conf-next h3 { font-size: 1rem; margin-bottom: 12px; }
.bf-conf-next ol {
    padding-left: 20px;
    list-style: decimal;
}
.bf-conf-next li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}
.bf-conf-contact { margin-top: 24px; }
.bf-conf-contact a { color: var(--accent); font-weight: 600; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }
    .booking-sidebar {
        position: static;
        order: -1;
    }
    .booking-progress {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 8px;
    }
    .bp-line { width: 24px; }
    .bf-row { grid-template-columns: 1fr; }
    .bf-review-grid { grid-template-columns: 1fr; }
    .bf-summary-mobile { display: block; }
    .bf-actions { flex-direction: column-reverse; }
    .btn-booking-next, .btn-booking-pay { width: 100%; text-align: center; }
}
