/* Design System: Strict Monochrome // Minimal Brutalism */
:root {
    /* Palette */
    --bg-color: #000000;
    --surface-color: #121212;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --accent-color: #FFFFFF;
    --silver: #C0C0C0;
    /* Refined Silver Accent */

    /* Typography */
    --font-head: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --spacing-2xl: 128px;

    --header-height: 80px;
    --border-light: 1px solid rgba(255, 255, 255, 0.1);
    --border-strong: 2px solid #FFFFFF;

    /* Animation */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-gutter: stable;
    /* Prevents page shifting on Windows when modals open */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Night Experience: Film Grain */
#noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    will-change: opacity;
    /* GPU optimization for Windows rendering */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3%3Cfilter id='noiseFilter'%3%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3C/filter%3%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3%3C/svg%3");
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    background: #000 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
    overflow: hidden;
    /* For stars */
}

.header-main {
    padding: calc(var(--spacing-lg) * 2) var(--spacing-lg);
    /* 2x Wider Header */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

@media (max-width: 480px) {
    .header-main {
        padding: var(--spacing-lg) var(--spacing-md);
        /* Narrower header for mobile ratios */
    }
}

.header-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-head);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.02em;
    /* Narrrowed as requested */
    pointer-events: none;
    z-index: -1;
    transition: var(--transition-slow);
    /* Crisp Aura Glow - High precision outside letters only */
    filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    animation: glow-pulse 8s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    }

    50% {
        filter: drop-shadow(1px 1px 0px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.9));
    }
}

@media (max-width: 1024px) {
    .logo {
        display: none;
        /* Hide logo on mobile as requested */
    }

    .header-center {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        font-size: clamp(2rem, 10vw, 3rem);
        /* Responsive scaling */
        text-align: center;
        width: 100%;
        z-index: 1;
    }
}

.logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    /* Narrow black boundary around white outline */
    filter: drop-shadow(1px 0 0 #000) drop-shadow(-1px 0 0 #000) drop-shadow(0 1px 0 #000) drop-shadow(0 -1px 0 #000);
}

.logo-accent {
    font-weight: 400;
    color: var(--text-secondary);
}

.main-nav ul {
    display: flex;
    gap: var(--spacing-xl);
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* opacity: 0.7; */
    transition: var(--transition-fast);
}

.main-nav a:hover {
    opacity: 1;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: none;
    /* Hidden on desktop */
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-color);
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(50vw * 4);
    /* 2 unique slides * 2 for infinity */
    height: 100%;
    animation: slider-scroll 120s linear infinite;
    /* Speed adjusted: 2x slower */
}

.slide {
    flex-shrink: 0;
    width: 50vw;
    /* Hard Locked */
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.4) brightness(0.45);
    /* Deep shadows, high contrast */
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.slide:hover img {
    /* Hover "ignition" disabled as requested */
    transform: scale(1);
    filter: grayscale(100%) contrast(1.4) brightness(0.45);
}

