/* ============================================================
   YAY AREA MOBILE DETAILING — Professional Premium Design
   Refined Black & White Luxury Theme
   ============================================================ */

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

/* ── Design System ── */
:root {
    /* Premium Color Palette */
    --black: #0a0a0a;
    --near-black: #111111;
    --charcoal: #1a1a1a;
    --dark-gray: #232323;

    --white: #ffffff;
    --off-white: #fafafa;

    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d0d0d0;
    --gray-400: #a0a0a0;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;

    /* Premium Gradients */
    --gradient-dark: linear-gradient(180deg, #0d0d0d 0%, #141414 100%);
    --gradient-charcoal: linear-gradient(135deg, #151515 0%, #232323 100%);

    /* Typography */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Layout */
    --max-width: 1240px;
    --padding-x: clamp(1.5rem, 5vw, 3rem);
    --section-y: clamp(3rem, 6vh, 5rem);
    /* Fixed-header height — used to clear page content below the header.
       Matches the real desktop header (logo + padding ≈ 110px). */
    --header-h: 104px;

    /* Refined Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);

    /* Professional Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 24px 80px rgba(0, 0, 0, 0.3);
}

/* ── Base Typography ── */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-weight: 400;
    text-rendering: optimizeLegibility;
}

/* Ensure font system applies to every element — eliminates browser default fonts */
button,
input,
textarea,
select,
optgroup,
option {
    font-family: var(--font-primary);
    font-weight: 400;
}

/* Prevent font flash on load */
@font-face {
    font-family: 'Manrope';
    font-display: swap;
}

/* ── Global Heading Defaults ── */
h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    line-height: 1.17;
    letter-spacing: -0.01em;
}

h2 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--ease);
}

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

ul {
    list-style: none;
}

:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 4px;
}

/* ── Container ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

/* ============================================================
   PROFESSIONAL HEADER & NAVIGATION
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s var(--ease);
    padding: 0.95rem 0;
    /* Never let a notch / status bar clip the top of the header */
    padding-top: max(0.95rem, env(safe-area-inset-top));
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.09);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
    padding: 0.7rem 0;
    padding-top: max(0.7rem, env(safe-area-inset-top));
}

.header.hidden {
    transform: translateY(-100%);
}

/* 3-column grid: logo (left) | links (true page-center) | spacer (right).
   The right 1fr mirrors the logo's 1fr, so the links column is centered on the
   page and lines up with the centered page titles below. On mobile the toggle
   occupies that right column. */
.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Professional Logo */
.nav-logo {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--white);
    transition: opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    justify-self: start;
}

.nav-logo:hover {
    opacity: 0.7;
}

/* Clean Navigation Links */
.nav-links {
    display: flex;
    flex-direction: row;
    gap: 2.75rem;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.nav-links a {
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.4s var(--ease);
}

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

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

/* ============================================================
   BOOK NOW NAV BUTTON HIGHLIGHT
   ============================================================ */
.nav-links a[href='pages/contact.html'],
.nav-links a[href='contact.html'],
.nav-links a.nav-cta {
    background-color: #0ea5e9;
    color: #000 !important;
    padding: 8px 18px !important;
    border-radius: 3px;
    border: 1px solid #0ea5e9;
    white-space: nowrap;
    transition: all 0.3s ease !important;
}

.nav-links a[href='pages/contact.html']:hover,
.nav-links a[href='contact.html']:hover,
.nav-links a.nav-cta:hover {
    background-color: transparent !important;
    color: #0ea5e9 !important;
    border-color: #0ea5e9 !important;
}

.nav-links a[href='pages/contact.html']::after,
.nav-links a[href='contact.html']::after,
.nav-links a.nav-cta::after {
    display: none !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: var(--padding-x);
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav {
        display: flex;
        justify-content: space-between;
    }

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        background: var(--black);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
        /* Stays below the header (z 1000) so the toggle/✕ button remains tappable */
        z-index: 999;
        /* Clear the fixed header + notch, and scroll if the menu is taller than a short screen */
        padding: max(var(--header-h), env(safe-area-inset-top)) 1.25rem 2rem;
        margin: 0;
        max-width: none;
        overflow-y: auto;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 300;
        letter-spacing: 0.05em;
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* ============================================================
   PROFESSIONAL BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 1.1rem 2.75rem;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 0;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: translateY(100%);
    transition: transform 0.38s var(--ease-out);
    z-index: -1;
}

.btn:hover::before {
    transform: translateY(0);
}

.btn:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.6),
        0 8px 32px rgba(255, 255, 255, 0.28);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.btn-large {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    padding: 1.2rem 3.25rem;
    min-height: 54px;
}

.btn-secondary {
    border: none;
    padding: 0;
    font-family: var(--font-primary);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.58);
    transition: all 0.3s ease;
}

.btn-secondary::before {
    display: none;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateX(6px);
}

/* ============================================================
   SECTION PATTERNS
   ============================================================ */
.section {
    padding: var(--section-y) 0;
}

.section-label {
    display: block;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.85rem;
}

.section-title {
    font-size: clamp(1.65rem, 3.2vw, 2.6rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.section-rule {
    width: 40px;
    height: 1.5px;
    background: var(--gray-400);
    margin: 1.5rem 0;
}

/* ============================================================
   SERVICES SECTION WITH BACKGROUND
   ============================================================ */
.services-section {
    position: relative;
    padding: clamp(2.5rem, 6vh, 4.5rem) 0;
    background-image: url('../images/services-bg.webp');
    background-size: cover;
    background-position: 35% 60%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
}

/* High-resolution background for retina displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .services-section {
        background-image: url('../images/services-bg-2x.webp');
    }
}

/* Fallback for browsers without WebP support */
.no-webp .services-section {
    background-image: url('../images/services-bg.jpg');
}

/* Dark overlay for readability */
.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1;
}

/* Ensure content is above overlay */
.services-section .container {
    position: relative;
    z-index: 2;
}

/* Enhanced text visibility on background */
.services-section .section-label {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.services-section .section-title {
    text-shadow:
        0 3px 20px rgba(0, 0, 0, 0.7),
        0 1px 4px rgba(0, 0, 0, 0.9);
}

.services-section .section-rule {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Spacious card grid in services section */
.services-section .card-grid {
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Large desktop screens - start focusing on car */
@media (min-width: 1200px) {
    .services-section {
        background-position: 30% 65%;
    }
}

/* Extra large desktop - zoom and focus on car */
@media (min-width: 1600px) {
    .services-section {
        background-position: 25% 68%;
        background-size: 110% auto;
    }
}

/* Ultra-wide displays - maximum car focus */
@media (min-width: 2000px) {
    .services-section {
        background-position: 22% 70%;
        background-size: 115% auto;
    }
}

/* Massive ultra-wide (2560px+) - keep car dominant */
@media (min-width: 2560px) {
    .services-section {
        background-position: 20% 72%;
        background-size: 120% auto;
    }
}

/* ============================================================
   PROFESSIONAL HERO SECTION
   ============================================================ */
.section-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: calc(80px + env(safe-area-inset-top)); /* offset fixed header (+ notch) so content never hides behind nav */
}

/* Blurred, zoomed fill — covers the hero edge-to-edge behind the sharp image */
.section-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/zachary-moneypenny-4gF66SkBWXg-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(22px) brightness(0.62) contrast(1.05);
    transform: scale(1.12);
    z-index: 0;
}

/* Sharp full image — zoomed out so the whole scene (bridge + car) shows, un-cropped */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('../images/zachary-moneypenny-4gF66SkBWXg-unsplash.jpg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

/* Professional Overlay - Refined opacity for luxury, not gloomy */
.section-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem var(--padding-x) 2rem;
    text-align: center;
}

/* Eyebrow is now positioned UNDER the H1 as a tagline */
.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.75rem;
    margin-bottom: 1rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw, 4rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 0;
    text-shadow:
        0 4px 32px rgba(0, 0, 0, 0.5),
        0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero-rule {
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0 auto 1.5rem;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 1.75rem;
    max-width: 580px;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.6),
        0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-cta-secondary {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.hero-scroll span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.85rem;
}

.hero-scroll-line {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.2;
        transform: scaleY(0.4);
    }
}

/* ============================================================
   PROFESSIONAL TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--gradient-charcoal);
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.25rem;
    position: relative;
    transition: transform 0.3s var(--ease);
}

.trust-item:hover {
    transform: translateY(-3px);
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
}

.trust-item h3 {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    color: #1b7aa9;
    line-height: 1;
    /* Equal-width digits so the number does not jitter while counting up */
    font-variant-numeric: tabular-nums;
}

.trust-item p {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.5;
}

/* ============================================================
   PROFESSIONAL SERVICE CARDS
   ============================================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 3rem 2.5rem;
    transition: all 0.45s var(--ease-out);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    will-change: transform, box-shadow;
}

.card:hover {
    background: rgba(15, 15, 15, 0.92);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--white);
}

.card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-link {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: gap 0.3s;
}

.card-link::after {
    content: '→';
    transition: transform 0.3s;
}

.card-link:hover {
    gap: 1rem;
}

.card-link:hover::after {
    transform: translateX(3px);
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section {
    background: var(--near-black);
}

.why-section h2 {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.why-section > .container > div > p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.75;
}

.why-item h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.why-item p {
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ============================================================
   PROFESSIONAL CTA SECTION
   ============================================================ */