/* Updated for 2 slides * 50vw = 100vw loop */
@keyframes slider-scroll {
    0% {
        transform: translateX(calc(-50vw * 2));
        /* Reset after 2 slides */
    }

    100% {
        transform: translateX(0);
        /* Move right to origin */
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Marquee is now at the Bottom */
.bottom-marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 1000;
    border-top: 1px solid var(--text-primary);
    /* Thinner Border */
    background: #000;
    padding: 2px 0;
    /* Minimal padding */
}

.neon-text {
    color: var(--text-primary) !important;
    font-size: 0.6rem;
    /* Smaller Font */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    /* 2x Slower as requested */
    font-weight: 700;
}

/* Position adjustment for footer info since marquee is now at the bottom */
.hero-footer-info {
    position: absolute;
    bottom: 2rem;
    /* Lift slightly to clear the marquee */
    left: 0;
    width: 100%;
    background: #000000;
    border-top: 4px solid var(--text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    z-index: 10;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Headlines */
.hero-headline {
    font-family: var(--font-head);
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: -0.02em;
    /* Narrowed */
    margin-bottom: var(--spacing-md);
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
    /* Thicker outline */
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    /* Subtle glow */
}

/* Buttons & Actions */
.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.btn {
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-color);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.site-footer {
    background: #000000;
    border-top: 4px solid var(--text-primary);
    padding: 1.5rem 1rem;
    text-align: center;
}

.philosophy-tagline {
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.05em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    text-transform: none;
    /* More readable for longer text */
}

/* Clear mobile footer styles if any */
@media (max-width: 768px) {
    .site-footer {
        padding: 1rem;
    }
}

/* Premium Filter for Hero */
.hero-image {
    filter: grayscale(100%) contrast(1.1) brightness(0.85);
}

/* Interactive Nav */
.main-nav a {
    position: relative;
    padding-bottom: 4px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-primary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #000;
        z-index: 1500;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 5rem;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--spacing-xl);
        text-align: center;
    }

    .main-nav a {
        font-size: 2rem;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1600;
        /* Above the overlay */
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-footer-info {
        text-align: center;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hero-footer-info p {
        justify-content: center;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 15vw, 5rem);
    }
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #000;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    padding: var(--spacing-xl);
    position: relative;
    overflow-y: auto;
    border: 3px solid var(--silver);
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(0.95);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    border-bottom: 2px solid var(--silver);
    padding-bottom: var(--spacing-md);
}

.modal-header h2 {
    font-family: var(--font-head);
    letter-spacing: 0.1em;
}

.close-modal {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Modal Optimizations */
@media (max-width: 480px) {
    .modal {
        padding: 0 !important;
    }

    .modal-content {
        padding: 10px !important;
        padding-bottom: 120px !important;
        /* Clearance for iOS bottom browser bars */
        border: none !important;
        /* Remove white line on mobile */
        box-shadow: none !important;
        max-height: 100vh !important;
        height: 100vh !important;
        width: 100vw !important;
        border-radius: 0 !important;
        overflow-y: auto;
    }

    .modal-header {
        position: sticky;
        top: 0;
        background: #000;
        z-index: 100;
        margin-bottom: var(--spacing-sm);
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid var(--silver) !important;
    }

    .modal-header h2 {
        font-size: 1.2rem;
    }

    .close-modal {
        font-size: 2rem;
        padding: 5px;
    }
}

/* Spreadsheet Table Styling */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-head);
    text-align: left;
}

.price-table th,
.price-table td {
    padding: var(--spacing-lg);
    border: 1px solid #444;
    /* Subtle grid */
    font-size: 1.1rem;
    color: #fff;
    background: #000;
    /* Deep Black */
}

.price-table th {
    background: #000;
    color: var(--silver);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 1rem;
    border-bottom: 2px solid var(--silver);
}

.price-table tr:hover td {
    background: #050505;
    color: #fff;
    border-color: #666;
}

.price-table tr:hover {
    background: #111;
}

/* Mobile Responsive Pricing Table */
@media (max-width: 768px) {

    .price-table th,
    .price-table td {
        padding: var(--spacing-md);
        font-size: 0.9rem;
    }

    .price-table th {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    /* STRIP THE TABLE STRUCTURE - REVERT TO CLEAN TEXT BLOCKS */
    .table-container {
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table th,
    .price-table td,
    .price-table tr {
        display: block;
        width: 100%;
        border: none !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .price-table thead {
        display: none;
        /* Hide headers, use stacked labels instead */
    }

    .price-table tr {
        margin-bottom: var(--spacing-lg);
        padding-bottom: var(--spacing-md);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .price-table td {
        text-align: left;
        padding: var(--spacing-xs) 0 !important;
        font-size: 0.95rem;
        color: #fff;
    }

    /* Column Specific Styling for emphasis */
    .price-table td:nth-child(1) {
        /* Service */
        font-weight: 700;
        text-transform: uppercase;
        color: var(--silver);
        font-size: 1rem;
        margin-bottom: 2px;
    }

    .price-table td:nth-child(2) {
        /* Vehicle */
        color: #888;
        font-size: 0.85rem;
    }

    .price-table td:nth-child(3) {
        /* Price */
        color: #fff;
        font-weight: 700;
        font-size: 1.1rem;
        margin-top: 4px;
    }

    .price-table td:nth-child(4) {
        /* Additional Charge */
        color: #666;
        font-size: 0.8rem;
        font-style: italic;
        margin-top: 2px;
    }

    .policy-row td {
        border-top: 1px solid var(--silver) !important;
        padding-top: var(--spacing-md) !important;
        color: var(--silver);
        font-size: 0.85rem;
    }
}

.highlight-row {
    background: #1a1a1a;
    font-weight: 700;
}

.policy-row {
    background: #000;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.policy-row td {
    border-top: 2px solid var(--silver);
    padding-top: var(--spacing-lg);
}

/* Responsive Table */
@media (max-width: 768px) {

    .price-table th,
    .price-table td {
        font-size: 0.8rem;
        padding: var(--spacing-sm);
    }

    .modal-content {
        padding: var(--spacing-md);
    }
}


/* Contact Modal Specifics */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.contact-choice {
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    text-align: center;
    background: #111;
    border: 2px solid #444;
    transition: all 0.3s ease;
}

.contact-choice:hover {
    border-color: #fff;
    background: #1a1a1a;
    transform: translateY(-5px);
}

.contact-choice iconify-icon {
    font-size: 3rem;
}

.contact-choice span {
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
}

.contact-choice.bento-block {
    background: #000;
}

.contact-choice small {
    color: #888;
}

/* Booking Modal Specifics */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}


/* Bento Styles */
.bento-grid,
.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.bento-block {
    background: #0a0a0a;
    border: 1px solid var(--silver);
    padding: var(--spacing-lg);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    /* For stars */
}

/* NEW: Input Wrapper for Premium Effect without double spacing */
.bento-input-wrapper {
    background: #000;
    border: 1px solid var(--silver);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bento-input-wrapper:hover {
    border-color: #fff;
    box-shadow: 5px 5px 0px rgba(192, 192, 192, 0.1);
    transform: translate(-2px, -2px);
}

.bento-block.full-width {
    grid-column: 1 / -1;
}

.bento-block:hover {
    border-color: #fff;
    box-shadow: 10px 10px 0px rgba(192, 192, 192, 0.1);
    transform: translate(-5px, -5px);
}

/* Star Effect Particles */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star-particle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 5px #fff;
}

.booking-section h3,
.bento-block h3,
.form-group h3 {
    font-family: var(--font-head);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-xs);
    color: var(--silver);
    text-transform: uppercase;
}

.calendar-placeholder {
    padding: var(--spacing-md);
    background: #111;
}

.calendar-header {
    text-align: center;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid #333;
    padding-bottom: var(--spacing-xs);
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    color: #666;
    margin-bottom: var(--spacing-xs);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.calendar-grid div {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 1px solid #222;
}

.calendar-grid div.active {
    background: #fff;
    color: #000;
    font-weight: 700;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.vehicle-options {
    grid-template-columns: repeat(2, 1fr);
}

.payment-choice {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    /* Slim horizontal strip */
    height: 56px;
    /* High-precision web alignment */
    background: #000;
    border: 1px solid var(--silver);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.payment-choice:hover {
    background: #111;
    border-color: #fff;
}

.payment-choice.active {
    border: 3px solid #fff;
    background: #111;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.7), inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.payment-choice iconify-icon {
    font-size: 1.5rem;
}

.payment-choice span,
.payment-choice iconify-icon {
    position: relative;
    z-index: 2;
    /* Content above stars */
}

.payment-choice span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Utilities */
.w-full {
    width: 100%;
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

@media (max-width: 768px) {

    .contact-options,
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

/* Functional Booking Styles */
/* Photon Autocomplete Custom Dropdown */
.photon-autocomplete-container {
    position: relative;
    width: 100%;
}

.photon-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    border: 2px solid #fff;
    border-top: none;
    z-index: 3000;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.photon-dropdown.active {
    display: block;
}

.photon-item {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-family: var(--font-head);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.photon-item:last-child {
    border-bottom: none;
}

.photon-item:hover,
.photon-item.selected {
    background: #fff;
    color: #000;
}

.photon-item strong {
    display: block;
    color: inherit;
    font-size: 0.85rem;
}

.photon-item span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.brutalist-input {
    width: 100%;
    background: #000;
    border: 1px solid var(--silver);
    color: #fff;
    padding: var(--spacing-md);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    /* Optimized for iOS to prevent auto-zoom */
    height: 56px;
    /* High-precision web normalization */
    outline: none;
    transition: var(--transition-fast);
}

/* Overrides when inside wrapper */
.bento-input-wrapper .brutalist-input {
    border: none;
    background: transparent;
    position: relative;
    z-index: 2;
    /* Content above stars */
}

.brutalist-input:focus {
    background: #fff;
    color: #000;
}

/* Focus state for wrapper-based input */
.bento-input-wrapper:focus-within {
    border-color: #fff;
    box-shadow: 5px 5px 0px rgba(192, 192, 192, 0.1);
}

/* Input text color on white background (focus) needs handle */
.bento-input-wrapper .brutalist-input:focus {
    background: #fff;
    /* Opaque white bg on input obscures stars (desired) */
    color: #000;
}

.brutalist-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.booking-status {
    margin: var(--spacing-md) 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    min-height: 1.5rem;
}

.booking-status.success {
    color: #32cd32;
}

.booking-status.error {
    color: #ff4444;
}

.btn-soft-override {
    margin-top: 10px;
    background: transparent;
    border: 1px solid #ff4444;
    color: #ff4444;
    padding: 8px 16px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-soft-override:hover {
    background: #ff4444;
    color: #000;
}

.w-full {
    width: 100%;
}

.mt-sm {
    margin-top: var(--spacing-sm);
}

.mt-md {
    margin-top: var(--spacing-md);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

/* Flatpickr Customization */
.flatpickr-calendar {
    background: #000 !important;
    border: 2px solid #fff !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #fff !important;
    color: #000 !important;
    border-color: #fff !important;
}

.payment-links-container {
    display: none;
    /* Shown via JS after confirmation */
    background: #1a1a1a;
    border: 2px solid #fff;
    padding: var(--spacing-md);
    margin-top: var(--spacing-md);
    animation: slideUp 0.4s ease forwards;
}

.payment-links-container.active {
    display: block;
}

.payment-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: #fff;
    color: #000;
    padding: var(--spacing-md) var(--spacing-lg);
    /* Match .btn */
    font-weight: 700;
    font-family: var(--font-head);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.85rem;
    /* Match .btn */
    transition: var(--transition-fast);
    width: 100%;
    text-decoration: none;
}

.payment-link-btn:hover {
    background: #32cd32;
    transform: translateY(-2px);
}

.payment-instructions {
    font-size: 0.9rem;
    text-align: center;
}

.payment-address {
    background: #000;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
    word-break: break-all;
    font-family: monospace;
    font-size: 0.8rem;
}

/* Post-Payment Success View */
.booking-finalized {
    display: none;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.booking-finalized.active {
    display: block;
}

.success-icon {
    font-size: 5rem;
    color: #32cd32;
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 0 15px rgba(50, 205, 50, 0.4));
}

.booking-finalized h3 {
    font-family: var(--font-head);
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.booking-finalized p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.6;
}

.confirmation-id {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: monospace;
    font-size: 0.8rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .payment-options,
    .vehicle-options {
        grid-template-columns: 1fr 1fr;
    }
}

.flatpickr-day:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}


.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Helpers for Special Requests Layout */
.h-full {
    height: 100%;
}


.no-resize {
    resize: none;
}

/* Flex Column for height matching */
.stretch-col {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.stretch-col .bento-input-wrapper {
    flex-grow: 1;
    min-height: 128px;
    /* Standardize height for professional look */
    height: auto;
    /* Let flex handle height */
}

/* Fleet Section Styles */
.fleet-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #000;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.fleet-card {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    /* Override bento padding for full-width image */
}

.fleet-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-bottom: 1px solid #333;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.btn:active,
.btn-outline:active,
.payment-choice:active,
.fleet-action button:active {
    transform: scale(0.92) !important;
    /* Strong tactile feel for iOS */
    transition: transform 0.1s ease;
    height: 56px;
    /* Enforce global button height */
}

.fleet-info {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    flex-grow: 1;
}

.fleet-info h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.fleet-info .vehicle-desc {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.specs {
    display: flex;
    gap: var(--spacing-md);
    color: var(--silver);
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
}

.specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fleet-action {
    margin-top: auto;
    /* Push to bottom */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222;
    padding-top: var(--spacing-md);
}

.fleet-action .price {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #fff;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}