.cta-section {
    text-align: center;
    padding: calc(var(--section-y) * 1) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.cta-section p {
    color: var(--gray-400);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cta-phone {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-top: 3rem;
    padding-top: 0.5rem;
}

.cta-phone a {
    color: var(--white);
    transition: opacity 0.3s;
    display: inline-block;
    margin-left: 0.5rem;
}

.cta-phone a:hover {
    opacity: 0.65;
}

/* ============================================================
   INNER PAGE HEROES
   ============================================================ */
.page-hero {
    padding-top: calc(var(--header-h) + 0.75rem + env(safe-area-inset-top));
    padding-bottom: 0.75rem;
    text-align: center;
}
.page-hero h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.17;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.page-hero .hero-subtitle {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: none;
    color: var(--gray-400);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ============================================================
   HERO WITH FULL BACKGROUND IMAGE
   ============================================================ */
.page-hero-with-bg {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: calc(var(--header-h) + 2rem + env(safe-area-inset-top));
    padding-bottom: 2rem;
}

/* High-quality background image */
.page-hero-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/pexels-bylukemiller-14231669.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: contrast(1.04) brightness(1.02);
    z-index: 0;
}

/* Premium dark overlay for text readability */
.page-hero-with-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Content sits above overlay */
.page-hero-with-bg .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-hero-with-bg h1 {
    font-size: clamp(1.85rem, 3.8vw, 3.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.17;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow:
        0 4px 24px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.7);
}

.page-hero-with-bg .hero-subtitle {
    font-size: 0.93rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.6),
        0 1px 4px rgba(0, 0, 0, 0.8);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .page-hero-with-bg {
        min-height: 50vh;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .page-hero-with-bg {
        min-height: 45vh;
        padding-top: calc(var(--header-h) + 1.5rem + env(safe-area-inset-top));
        padding-bottom: 1.5rem;
    }

    .page-hero-with-bg::after {
        background: rgba(0, 0, 0, 0.46);
    }

    .page-hero-with-bg h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }

    .page-hero-with-bg .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.65;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .page-hero-with-bg {
        min-height: 40vh;
    }

    .page-hero-with-bg::after {
        background: rgba(0, 0, 0, 0.48);
    }
}

/* ============================================================
   PACKAGE CARDS
   ============================================================ */
.package-card {
    background: var(--gradient-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    height: 100%; /* stretch to equal height across the row (grid align stretch) */
    position: relative;
    transition:
        border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.package-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    white-space: nowrap;
    background: #D4AF37;
    color: #1a1a1a;
    padding: 0.45rem 1.15rem;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
}

/* Tier badge colors — steel blue (essential) / gold (popular, base) / purple (premium) */
.package-badge--essential {
    background: #3B82F6;
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}
.package-badge--popular {
    background: linear-gradient(135deg, #f9d976 0%, #d4af37 100%);
    color: #2a2100;
    box-shadow: 0 2px 14px rgba(212, 175, 55, 0.55), 0 0 22px rgba(249, 217, 118, 0.45);
}
.package-badge--premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: #ffffff;
    box-shadow: 0 2px 14px rgba(124, 58, 237, 0.55), 0 0 22px rgba(139, 92, 246, 0.5);
}

.package-name {
    font-size: 1.85rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--white);
}

.package-price {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 1.25rem;
}

.package-description {
    font-size: 0.92rem;
    color: var(--gray-400);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.package-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li::before {
    content: '✓';
    color: var(--white);
    font-weight: 600;
    flex-shrink: 0;
}

/* ============================================================
   PACKAGES SECTION WITH BACKGROUND IMAGE
   ============================================================ */
.packages-section-with-bg {
    position: relative;
    overflow: hidden;
}

/* High-quality background image */
.packages-section-with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/dean .jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
}

/* Premium dark overlay for card visibility - softens grain */
.packages-section-with-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(0.5px);
    -webkit-backdrop-filter: blur(0.5px);
    z-index: 1;
}

/* Content sits above background and overlay */
.packages-section-with-bg .container {
    position: relative;
    z-index: 2;
}

/* Enhanced card visibility on background */
.packages-section-with-bg .package-card {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.packages-section-with-bg .package-card:hover {
    background: rgba(15, 15, 15, 0.93);
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Highlight the Most Popular (Prestige) card with a gold frame + glow */
.packages-section-with-bg .package-card:has(.package-badge--popular) {
    border-color: rgba(212, 175, 55, 0.65);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.7),
        0 0 28px rgba(212, 175, 55, 0.28);
}
.packages-section-with-bg .package-card:has(.package-badge--popular):hover {
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.85),
        0 0 36px rgba(212, 175, 55, 0.4);
}

/* Highlight the Premium (Presidential) card with a royal purple frame + glow */
.packages-section-with-bg .package-card:has(.package-badge--premium) {
    border-color: rgba(124, 58, 237, 0.65);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(124, 58, 237, 0.7),
        0 0 28px rgba(139, 92, 246, 0.28);
}
.packages-section-with-bg .package-card:has(.package-badge--premium):hover {
    box-shadow:
        0 20px 64px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(124, 58, 237, 0.85),
        0 0 36px rgba(139, 92, 246, 0.4);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .packages-section-with-bg::after {
        background: rgba(0, 0, 0, 0.48);
    }

    .packages-section-with-bg .package-card {
        background: rgba(10, 10, 10, 0.92);
    }
}

/* ============================================================
   SERVICE SECTIONS
   ============================================================ */
.service-section {
    padding: var(--section-y) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-section:last-of-type {
    border-bottom: none;
}

.service-category {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 0.85rem;
}

.service-header h2 {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
}

.service-content {
    max-width: 860px;
}

.service-content > p {
    font-size: 1rem;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.service-benefits h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.85rem;
}

.service-benefits ul {
    display: grid;
    gap: 0.55rem;
}

.service-benefits li {
    padding-left: 1.35rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.service-benefits li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 600;
}

.service-options {
    margin-top: 2.25rem;
    display: grid;
    gap: 1.35rem;
}

.service-option {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--gradient-charcoal);
    transition: all 0.4s var(--ease);
    will-change: transform, box-shadow;
}

.service-option:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.service-option h4 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.65rem;
    color: var(--white);
}

.service-option p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.service-option .price {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-300);
    margin-top: 0.85rem;
}

/* ============================================================
   ADD-ONS GRID
   ============================================================ */
.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-top: 2.75rem;
}

.addon-card {
    background: var(--gradient-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 2rem 2.5rem;
    transition: all 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.addon-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1.5rem;
    width: 100%;
}

.addon-name {
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--white);
    flex: 1 1 auto;
    min-width: 0;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
}

.addon-price {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-300);
    white-space: nowrap;
    flex: 0 0 auto;
    text-align: right;
    padding-left: 1rem;
}

.addon-description {
    font-size: 0.98rem;
    color: #b3b3b3;
    line-height: 1.7;
    flex-grow: 1;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 1rem;
}

.contact-info h2 {
    font-size: clamp(1.85rem, 3.8vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.contact-info > p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 2.25rem;
    line-height: 1.75;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-details li {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.contact-details strong {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-300);
}

.contact-details span,
.contact-details a {
    font-size: 0.92rem;
    color: var(--gray-400);
}

.contact-details a {
    color: var(--white);
    transition: opacity 0.3s;
}

.contact-details a:hover {
    opacity: 0.65;
}

.next-steps {
    margin-top: 1.75rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--near-black);
}

.next-steps h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1.15rem;
}

.next-steps ol {
    padding-left: 1.35rem;
    color: var(--gray-400);
    font-size: 0.9rem;
    line-height: 2;
}

.booking-form {
    background: var(--near-black);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-form h3 {
    font-size: 1.65rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 2.25rem;
}

.form-group {
    margin-bottom: 1.35rem;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-300);
    margin-bottom: 0.65rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.95rem 1.15rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A0A0' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.15rem center;
    padding-right: 2.75rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-note {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 1.15rem;
    line-height: 1.6;
}

/* ============================================================
   ENHANCED BOOKING FORM STYLES
   ============================================================ */
.form-section-header {
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section-header h4 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}


/* Add-ons Checkboxes */
.addons-checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.addon-checkbox:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.addon-checkbox input[type='checkbox'] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.addon-checkbox span {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.addon-checkbox input[type='checkbox']:checked + span {
    color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .addons-checkboxes {
        grid-template-columns: 1fr;
    }
}

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

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.65rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
}

/* ============================================================
   FLEET SECTIONS
   ============================================================ */
.fleet-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.75rem;
    align-items: start;
    padding: 2rem 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--near-black);
    transition: all 0.3s var(--ease);
}

.fleet-step:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(6px);
}

.fleet-step-number {
    font-size: 2rem;
    font-weight: 200;
    color: var(--gray-600);
    line-height: 1;
}

.fleet-step h3 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.55rem;
}

.fleet-step p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.benefit-row {
    padding: 1.35rem 0 1.35rem 1.75rem;
    border-left: 2px solid var(--white);
    transition: all 0.3s var(--ease);
}

.benefit-row:hover {
    border-left-width: 3px;
    padding-left: 2rem;
}

.benefit-row h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.45rem;
}

.benefit-row p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box {
    padding: 2rem 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--near-black);
}

.info-box h3 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.info-box p,
.info-box ul,
.info-box ol {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.75;
}

.info-box ol {
    padding-left: 1.35rem;
}

.info-box ul li {
    margin-bottom: 0.45rem;
}

.combo-card {
    padding: 2rem 2.25rem;
    background: var(--near-black);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--ease);
}

.combo-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.combo-card h3 {
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.9rem;
}

.combo-items {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 0.9rem;
    line-height: 1.75;
}

.combo-note {
    font-size: 0.78rem;
    color: var(--gray-600);
}

/* ============================================================
   PROFESSIONAL FOOTER
   ============================================================ */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-section h3 {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.35rem;
}

.footer-brand h3 {
    font-size: 1.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.15rem;
}

.footer-section p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.75;
}

.footer-section ul li {
    margin-bottom: 0.65rem;
}

.footer-section a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color 0.3s;
    display: inline-block;
    padding: 0.4rem 0;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-section ul li:not(:has(a)) {
    font-size: 0.88rem;
    color: var(--gray-400);
}

.footer-bottom {
    padding: 1.85rem 0;
}

.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.05em;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.55s var(--ease),
        transform 0.55s var(--ease);
    will-change: opacity, transform;
}

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

/* Smooth scrolling improvements */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .fade-in,
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Staggered grid animations */
.card-grid .card:nth-child(2),
.card-grid .package-card:nth-child(2) {
    transition-delay: 0.1s;
}

.card-grid .card:nth-child(3),
.card-grid .package-card:nth-child(3) {
    transition-delay: 0.2s;
}

.card-grid .card:nth-child(4),
.card-grid .package-card:nth-child(4) {
    transition-delay: 0.3s;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1200px) {
    .nav-links {
        gap: 2rem;
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1.4rem;
        max-width: none;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .nav-logo {
        font-size: 0.9rem;
    }

    .services-section {
        padding: clamp(5rem, 12vh, 8rem) 0;
        background-position: 35% 60%;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.25rem;
    }

    .trust-item:nth-child(2)::after,
    .trust-item:nth-child(4)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Compact mobile header height for content-clearance math */
    :root {
        --header-h: 82px;
    }
    /* Compact mobile header */
    .header {
        padding: 0.6rem 0;
        padding-top: max(0.6rem, env(safe-area-inset-top));
    }
    .nav-logo img {
        height: 46px;
        width: auto;
    }
    /* Offset the compact (~73px) fixed header (+ notch) so first headings aren't covered */
    .page-hero {
        padding-top: calc(92px + env(safe-area-inset-top));
    }
    /* Hero zoom-out: shorter hero lets `cover` show more of the car, no letterbox */
    .section-hero {
        min-height: 60vh;
        align-items: flex-start;
    }

    /* Anchor the photo to the bottom (fills down, no dark band) and shift it down a touch
       for a small gap under the header; zoom keeps the car around the button on all sides */
    .hero-bg {
        background-size: 175%;
        background-position: center bottom;
    }

    .trust-items {
        grid-template-columns: 1fr;
        gap: 2.25rem;
    }

    .trust-item:not(:last-child)::after {
        display: none;
    }

    .hero-cta-secondary {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.15rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .cta-phone {
        margin-top: 1.5rem;
    }

    .footer-brand {
        margin-bottom: 0.5rem;
    }

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

    .addon-card {
        padding: 1.75rem 2rem;
    }

    .addon-header {
        gap: 1rem;
    }

    .addon-name {
        font-size: 1.25rem;
    }

    .addon-price {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 5rem var(--padding-x) 3.5rem;
        text-align: center;
    }

    /* Skinnier, chiseled headline (not blocky) */
    .hero-content h1 {
        font-weight: 500;
        letter-spacing: 0.02em;
    }

    .hero-eyebrow {
        font-size: 0.75rem;
        font-weight: 600;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .hero-rule {
        margin: 0 auto 1.75rem;
    }

    .hero-cta {
        justify-content: center;
        margin-top: 0;
        margin-bottom: 0;
    }

    /* Button label one weight step heavier; frame/colors unchanged */
    .btn-hero {
        font-weight: 600;
    }

    .services-section {
        padding: clamp(2.5rem, 7vh, 4.5rem) 0;
        background-position: 35% 60%;
    }

    .services-section::before {
        background: rgba(0, 0, 0, 0.52);
    }

    .card {
        background: rgba(10, 10, 10, 0.9);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .fleet-step {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.85rem 0;
        padding-top: max(0.85rem, env(safe-area-inset-top));
    }

    .hero-content h1 {
        font-size: clamp(2.25rem, 10vw, 3rem);
        line-height: 1;
        margin-bottom: 1.25rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.75rem;
    }

    .btn {
        padding: 1rem 2.5rem;
        font-size: 0.76rem;
        min-height: 54px;
        width: 100%;
        max-width: 320px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        /* Center the capped-width button instead of pinning it left */
        align-items: center;
    }

    .services-section {
        padding: 2.5rem 0;
        background-image: url('../images/services-bg-1x.webp');
    }

    .services-section::before {
        background: rgba(0, 0, 0, 0.55);
    }

    .card {
        background: rgba(10, 10, 10, 0.93);
        padding: 2.5rem 2rem;
    }
}

/* ============================================================
   CART SYSTEM
   ============================================================ */

.yadCart--noscroll {
    overflow: hidden;
}

/* Overlay (backdrop) */
.yadCartOverlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    pointer-events: none;
    transition: background 0.3s ease;
}
.yadCartOverlay--open {
    background: rgba(0, 0, 0, 0.55);
    pointer-events: auto;
}

/* Slide-out panel */
.yadCartPanel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 380px;
    max-width: 100vw;
    background: #111;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}
.yadCartOverlay--open .yadCartPanel {
    transform: translateX(0);
}

.yadCartPanel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}
.yadCartPanel__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: var(--font-primary);
}
.yadCartPanel__close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s;
    font-family: inherit;
    border-radius: 4px;
}
.yadCartPanel__close:hover {
    color: #fff;
}

.yadCartPanel__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
}
.yadCartPanel__footer {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

/* Empty state */
.yadCart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 3.5rem 1rem;
    text-align: center;
}
.yadCart__empty svg {
    opacity: 0.2;
}
.yadCart__empty p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
    font-family: var(--font-primary);
}
.yadCart__emptySub {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.25) !important;
}

/* Section */
.yadCart__section {
    margin-bottom: 1.5rem;
}
.yadCart__sectionLabel {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

/* Item row */
.yadCart__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.yadCart__item:last-child {
    border-bottom: none;
}
.yadCart__itemInfo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}
.yadCart__itemName {
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    font-family: var(--font-primary);
}
.yadCart__itemPrice {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--font-primary);
}
.yadCart__removeBtn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.15rem 0.3rem;
    line-height: 1;
    transition: color 0.2s;
    font-family: inherit;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 3px;
}
.yadCart__removeBtn:hover {
    color: rgba(255, 255, 255, 0.75);
}

/* Total */
.yadCart__total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.35rem;
}
.yadCart__totalLabel {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-primary);
}
.yadCart__totalPrice {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-primary);
}
.yadCart__totalNote {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.28);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-family: var(--font-primary);
}
.yadCart__bookBtn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: block;
}

/* Cart nav icon */
.yadCartFab {
    position: relative;
    flex-shrink: 0;
    margin-left: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        opacity 0.2s ease;
}
.yadCartFab--active {
    opacity: 1;
    pointer-events: auto;
}
.yadCartFab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.yadCartFab__count {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #0ea5e9;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-family: var(--font-primary);
    border: 1.5px solid #0a0a0a;
    line-height: 1;
}

/* Toast */
.yadCartToast {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    background: rgba(28, 28, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.65rem 1.1rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-family: var(--font-primary);
    z-index: 1002;
    opacity: 0;
    transform: translateY(6px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
    pointer-events: none;
    max-width: 250px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}
.yadCartToast--visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add to Cart button — "in cart" state */
.yadCartBtn--inCart {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    color: rgba(255, 255, 255, 0.6) !important;
}
.yadCartBtn--inCart:hover {
    border-color: rgba(255, 255, 255, 0.45) !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

/* Add-on card layout for button */
.addon-card {
    display: flex;
    flex-direction: column;
}
.addon-card .btn {
    margin-top: auto;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-size: 0.78rem;
    width: 100%;
    text-align: center;
}

/* Contact form cart banner */
.yadCartFormBanner {
    background: rgba(14, 165, 233, 0.07);
    border: 1px solid rgba(14, 165, 233, 0.22);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
}
.yadCartFormBanner__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-family: var(--font-primary);
}
.yadCartFormBanner__inner svg {
    flex-shrink: 0;
    color: #0ea5e9;
}
.yadCartFormBanner__inner span {
    flex: 1;
}
.yadCartFormBanner__clear {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.45);
    padding: 0.28rem 0.75rem;
    border-radius: 4px;
    font-size: 0.76rem;
    cursor: pointer;
    font-family: var(--font-primary);
    white-space: nowrap;
    transition: all 0.2s ease;
}
.yadCartFormBanner__clear:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .yadCartFab {
        /* Push cart icon left of the absolutely-positioned hamburger toggle */
        margin-right: 2.75rem;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .yadCartPanel {
        width: 100vw;
        border-left: none;
    }
    .yadCartFab {
        margin-left: auto;
        margin-right: 2.75rem;
        width: 32px;
        height: 32px;
    }
    .yadCartToast {
        right: 1.25rem;
        bottom: 1.25rem;
        max-width: calc(100vw - 2.5rem);
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center {
    text-align: center;
}
.text-gray {
    color: var(--gray-400);
}

/* ============================================================
   READABILITY ENHANCEMENTS
   ============================================================ */

/* ── Service & Package Card Typography ── */
.card p {
    font-size: 0.93rem;
    color: var(--gray-400);
    line-height: 1.75;
}

.card h3 {
    font-size: 1.5rem;
}

.package-name {
    font-size: 1.85rem;
}

.package-description {
    font-size: 0.93rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.package-features li {
    font-size: 0.92rem;
    color: var(--gray-400);
}

.addon-description {
    font-size: 0.93rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ── Form Typography ── */
.form-group input,
.form-group textarea,
.form-group select {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    padding: 1rem 1.2rem;
}

.form-group label {
    font-size: 0.68rem;
    color: var(--gray-300);
    letter-spacing: 0.18em;
}

/* ── Service Options ── */
.service-option h4 {
    font-size: 1.45rem;
    line-height: 1.3;
}

.service-option p {
    font-size: 0.93rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.service-option .price {
    font-size: 1.2rem;
}

/* ── General Text Contrast ── */
.cta-section p,
.service-content > p,
.why-section > .container > div > p {
    color: var(--gray-400);
}

/* ── Refined Gray — unified body text color ── */
:root {
    --gray-400: #b8b8b8;
}

/* Better card-link visibility */
.card-link {
    font-size: 0.75rem;
    font-weight: 700;
}

/* ============================================================
   PACKAGE ACCORDION
   ============================================================ */

/* Cards start at top — don't stretch to equal heights */
.pkg-accordion-grid {
    align-items: stretch;
}

/* Align the three Select buttons regardless of description length (good-better-best) */
.pkg-accordion-grid .pkg-select-btn {
    margin-top: auto;
}

/* Reserve the same top offset on every card so the badge-less base card stays aligned */
.pkg-accordion-grid .accordion-card {
    margin-top: 14px;
}

/* ── Toggle Button ── */
.package-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0;
    margin-top: 1.5rem;
    background: none;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    transition: color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.package-toggle:hover {
    color: rgba(255, 255, 255, 0.85);
}

.package-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.3);
    outline-offset: 2px;
}

/* ── Chevron icon ── */
.toggle-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0.75rem;
    transition:
        transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
}

.accordion-card.is-open .toggle-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.accordion-card.is-open .package-toggle {
    color: rgba(255, 255, 255, 0.85);
    border-top-color: rgba(255, 255, 255, 0.14);
}

/* ── Expandable Panel ── */
.package-details {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-details-inner {
    overflow: hidden;
    min-height: 0;
}

.accordion-card.is-open .package-details {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* ── Section labels: Interior / Exterior ── */
.package-section {
    padding-top: 1.5rem;
}

.package-section-title {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-primary);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.95rem;
}

.package-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

/* ── Item lists ── */
.package-section-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
    padding: 0;
}

.package-section-list li {
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.55;
}

.package-section-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 300;
}

/* ── Divider between Interior and Exterior ── */
.package-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1.5rem 0 0;
}

/* ── CTA inside expanded panel ── */
.package-accordion-cta {
    padding: 1.75rem 0 0.5rem;
}

/* ── Coverage info grid ── */
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2.5rem;
}

/* ── Expanded panel: single clean column (Interior over Exterior) on all sizes ── */
/* Keeps wide, evenly-spaced rows with no cramped two-column wrapping. */

/* ── Tablet: collapse package grid to single column ── */
@media (max-width: 1024px) {
    .card-grid.pkg-accordion-grid {
        grid-template-columns: 1fr;
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Mobile: hide inline expand, bottom sheet handles it ── */
@media (max-width: 768px) {
    .pkg-accordion-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    /* Suppress inline expansion on mobile — bottom sheet takes over */
    .accordion-card .package-details {
        display: none !important;
    }
}

/* ── Small mobile tweaks ── */
@media (max-width: 480px) {
    .package-card {
        padding: 2rem 1.25rem;
    }
    .package-accordion-cta {
        padding: 1.25rem 0 0.25rem;
    }
    .package-name {
        font-size: 2.1rem;
    }
    .package-price {
        font-size: 1.3rem;
    }
    .cta-section .btn,
    .package-accordion-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════
   MOBILE BOTTOM SHEET — Package Details
   ══════════════════════════════════════════ */
.pkg-sheet-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.pkg-sheet-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}

.pkg-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 88vh;
    background: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px 16px 0 0;
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1.5rem 2.5rem;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.pkg-bottom-sheet.is-active {
    transform: translateY(0);
}

.pkg-sheet-drag-handle {
    display: flex;
    justify-content: center;
    padding: 0.85rem 0 0.5rem;
    position: sticky;
    top: 0;
    background: #111111;
    z-index: 2;
}
.pkg-sheet-drag-handle::before {
    content: '';
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.pkg-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.25rem;
    position: sticky;
    top: 2.25rem;
    background: #111111;
    z-index: 2;
}
.pkg-sheet-name {
    font-size: 1.45rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.2rem;
    font-family: var(--font-primary);
}
.pkg-sheet-price {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-family: var(--font-primary);
}
.pkg-sheet-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    line-height: 1;
}
.pkg-sheet-close:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.pkg-sheet-body {
    padding-top: 0.5rem;
}
/* Reuse existing section styles inside sheet */
.pkg-sheet-body .package-section {
    padding-top: 1.25rem;
}
.pkg-sheet-body .package-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 1.25rem 0 0;
}
.pkg-sheet-body .package-section-list li {
    font-size: 0.9rem;
}

.pkg-sheet-cta {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.pkg-sheet-cta .btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    display: block;
    font-size: 0.95rem;
}

/* ============================================================
   HERO ANIMATED GRADIENT CTA BUTTON
   ============================================================ */
.btn-hero {
    animation: heroGlow 3s ease-in-out infinite;
    margin-top: 0.5rem;
}

@keyframes heroGlow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(14, 165, 233, 0.2),
            0 0 24px rgba(14, 165, 233, 0.12);
        border-color: rgba(255, 255, 255, 0.8);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(14, 165, 233, 0.55),
            0 0 40px rgba(14, 165, 233, 0.3);
        border-color: #0ea5e9;
    }
}

/* ============================================================
   BENTO GRID — SERVICES
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card--main {
    position: relative;
}

.bento-badge {
    display: inline-block;
    background: #0ea5e9;
    color: #000;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    margin-bottom: 1.5rem;
    align-self: flex-start;
}

.bento-card--main h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: auto;
    }
    .bento-card--main {
        grid-row: span 1;
        min-height: auto;
    }
}


.ba-caption {
    text-align: center;
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 1.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: var(--near-black);
    padding: var(--section-y) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gradient-charcoal);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.25rem;
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.78;
    color: var(--gray-300);
    margin-bottom: 1.75rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.testimonial-vehicle {
    font-size: 0.72rem;
    color: var(--gray-500);
    letter-spacing: 0.04em;
}

.testimonial-source {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gray-600);
    text-transform: uppercase;
}

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

/* ============================================================
   PRICING PREVIEW SECTION
   ============================================================ */
.pricing-preview-section {
    padding: var(--section-y) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-preview-item {
    background: var(--black);
    padding: 2.75rem 2rem;
    text-align: center;
    transition: background 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pricing-preview-item:hover {
    background: var(--near-black);
}

.pricing-preview-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.pricing-preview-price {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.3rem;
}

.pricing-preview-price .price-from {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gray-400);
    margin-top: 0.6rem;
    letter-spacing: 0;
}

.pricing-preview-name {
    font-size: 0.88rem;
    color: var(--gray-400);
    margin-bottom: 1.25rem;
}

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

/* ============================================================
   FOOTER SOCIAL ICONS
   ============================================================ */
.footer-social {
    display: flex;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.footer-social .social-icon {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--gray-500);
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    line-height: 0;
}

.social-icon:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    display: block;
    flex: 0 0 auto;
}

/* ============================================================
   STICKY MOBILE BOOK CTA
   ============================================================ */
.sticky-book-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.5rem;
    display: none;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
}

.sticky-book-cta.visible {
    transform: translateY(0);
}

.sticky-book-cta__book {
    flex: 1;
    background: #0ea5e9;
    color: #000;
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem;
    transition: background 0.3s;
    display: block;
}

.sticky-book-cta__book:hover {
    background: #38bdf8;
    color: #000;
}

.sticky-book-cta__call {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.9rem;
    transition: border-color 0.3s;
    display: block;
}

.sticky-book-cta__call:hover {
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .sticky-book-cta {
        display: flex;
    }

    /* Add bottom padding to last section so sticky bar doesn't cover content */
    body {
        padding-bottom: 70px;
    }
}

/* ── Booking Progress Steps Bar ── */
.booking-steps-bar {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 0.85rem 0;
}

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

.booking-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.35;
}

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

.booking-step.booking-step--done {
    opacity: 0.7;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.booking-step.active .step-number {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.booking-step.booking-step--done .step-number {
    background: transparent;
    border-color: rgba(255,255,255,0.6);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    white-space: nowrap;
}

.step-connector {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 0 0.75rem;
    flex-shrink: 0;
}

.step-connector--done {
    background: rgba(255,255,255,0.35);
}

@media (max-width: 560px) {
    .booking-steps {
        align-items: flex-start;
    }
    .booking-step {
        flex-direction: column;
        gap: 0.4rem;
        text-align: center;
        flex: 0 1 auto;
    }
    .step-label {
        display: block;
        font-size: 0.62rem;
        line-height: 1.2;
        white-space: normal;
        max-width: 9ch;
    }
    .step-connector {
        width: clamp(14px, 5vw, 34px);
        margin: 13px 0.25rem 0;
    }
}

/* ── Package Select CTA Button ── */
.pkg-select-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: auto;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

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

.pkg-select-btn--featured:hover {
    background: var(--gray-200);
    color: var(--black);
}

/* Make all select buttons solid so they read as the primary action */
.pkg-select-btn {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.pkg-select-btn:hover {
    background: var(--gray-200);
    color: var(--black);
    border-color: var(--gray-200);
}

/* ── Package Feature Preview List ── */
.package-preview-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.55rem;
}

.package-preview-list li {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--gray-400);
    padding-left: 1.35rem;
    position: relative;
    line-height: 1.5;
}

.package-preview-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 600;
    font-size: 0.75rem;
    top: 0.05em;
}

/* ── Add-Ons Funnel Banner ── */
.addons-funnel-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 960px;
    margin: 0 auto 2.5rem;
    padding: 0.9rem 1.25rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.addons-funnel-banner svg {
    flex-shrink: 0;
    color: var(--white);
    opacity: 0.6;
}

.addons-funnel-banner a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.addons-funnel-banner a:hover {
    opacity: 0.7;
}

/* ── Add-On Book Button ── */
.addon-book-btn {
    margin-top: auto;
    align-self: flex-start;
}

.addon-card {
    gap: 0;
}

.addon-description {
    margin-bottom: 1.5rem;
}

/* ── Mobile menu: full-screen, left-aligned overlay (additive override) ──
   Builds on the existing @media(max-width:768px) .nav-links rule, which already
   provides position:fixed; inset:0; solid var(--black) bg; z-index:999; and the
   hamburger→X animation. Body scroll lock is handled in js/script.js. */
@media (max-width: 768px) {
    .nav-links {
        width: 100vw;
        height: 100dvh;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.75rem;
        padding: 6rem var(--padding-x) 2rem;
        max-width: none;
        overflow-y: auto;
    }

    .nav-links a {
        font-size: 1.4rem;
    }

    /* Clear "×" close button (top-right) when the menu is open.
       The .nav-toggle sits in the header (z-index:1000), above the
       overlay (999), so it stays tappable and closes via existing JS. */
    .nav-toggle.active span {
        display: none;
    }
    .nav-toggle.active::before {
        content: "×";
        color: var(--white);
        font-size: 2.4rem;
        line-height: 1;
        font-weight: 300;
    }
}
