/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --gold: #D4AF37;
    --gold-dark: #b5952f;
    --gold-light: #ebd68a;
    --black: #111111;
    --gray-dark: #222222;
    --gray-medium: #666666;
    --gray-light: #f5f5f5;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-large {
    max-width: 1400px;
}

.gold-text {
    color: var(--gold);
}

.section-padding {
    padding: 80px 0;
}

.section-light {
    background-color: var(--gray-light);
}

.section-dark {
    background-color: var(--black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.section-title .subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
    text-align: center;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--white);
}

.btn-outline-dark {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline-dark:hover {
    background-color: var(--black);
    color: var(--white);
}

.full-width {
    width: 100%;
}

/* ==========================================================================
   Header Navbar
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--black);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.navbar.scrolled .logo {
    color: var(--white);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media (min-width: 1200px) {
    .nav-links {
        gap: 30px;
    }
}

.nav-links a:not(.btn) {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn).active::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 991px) {
    .nav-container {
        position: relative;
        justify-content: flex-start;
        min-height: 50px;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .navbar .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        margin: 0;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        left: -320px;
        width: 280px;
        height: 100vh;
        background-color: var(--black);
        flex-direction: column;
        padding: 90px 30px 30px;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.7);
        text-align: left;
        gap: 25px;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 1000;
        align-items: flex-start;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-only-link {
        display: block !important;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(254, 254, 254, 0.1);
        width: 100%;
        color: var(--gold) !important;
    }

    .site-logo-img {
        height: 50px;
    }
}

.mobile-only-link {
    display: none;
}

@media (max-width: 480px) {
    .site-logo-img {
        height: 30px;
    }
}

/* ==========================================================================
   Reservation Map
   ========================================================================== */
#reservation-map-wrap {
    width: 100%;
    margin: 0;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-top: none;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
    animation: mapSlideIn 0.4s ease;
}

/* Seamless attachment when map is active */
.reservation-wrapper.map-active .reservation-form-container {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

@keyframes mapSlideIn {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#reservation-map {
    width: 100%;
    height: 320px;
    z-index: 0;
}

#map-route-info {
    background: rgba(17, 17, 17, 0.92);
    padding: 10px 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

#map-route-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Hide Leaflet Routing verbose turn-by-turn panel */
.leaflet-routing-container {
    display: none !important;
}

/* ==========================================================================
   Location Autocomplete Dropdown
   ========================================================================== */
.ac-wrap {
    position: relative;
    width: 100%;
}

.ac-wrap input {
    width: 100%;
}

.ac-list {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.97);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
    display: none;
    animation: mapSlideIn 0.2s ease;
}

.ac-list.open {
    display: block;
}

.ac-item {
    padding: 11px 16px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.82);
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background 0.15s;
}

.ac-item:last-child {
    border-bottom: none;
}

.ac-item:hover,
.ac-item.active {
    background: rgba(212, 175, 55, 0.18);
    color: #fff;
}

.ac-item i {
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   Map Type Switcher (Premium Style)
   ========================================================================== */
.leaflet-control-layers {
    background: rgba(17, 17, 17, 0.9) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 6px !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

/* Collapsed Toggle Button (Square Icon) */
.leaflet-control-layers-toggle {
    width: 36px !important;
    height: 36px !important;
    background-image: none !important;
    /* Hide default icon */
    background-color: transparent !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
}

.leaflet-control-layers-toggle::after {
    content: '\f5fd';
    /* FontAwesome layers icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: var(--gold);
}

/* Hidden by default in collapsed mode */
.leaflet-control-layers-list {
    padding: 0;
    margin: 0 !important;
    max-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Expanded state UI */
.leaflet-control-layers-expanded {
    padding: 12px !important;
}

.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
    display: none !important;
    /* Hide icon when expanded */
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
    max-width: 250px;
    max-height: 500px;
    padding: 2px;
}

.leaflet-control-layers label {
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.leaflet-control-layers label:last-child {
    margin-bottom: 0 !important;
}

.leaflet-control-layers label:hover {
    color: var(--gold) !important;
}

.map-type-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 8px;
    letter-spacing: 0.5px;
}

/* Custom Radio Styling for Layer Switcher */
.leaflet-control-layers-selector {
    accent-color: var(--gold) !important;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Position control to top right for better visibility */
.leaflet-top.leaflet-right {
    top: 10px;
    right: 10px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    /* Always fill viewport so nav doesn't overlap */
    display: flex;
    align-items: flex-end;
    /* Move reservation form to the bottom */
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 60px;
    /* Space from the bottom */
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero_custom_landscape.png');
    background-size: cover;
    background-position: center;
    /* NOTE: background-attachment: fixed removed — breaks iOS Safari & Chrome on mobile */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(17, 17, 17, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-bottom: 15vh;
}

.hero-text {
    width: 100%;
    max-width: 800px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
    letter-spacing: -1px;
    font-weight: 500;
}

.hero-text p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s ease forwards;
}

/* Homepage Hero Slider Styles */
.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-bg .slick-list,
.hero-slider-bg .slick-track {
    height: 100vh !important;
}

.hero-slider-bg .hero-slide-item {
    height: 100vh !important;
    position: relative;
    outline: none;
}

.hero-slider-bg .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

/* Zoom out effect while slide is active */
.hero-slider-bg .slick-active .hero-bg {
    transform: scale(1);
}

.hero-slider-bg .hero-overlay {
    z-index: 2;
}

.hero-slider-bg .hero-content {
    z-index: 3;
}

/* Animations for text inside slider */
.hero-slider-bg .hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-slider-bg .slick-active .hero-text {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-bg .hero-text h1,
.hero-slider-bg .hero-text p,
.hero-slider-bg .hero-text span,
.hero-slider-bg .hero-text a {
    animation: none !important;
    /* Disable static animation so transition works on loop */
}

.hide-hero-content .hero-text {
    display: none !important;
}

/* Reservation Form Wrapper & Tabs */
.reservation-wrapper {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    margin-top: 0;
    position: relative;
    z-index: 20;
    /* Artırıldı */
    animation: fadeInUp 1.2s ease forwards;
    display: flex;
    flex-direction: column;
}

.reservation-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    z-index: 30;
    /* Formun üzerinde olması garanti edildi */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-shrink: 0;
    /* Boyutunun korunması sağlandı */
}

.reservation-tabs::-webkit-scrollbar {
    display: none;
}

.reservation-tabs .tab-btn {
    flex: 1 0 auto;
    background: rgba(17, 17, 17, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: none;
    border-right: none;
    padding: 14px 8px;
    font-family: 'Forum', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    cursor: pointer;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-width: 140px;
}

.reservation-tabs .tab-btn:first-child {
    border-top-left-radius: 8px;
}

.reservation-tabs .tab-btn:last-child {
    border-top-right-radius: 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.reservation-tabs .tab-btn:hover {
    background: rgba(17, 17, 17, 0.85);
    color: var(--white);
    border-color: rgba(212, 175, 55, 0.4);
}

.reservation-tabs .tab-btn.active {
    background: rgba(255, 255, 255, 0.85);
    color: #000;
    font-weight: 600;
    text-shadow: none !important;
    border-color: rgba(255, 255, 255, 0.6);
    margin-bottom: -1px;
    /* Visually merges the tab with the form box */
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
}

.reservation-tabs .tab-btn.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, #b8860b 100%);
}

/* Reservation Form - Horizontal Layout */
.reservation-form-container.horizontal-form {
    flex: 0 0 100%;
    width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    /* Connects smoothly to the active tab */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
}

.horizontal-form .reservation-form {
    display: flex;
    padding: 10px 20px;
    gap: 15px;
    align-items: center;
    /* Aligned center for tighter flow compared to flex-end */
}

/* Desktop Stability Enhancements */
@media (min-width: 769px) {
    .reservation-wrapper {
        max-height: calc(100vh - 160px);
        /* Tighter constraint to ensure it fits with headers */
        display: flex;
        flex-direction: column;
        overflow: hidden;
        /* Prevent outer scroll */
        margin-bottom: 0 !important;
        /* Remove margin that adds to total height */
    }

    .reservation-form-container.horizontal-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        min-height: 200px;
    }

    #multi-step-form {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
    }

    .form-step {
        flex: 1;
        overflow-y: auto !important;
        padding: 0px 30px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--gold) rgba(0, 0, 0, 0.05);
    }

    .form-step::-webkit-scrollbar {
        width: 6px;
    }

    .form-step::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.02);
    }

    .form-step::-webkit-scrollbar-thumb {
        background: var(--gold);
        border-radius: 10px;
    }

    .form-navigation {
        position: sticky !important;
        bottom: 0 !important;
        /* background: #fff !important; */
        padding: 2px 30px !important;
        margin-top: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.02) !important;
        z-index: 10;
        display: flex !important;
    }
}

.horizontal-form .form-group {
    flex: 1;
    margin-bottom: 0;
}

.horizontal-form .form-group label {
    white-space: nowrap;
}

/* Hourly form specific width adjustments */
.horizontal-form #pickup-group,
.horizontal-form #dropoff-group {
    flex: 1 !important;
}

.horizontal-form .form-group-date-long {
    flex: 1.1 !important;
}

.horizontal-form .form-group-time-short {
    flex: 0.6 !important;
}

.horizontal-form .form-group-hours-long {
    flex: none !important;
    width: 135px !important;
    margin-left: auto !important;
}

.horizontal-form .form-submit {
    flex: 0 0 180px;
    align-self: flex-end;
}

.horizontal-form .btn {
    margin-top: 0;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
    border: none;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.horizontal-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, var(--gold) 100%);
}

@media (max-width: 1024px) {
    .hero-text {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .horizontal-form .reservation-form {
        flex-wrap: wrap;
    }

    .horizontal-form .form-group {
        flex: 1 1 calc(33.333% - 15px);
        min-width: 200px;
    }

    .horizontal-form .form-submit {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .horizontal-form .form-group {
        flex: 1 1 100%;
    }
}

/* Base styles for the section */
.fleet-section {
    background-color: var(--white);
    padding: 80px 0;
}

.fleet-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.fleet-section .section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--black);
    font-weight: 500;
    letter-spacing: -0.5px;
}

.fleet-section .section-title p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Base styles for the slider container */
.fleet-slider-container {
    margin-top: 50px;
    padding-top: 20px !important;
    margin-top: 30px !important;
    /* Adjust margin-top to account for padding */
}

.reservation-form {
    padding: 15px 25px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.horizontal-form .form-group label {
    justify-content: flex-start;
}

.form-group label i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    padding-right: 40px;
    /* Prevent text overlap with custom chevron */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--black);
    background-color: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23222222%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat, repeat;
    background-position: right 1em top 50%, 0 0;
    background-size: .65em auto, 100%;
}

.form-group select option {
    background-color: #fff;
    color: #222;
}

/* Custom Select Dropdown (to match input width) */
.custom-select-wrap {
    position: relative;
    width: 100%;
}

.custom-select-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid var(--gold);
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
    margin-top: -2px;
    /* Seamless look with the box */
}

.custom-select-list.open {
    display: block;
}

.custom-select-item {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-item:last-child {
    border-bottom: none;
}

.custom-select-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.custom-select-item.selected {
    background: var(--gold);
    color: #fff;
}

.reservation-form .btn {
    margin-top: 10px;
    padding: 15px;
    font-size: 16px;
}

/* Hourly Counter Styling */
.hour-counter {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    /* Slightly more solid but still matching tabs */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    overflow: hidden;
    height: 39px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.hour-counter:focus-within {
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.hour-btn {
    background: rgba(0, 0, 0, 0.03);
    border: none;
    color: var(--black);
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.hour-btn:hover {
    color: var(--white);
    background-color: var(--gold);
}

.hour-counter input[type="number"] {
    flex: 1;
    text-align: center;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Remove default arrows Chrome, Safari, Edge, Opera */
.hour-counter input::-webkit-outer-spin-button,
.hour-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   Fleet Section
   ========================================================================== */
.fleet-slider-container {
    position: relative;
    padding-bottom: 80px;
}

.fleet-slider {
    margin: 0 -15px;
}

.fleet-slide {
    padding: 15px;
}

/* Fleet Filter Buttons */
.fleet-filter-btn-group {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fleet-filter-btn-group .filter-btn {
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    background: transparent;
    color: #475569;
}

.fleet-filter-btn-group .filter-btn:hover {
    border-color: #6c757d;
    color: #6c757d;
}

.fleet-filter-btn-group .filter-btn.active {
    background: #6c757d;
    color: #fff;
    border-color: #6c757d;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.fleet-card-new {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 30px 20px;
    transition: all 0.4s ease;
    border: 2px solid #e2e8f0;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    /* Hardware acceleration to fix radius clipping bugs during transforms */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Highlight the active slide exact color from themepanthers */
.fleet-slide.slick-current .fleet-card-new {
    background-color: transparent;
}

.fleet-card-new:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.fleet-img-new {
    height: 220px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-img-new img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
}

.fleet-card-new:hover .fleet-img-new img {
    transform: scale(1.03);
}

.fleet-info-new h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    color: #121212;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.fleet-card-new:hover .fleet-info-new h3 {
    color: var(--gold);
}

.fleet-specs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
    margin-top: auto;
}

.spec-item {
    font-size: 13px;
    color: var(--gray-medium);
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: 50%;
    /* 2 column layout */
}

.spec-text {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
}

.spec-item.full-width {
    width: 100%;
}

.spec-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eff0f2;
    flex-shrink: 0;
    text-align: center;
    display: inline-block;
    line-height: 32px;
}

.spec-item i {
    color: var(--gold) !important;
    font-size: 15px !important;
    line-height: inherit !important;
    vertical-align: middle !important;
    display: inline-block !important;
    width: 32px !important;
    height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

/* Custom Slider Navigation */
.custom-slider-nav {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    width: 400px;
    max-width: 90%;
    justify-content: space-between;
    margin-top: 30px;
}

.slider-line {
    flex-grow: 1;
    height: 2px;
    background-color: rgba(221, 221, 221, 0.5);
    margin: 0 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.slider-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: var(--gold);
    transition: width 0.4s ease-in-out;
}

.custom-prev,
.custom-next,
.custom-prev-2,
.custom-next-2 {
    background: transparent;
    border: none;
    color: var(--gray-medium);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
}

.custom-prev:hover,
.custom-next:hover,
.custom-prev-2:hover,
.custom-next-2:hover {
    color: var(--black);
}

/* ==========================================================================
   Tours Section
   ========================================================================== */
.destination-grid {
    display: grid;
    /* Basic 2-column or 3-column dependent on space. Masonry requires spans. */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* We can make a specific generic child span more if we want */
.destination-card.large-card {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .destination-card.large-card {
        grid-column: span 1;
    }
}

.destination-card {
    position: relative;
    border-radius: 12px;
    /* modern rounded corners */
    overflow: hidden;
    height: 350px;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.dest-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(1) brightness(0.85);
}

.destination-card:hover .dest-bg {
    transform: scale(1.08);
    /* Restore original color on hover */
    filter: grayscale(0) brightness(1);
}

/* Gradient overlay so text at bottom is always readable */
.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 25px;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center aligning text as requested by the look of the reference */
    text-align: center;
}

.dest-routes {
    font-family: 'Segoe UI', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    opacity: 0.9;
    color: var(--white);
    /* adding a subtle visual line like the reference if desired, or keep clean */
}

.dest-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* extra pop */
    transition: color 0.3s ease;
    color: var(--white);
}

.destination-card:hover .dest-title {
    color: var(--gold);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(17, 17, 17, 0.9)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
    color: var(--gold);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: var(--white);
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 4px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.review-text {
    font-size: 1.25rem;
    font-style: italic;
    color: #000;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.8;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.reviewer-role {
    font-size: 0.95rem;
    color: #b5952f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer h4 {
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.5;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer ul li a {
    position: relative;
    transition: var(--transition);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info li i {
    margin-top: 5px;
}

.social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ==========================================================================
   Animations & Responsive
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .hero {
        align-items: flex-start;
        height: auto;
        min-height: 100vh;
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .hero-content {
        flex-direction: column;
        justify-content: flex-start;
        text-align: center;
        padding-top: 0;
        margin-top: 0;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-text p {
        margin: 0 auto;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .reservation-form-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }

    .tours-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 1024px) {

    .internal-hero,
    .tour-premium-hero,
    .page-hero,
    .tr-hero,
    .gc-hero {
        align-items: center !important;
        text-align: center !important;
        padding-top: 130px;
        height: auto;
        padding-bottom: 60px;
    }
}

/* ==========================================================================
   Tours Internal Page
   ========================================================================== */
.internal-hero {
    position: relative;
    height: 30vh;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed removed -- breaks iOS Safari */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Ensure content clears fixed navbar */
    box-sizing: border-box;
}

.internal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.internal-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.internal-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: var(--white) !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0px 4px 15px rgba(0, 0, 0, 0.7);
}

.internal-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 600px;
    margin: 0 auto;
    color: #e0e0e0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
    .internal-hero {
        padding-top: 180px !important;
        height: auto;
        min-height: 350px;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .internal-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .internal-hero-content h1 {
        font-size: 2.5rem !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }

    .internal-hero-content p {
        font-size: 0.95rem;
        padding: 0 15px;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .internal-hero-content .subtitle {
        text-align: center !important;
        display: block !important;
        margin: 0 auto 15px !important;
    }
}

.tours-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tour-detail-card {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.tour-img-wrapper {
    flex: 0 0 45%;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.tour-text-content {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-text-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 20px;
}

.tour-desc {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 2px solid var(--gold) !important;
}

.btn-outline:hover {
    background-color: var(--gold) !important;
    color: var(--white) !important;
}

@media (max-width: 992px) {
    .tour-detail-card {
        flex-direction: column !important;
    }

    .tour-img-wrapper {
        flex: none;
        width: 100%;
        height: 300px;
    }

    .tour-text-content {
        padding: 30px 20px;
    }

    .internal-hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Editorial Text & Tour Details
   ========================================================================== */
/* ==========================================================================
   Ultra-Luxury Tour Details Page
   ========================================================================== */
.fleet-premium-hero {
    position: relative;
    height: 30vh;
    min-height: 200px;
    background-size: cover;
    background-position: center 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.fleet-premium-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(17, 17, 17, 1) 100%);
    z-index: 1;
}

.fleet-premium-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.fleet-premium-hero-content span.subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.fleet-premium-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw + 0.5rem, 3rem);
    margin-bottom: 20px;
    color: var(--white) !important;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 0px 4px 15px rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
    .fleet-premium-hero {
        height: auto;
        padding-top: 180px !important;
        padding-bottom: 60px;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .fleet-premium-hero-content {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .fleet-premium-hero-content h1 {
        font-size: 2.2rem !important;
        text-align: center !important;
    }

    .fleet-premium-hero-content p {
        padding: 0 15px;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .fleet-premium-hero-content span.subtitle {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.tour-premium-hero {
    height: 70vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(17, 17, 17, 0.9) 100%);
    z-index: 1;
}

.premium-hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.tour-premium-subtitle-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.tour-premium-subtitle {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0 50px;
    position: relative;
}

.tour-premium-subtitle::before,
.tour-premium-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35px;
    height: 1px;
    background-color: var(--gold);
}

.tour-premium-subtitle::before {
    left: 0;
}

.tour-premium-subtitle::after {
    right: 0;
}

.tour-premium-title {
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    margin-top: 10px;
    line-height: 1.1;
}

.tour-premium-content-section {
    background-color: #f7f7f7;
    padding-bottom: 100px;
}

.tour-premium-board {
    background: #fff;
    border-radius: 0;
    margin-top: -120px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.reservation-wrapper {
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.premium-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 600px;
}

.tour-premium-left {
    background: #ffffff;
    padding: 70px 60px;
}

.premium-heading {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.tour-premium-lead {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.9;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    margin-bottom: 40px;
}

.premium-hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.4), transparent);
    margin: 50px 0;
}

.tour-premium-details p {
    font-size: 1.1rem;
    line-height: 2;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    font-family: 'Open Sans', sans-serif;
}

.tour-premium-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.tour-premium-details ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #444;
}

.tour-premium-details ul li::before {
    content: '\f105';
    /* Angle right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
}

.tour-amenities-box {
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    padding: 40px;
    border-radius: 4px;
    margin-top: 50px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.amenity-item {
    display: flex;
    align-items: flex-start;
}

.amenity-item i {
    margin-right: 20px;
    margin-top: 5px;
}

.amenity-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.amenity-item span {
    font-size: 0.9rem;
    line-height: 1.5;
}

.tour-premium-sidebar {
    background-color: #111;
    height: 100%;
    border-left: 1px solid #eaeaea;
}

.sidebar-booking-card {
    padding: 60px 50px;
    position: sticky;
    top: 100px;
}

.premium-btn-book {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.premium-btn-book:hover {
    background: var(--gold);
    color: #111;
}

.sidebar-contact-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Testimonials Custom Arrows
   ========================================================================== */
.testimonials-slider {
    position: relative;
    padding: 0 60px;
    /* Make room for the arrows */
}

.custom-testi-prev,
.custom-testi-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.custom-testi-prev:hover,
.custom-testi-next:hover {
    background: var(--gold);
    color: var(--white);
}

.custom-testi-prev {
    left: 0;
}

.custom-testi-next {
    right: 0;
}

/* Mobile Settings for Testimonials */
@media (max-width: 768px) {

    .custom-testi-prev,
    .custom-testi-next {
        display: none !important;
    }

    .testimonials-slider {
        padding: 0;
        /* Let centerPadding handle the spacing */
    }
}

/* Center Mode Styles for Testimonials */
.testimonials-slider .slick-slide {
    opacity: 0.6;
    transition: all 0.4s ease;
    transform: scale(0.9);
}

.testimonials-slider .slick-center {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
    position: relative;
}


@media (max-width: 991px) {
    .premium-layout-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .tour-premium-title {
        font-size: 3rem;
    }

    .tour-premium-board {
        margin-top: -60px;
    }

    .tour-premium-left {
        padding: 40px 30px;
    }

    .sidebar-booking-card {
        padding: 40px 30px;
    }
}

/* ==========================================================================
   Fleet Page 4-Column Grid
   ========================================================================== */
.fleet-page-content {
    background-color: #0f0f0f;
}

.fleet-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.no-image-placeholder i {
    color: #333;
    font-size: 3rem;
}

.fleet-grid-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.fleet-grid-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.fleet-grid-image {
    width: 100%;
    height: 240px;
    background-color: var(--white);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.fleet-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    opacity: 0.95;
}

.fleet-grid-card:hover .fleet-grid-image img {
    transform: scale(1.08);
    opacity: 1;
}

.fleet-grid-content {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: #151515;
}

.fleet-grid-model {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.fleet-grid-name {
    font-size: 1.5rem;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    flex-grow: 1;
}

.fleet-grid-specs {
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.fleet-grid-specs i {
    margin-right: 8px;
    color: var(--gold);
}

.premium-btn-view {
    margin-top: 25px;
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 5px;
}

.premium-btn-view::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.fleet-grid-card:hover .premium-btn-view::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .fleet-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .fleet-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fleet-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Contact Page Details
   ========================================================================== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Luxury placeholder gradient until image is added */
    background: linear-gradient(135deg, #121212 0%, #1e1e1e 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    margin-top: 60px;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 15px;
    animation: fadeInUp 1s ease forwards;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    animation: fadeInUp 1.2s ease forwards;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Left Sidebar Info */
.contact-info-block {
    padding-right: 20px;
}

.underline-left {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    margin-top: 15px;
}

.info-items {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background-color: var(--gold);
    color: var(--white);
    transform: translateY(-5px);
}

.info-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text p {
    color: var(--gray-medium);
    margin-bottom: 0;
}

.text-sm {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
}

/* Contact Form Block */
.contact-form-block {
    background-color: var(--white);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

@media (max-width: 576px) {
    .contact-form-block {
        padding: 30px 20px;
    }
}

.contact-form-block h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.premium-form .form-group label {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--black);
    text-transform: none;
    letter-spacing: 0;
}

.premium-form input,
.premium-form textarea {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0;
    background-color: transparent;
    padding: 12px 0;
    margin-top: 5px;
    font-weight: 300;
}

.premium-form input:focus,
.premium-form textarea:focus {
    box-shadow: none;
    border-color: var(--gold);
}

.premium-form textarea {
    resize: vertical;
    min-height: 120px;
}

.premium-form .btn-gold {
    margin-top: 20px;
    padding: 16px;
    font-size: 1rem;
    letter-spacing: 2px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    background-color: var(--white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--gray-light);
}

.faq-answer p {
    padding: 0 25px;
    margin: 0;
    color: var(--gray-medium);
    font-weight: 300;
    line-height: 1.7;
}

/* Active FAQ State */
.faq-item.active .faq-question {
    background-color: var(--black);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Arbitrary large height to allow content drop */
    padding: 20px 0;
}

/* ===== Newsletter Form – Premium Dark Theme ===== */
.newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    padding-bottom: 4px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.newsletter-form input[type="email"]:focus {
    color: #fff;
}

.newsletter-form .btn-gold {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1rem;
    padding: 10px 14px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.newsletter-form .btn-gold:hover {
    color: #fff;
    transform: translateX(3px);
}

/* ===== Site Logo Image ===== */
.site-logo-img {
    height: 70px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.site-logo-img:hover {
    opacity: 1;
    /* CSS filter to convert black to #d4af37 (Gold) exactly */
    filter: brightness(0) invert(72%) sepia(61%) saturate(354%) hue-rotate(5deg) brightness(91%) contrast(87%);
}

.footer-logo-img {
    height: 100px;
    margin-bottom: 1px;
}

/* ===== Tours Page – Premium Luxury Styles ===== */

/* Hero Section */
.tr-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #0a0a0a;
    padding-top: 100px;
    /* Strong clearance for fixed navbar */
    box-sizing: border-box;
}

.tr-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/tours_hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.4;
    z-index: 1;
}

.tr-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.8) 70%, rgba(10, 10, 10, 1) 100%);
    z-index: 2;
}

.tr-hero-content {
    position: relative;
    z-index: 3;
}

.tr-hero-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
}

.tr-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    color: #fff;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.tr-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.tr-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.tr-hero-divider {
    width: 160px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .tr-hero {
        padding-top: 180px;
        height: auto;
        min-height: 500px;
    }

    .tr-hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .tr-hero-tagline {
        margin-bottom: 15px;
        letter-spacing: 4px;
        font-size: 0.75rem;
    }

    .tr-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Page Layout */
.tr-section {
    background-color: #0a0a0a;
    padding: 100px 0 120px;
    position: relative;
}

.tr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

/* Tour Cards Grid */
.tr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .tr-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        gap: 40px;
    }
}

.tr-card {
    position: relative;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.tr-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.tr-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tr-card-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.tr-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0f0f0f 0%, transparent 50%);
    z-index: 1;
}

.tr-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: grayscale(1) brightness(0.8);
}

.tr-card:hover .tr-card-img {
    transform: scale(1.05);
    filter: grayscale(0) brightness(1);
}

.tr-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.tr-card-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.tr-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tr-card-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tr-card-actions {
    margin-top: auto;
    display: flex;
    gap: 15px;
}

@media (max-width: 575px) {
    .tr-card-actions {
        flex-direction: column;
    }
}

.tr-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.tr-btn-primary {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}

.tr-btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

.tr-btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tr-btn-outline:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
}

/* Empty State */
.tr-empty {
    text-align: center;
    padding: 80px 0;
}

.tr-empty i {
    font-size: 4rem;
    color: rgba(212, 175, 55, 0.3);
    margin-bottom: 25px;
}

.tr-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}

.tr-empty p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* No Image Placeholder */
.tr-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.tr-no-image i {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.4);
}

/* Refined Luxury Contact Styles */
.contact-lux-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-lux-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

.lux-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.lux-subheading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.lux-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 300;
}

.lux-info-box {
    padding-right: 20px;
}

.lux-info-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 45px;
}

.lux-info-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.lux-info-icon i {
    font-size: 1.2rem;
}

.lux-info-item:hover .lux-info-icon {
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.lux-info-highlight {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.lux-info-text h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.lux-info-text p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 300;
}

.lux-info-text a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.lux-info-text a:hover {
    color: var(--gold);
}

.lux-form-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    border-radius: 4px;
    backdrop-filter: blur(10px);
}

.lux-form-group {
    margin-bottom: 30px;
}

.lux-form-row {
    display: flex;
    gap: 30px;
}

@media (max-width: 767px) {
    .lux-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.lux-form-group.half {
    flex: 1;
}

.lux-form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.lux-form-group input,
.lux-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 15px 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.lux-form-group input:focus,
.lux-form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.02);
    padding-left: 15px;
}

.lux-form-group input::placeholder,
.lux-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.lux-btn {
    background-color: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 18px 40px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    font-weight: 500;
}

.lux-btn:hover {
    background-color: var(--gold);
    color: #000;
}

/* FAQ Accordion Luxury */
.lux-faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 40px;
}

.lux-faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.lux-faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 30px 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.lux-faq-question:hover {
    color: var(--gold);
}

.lux-faq-icon {
    font-size: 1rem;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lux-faq-item.active .lux-faq-icon {
    transform: rotate(180deg);
}

.lux-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
    opacity: 0;
}

.lux-faq-item.active .lux-faq-answer {
    max-height: 400px;
    opacity: 1;
}

.lux-faq-answer p {
    padding-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
}

/* ===== Gift Cards – Premium Luxury Styles ===== */

/* Hero */
.gc-hero {
    position: relative;
    height: 45vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
    padding-top: 100px;
    /* Strong clearance for fixed navbar */
    box-sizing: border-box;
}

.gc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.gc-hero-content {
    position: relative;
    z-index: 2;
}

.gc-hero-tagline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.gc-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    color: #fff;
    font-weight: 400;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gc-hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.gc-hero p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 520px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.gc-hero-divider {
    width: 50px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 30px;
    opacity: 0.6;
}

@media (max-width: 991px) {
    .gc-hero {
        padding-top: 180px;
        height: auto;
        min-height: 500px;
    }

    .gc-hero h1 {
        font-size: 2.8rem;
    }

    .gc-hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 3px;
        margin-bottom: 15px;
    }

    .gc-hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Section utility */
.gc-section {
    background-color: #111;
    padding: 100px 0;
}

.gc-section-light {
    background-color: #0d0d0d;
}

.gc-section-title {
    text-align: center;
    margin-bottom: 70px;
}

.gc-section-title .eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 18px;
    font-weight: 500;
}

.gc-section-title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.gc-section-title p {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

.gc-gold-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* ===== Gift Card Tier Cards ===== */
.gc-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .gc-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.gc-card {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    padding: 50px 35px 45px;
    background: rgba(255, 255, 255, 0.01);
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.03);
}

.gc-card:hover::before {
    opacity: 1;
}

.gc-card.featured {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.04);
}

.gc-card.featured::before {
    opacity: 1;
}

.gc-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 2px;
}

.gc-card-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0.8;
}

.gc-card-tier {
    font-family: var(--font-body);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.gc-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #fff;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
}

.gc-card-price sup {
    font-size: 1.5rem;
    vertical-align: super;
    color: var(--gold);
}

.gc-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
}

.gc-card-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 30px;
}

.gc-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

.gc-card-features li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    font-weight: 300;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gc-card-features li i {
    color: var(--gold);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.gc-btn-outline {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    background: transparent;
    transition: all 0.35s ease;
    text-decoration: none;
    margin-top: auto;
}

.gc-btn-outline:hover,
.gc-card.featured .gc-btn-outline {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.gc-card.featured .gc-btn-outline:hover {
    background: transparent;
    color: var(--gold);
}

/* ===== How It Works ===== */
.gc-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.gc-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

@media (max-width: 767px) {
    .gc-steps {
        grid-template-columns: 1fr 1fr;
    }

    .gc-steps::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .gc-steps {
        grid-template-columns: 1fr;
    }
}

.gc-step {
    text-align: center;
    position: relative;
}

.gc-step-num {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 auto 25px;
    background: #111;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

.gc-step h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 12px;
}

.gc-step p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ===== Order Form ===== */
.gc-form-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 70px 60px;
}

@media (max-width: 767px) {
    .gc-form-wrap {
        padding: 40px 25px;
    }
}

.gc-form-wrap h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 40px;
    text-align: center;
}

.gc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 600px) {
    .gc-form-grid {
        grid-template-columns: 1fr;
    }
}

.gc-form-group {
    position: relative;
    margin-bottom: 10px;
}

.gc-form-group.full {
    grid-column: 1 / -1;
}

.gc-form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.gc-form-group input,
.gc-form-group select,
.gc-form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.gc-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23d4af37'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 25px;
    cursor: pointer;
}

.gc-form-group select option {
    background: #1a1a1a;
    color: #fff;
}

.gc-form-group input:focus,
.gc-form-group select:focus,
.gc-form-group textarea:focus {
    border-color: var(--gold);
}

.gc-form-group input::placeholder,
.gc-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.gc-form-group textarea {
    resize: none;
    height: 90px;
}

.gc-submit-btn {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding: 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gc-submit-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Bottom note */
.gc-bottom-note {
    text-align: center;
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gc-bottom-note p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.gc-bottom-note a {
    color: var(--gold);
    text-decoration: none;
}

/* ==========================================================================
   Premium Vehicle Details (car_detail.php)
   ========================================================================== */
.car-premium-hero {
    height: 30vh;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed removed -- breaks iOS Safari */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Ensure content clears fixed navbar */
    box-sizing: border-box;
}

.car-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(13, 13, 13, 0.95) 100%);
    z-index: 1;
}

.car-premium-container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.car-premium-subtitle-wrapper {
    margin-bottom: 20px;
}

.car-premium-subtitle {
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    padding: 0 40px;
}

.car-premium-subtitle::before,
.car-premium-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background-color: var(--gold);
}

.car-premium-subtitle::before {
    left: 0;
}

.car-premium-subtitle::after {
    right: 0;
}

.car-premium-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.9);
    margin-top: 0;
    line-height: 1;
    font-weight: 500;
}

/* Layout */
.car-content-section {
    background-color: #0f0f0f;
    padding: 80px 0;
}

.car-layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content */
.car-section-heading {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.car-description p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.car-description p strong {
    color: var(--white);
    font-weight: 600;
}

.car-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.4), transparent);
    margin: 50px 0;
}

/* Specs Grid */
.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.car-spec-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.car-spec-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.car-spec-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-right: 25px;
    width: 35px;
    text-align: center;
}

.car-spec-text {
    display: flex;
    flex-direction: column;
}

.car-spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    font-weight: 600;
}

.car-spec-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 500;
}

/* Right Sidebar */
.car-sidebar {
    position: sticky;
    top: 130px;
}

.car-booking-card {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.car-booking-title {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.car-pricing-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.car-pricing-header {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-align: center;
}

.car-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.car-pricing-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    font-family: var(--font-body);
}

.car-pricing-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.car-pricing-list li span {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.car-pricing-list li strong {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.car-booking-contact-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 30px;
}

.car-booking-action {
    margin-bottom: 30px;
}

.car-contact-info {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.car-contact-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.car-contact-info a {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.car-contact-info a:hover {
    color: #fff;
}

/* Footer / Back Action */
.car-back-action {
    text-align: center;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.car-back-action .btn {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

.car-back-action .btn:hover {
    border-color: var(--gold) !important;
    color: #000 !important;
    background-color: var(--gold) !important;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .car-layout-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .car-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .car-specs-grid {
        grid-template-columns: 1fr;
    }

    .car-premium-hero {
        height: auto;
        padding: 150px 0 80px;
    }

    .car-details-left {
        padding: 0;
    }

    .car-section-heading {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   Flatpickr Premium Theme Overrides
   ========================================================================== */
.flatpickr-calendar {
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
    border-radius: 8px !important;
    padding-bottom: 15px !important;
    padding-top: 10px !important;
    font-family: var(--font-body) !important;
}

.flatpickr-calendar.arrowTop:before {
    border-bottom-color: rgba(212, 175, 55, 0.3) !important;
}

.flatpickr-calendar.arrowTop:after {
    border-bottom-color: #1a1a1a !important;
}

.flatpickr-calendar.arrowBottom:before {
    border-top-color: rgba(212, 175, 55, 0.3) !important;
}

.flatpickr-calendar.arrowBottom:after {
    border-top-color: #1a1a1a !important;
}

.flatpickr-months {
    background: transparent !important;
}

.flatpickr-months .flatpickr-month {
    background: transparent !important;
    color: var(--gold) !important;
    height: 40px !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    background: #1a1a1a !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background: #1a1a1a !important;
}

.flatpickr-current-month .numInputWrapper input,
.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown {
    display: none !important;
}

/* Custom injected Year Select Dropdown */
select.bespoke-year-select {
    background: transparent url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right center !important;
    background-size: 0.65em auto !important;
    padding-right: 20px !important;
    border: none !important;
    color: var(--white) !important;
    font-family: inherit !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    outline: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
}

select.bespoke-year-select option {
    background: #1a1a1a !important;
    color: #fff !important;
}

.flatpickr-current-month input.cur-year {
    color: var(--white) !important;
    font-weight: 500 !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: var(--white) !important;
    fill: var(--white) !important;
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
    fill: var(--gold) !important;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.3) !important;
    font-weight: 500 !important;
    font-size: 0.75rem !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
}

/* Fix Saturday Cutoff */
.flatpickr-weekdays {
    height: 35px !important;
}

.flatpickr-weekdaycontainer {
    padding: 0 !important;
}

.flatpickr-day {
    color: #e0e0e0 !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    border-radius: 4px !important;
    font-weight: 400 !important;
}

.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: var(--white) !important;
}

.flatpickr-day.today {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
    border-color: var(--gold) !important;
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--white) !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
    font-weight: 600 !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: rgba(255, 255, 255, 0.1) !important;
}

/* Fit calendar panel to input width (booking date) without losing clarity */
.flatpickr-calendar.fit-to-input {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.flatpickr-calendar.fit-to-input .flatpickr-innerContainer,
.flatpickr-calendar.fit-to-input .flatpickr-rContainer,
.flatpickr-calendar.fit-to-input .flatpickr-days,
.flatpickr-calendar.fit-to-input .dayContainer {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

.flatpickr-calendar.fit-to-input .flatpickr-weekdaycontainer {
    width: 100% !important;
    display: flex !important;
}

.flatpickr-calendar.fit-to-input span.flatpickr-weekday {
    flex: 1 1 calc(100% / 7) !important;
    max-width: calc(100% / 7) !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.02em !important;
}

.flatpickr-calendar.fit-to-input .dayContainer {
    display: flex !important;
    flex-wrap: wrap !important;
    align-content: flex-start !important;
}

.flatpickr-calendar.fit-to-input .flatpickr-day {
    flex: 0 0 calc(100% / 7) !important;
    max-width: calc(100% / 7) !important;
    height: 34px !important;
    line-height: 34px !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
}

/* Fit-to-input month/year: compact and side-by-side */
.flatpickr-calendar.fit-to-input .flatpickr-current-month {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 4px !important;
    width: calc(100% - 20px) !important;
    padding: 0 6px 0 6px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

.flatpickr-calendar.fit-to-input .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-size: 0.92rem !important;
    /* Allow more space for year by not growing too much */
    flex: 0 1 auto !important;
    min-width: 0 !important;
    margin-left: -2px !important;
    padding-right: 22px !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-size: 0.65em auto !important;
    /* Move arrow further left per user request */
    background-position: right 10px center !important;
}

.flatpickr-calendar.fit-to-input select.bespoke-year-select,
.flatpickr-calendar.fit-to-input .flatpickr-current-month input.cur-year {
    font-size: 0.92rem !important;
    flex: 0 0 auto !important;
    width: 5ch !important;
    min-width: 5ch !important;
    max-width: 5ch !important;
    padding-right: 12px !important;
    box-sizing: border-box !important;
}

.flatpickr-calendar.fit-to-input select.bespoke-year-select {
    margin-left: -2px !important;
    /* Match month dropdown arrow */
    background-size: 0.65em auto !important;
    background-position: right 0px center !important;
}

.flatpickr-calendar.fit-to-input .flatpickr-months .flatpickr-month {
    height: 36px !important;
}

.flatpickr-time {
    height: 50px !important;
    max-height: 50px !important;
    line-height: normal !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: -15px !important;
    padding-top: 10px !important;
}

.flatpickr-time .numInputWrapper {
    height: 40px !important;
    flex: 1 1 60px !important;
    margin: 0 2px !important;
}

select.bespoke-time-dropdown {
    width: 100% !important;
    height: 40px !important;
    background: transparent url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 8px center !important;
    background-size: 0.65em auto !important;
    padding-right: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 4px !important;
    color: var(--white) !important;
    font-weight: 500 !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body) !important;
    text-align: center !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

select.bespoke-time-dropdown option {
    background: #1a1a1a !important;
    color: #fff !important;
}

select.bespoke-time-dropdown:hover,
select.bespoke-time-dropdown:focus {
    border-color: var(--gold) !important;
    color: var(--gold) !important;
}

.flatpickr-time .flatpickr-time-separator {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 1.4rem !important;
    line-height: 40px !important;
    width: 10px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flatpickr-am-pm-wrapper {
    flex: 1 1 65px !important;
    margin-left: 5px !important;
}

/* Time Picker specific modal size when noCalendar is true */
.flatpickr-calendar.noCalendar {
    width: 260px !important;
    padding: 15px 10px !important;
    background: #1a1a1a !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
}

#booking-time {
    cursor: pointer;
}

/* Hide Time Spinners universally for clean look */
.numInputWrapper span.arrowUp,
.numInputWrapper span.arrowDown {
    display: none !important;
}

/* ==========================================================================
   Premium Fleet Grouping Styles
   ========================================================================== */
.fleet-premium-section {
    background-color: var(--gray-light);
    padding: 100px 0;
}

.fleet-premium-group {
    background: #fff;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    border-top: 4px solid var(--gold);
}

.fleet-group-header-wrapper {
    position: relative;
    margin-bottom: 50px;
}

.fleet-group-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

.fleet-group-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--black);
    margin: 0;
    font-weight: 600;
}

.fleet-group-divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 25px auto 0;
    border-radius: 2px;
}

/* Premium Fleet Grid */
.fleet-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-top: 20px !important;
    margin-top: -10px !important;
}

.fleet-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    isolation: isolate;
    z-index: 1;
    /* Hardware acceleration to fix radius clipping bugs during transforms */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fleet-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    pointer-events: none;
    z-index: 10;
    transition: all 0.4s ease;
}

.fleet-card-premium:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
}

.fleet-card-premium:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
}

.fleet-card-image-wrapper {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    transform: translateZ(0);
}

.fleet-card-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    mix-blend-mode: multiply;
}

.fleet-card-premium:hover .fleet-card-image {
    transform: scale(1.08);
}

.no-image-placeholder-premium {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.1);
}

.fleet-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(3px);
    border-radius: 12px 12px 0 0;
}

.fleet-card-premium:hover .fleet-card-overlay {
    opacity: 1;
}

.btn-discover {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    opacity: 0;
}

.fleet-card-premium:hover .btn-discover {
    transform: translateY(0);
    opacity: 1;
}

.fleet-card-content {
    padding: 25px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.fleet-card-model {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-medium);
    margin-bottom: 5px;
    font-weight: 600;
}

.fleet-card-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--black);
    margin: 0;
}

.fleet-card-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
}

.spec-item {
    display: flex;
    align-items: baseline;
    color: var(--gray-medium);
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-item i {
    color: var(--gold);
    margin-right: 8px;
    font-size: 1rem;
}

.spec-divider {
    height: 15px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 20px;
}

@media (max-width: 768px) {
    .fleet-premium-group {
        padding: 30px 20px;
    }

    .fleet-group-title {
        font-size: 2.2rem;
    }

    .fleet-card-new p {
        font-size: 13px !important;
    }
}

/* ==========================================================================
   Multi-Step Reservation Form
   ========================================================================== */
.reservation-form {
    flex-direction: column !important;
    align-items: stretch !important;
}

.form-step {
    width: 100%;
}

.form-step .step-fields {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.step-header {
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 10px;
}

.step-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--black);
}

.step-header p {
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

/* Step 2 (Vehicle Selection) specific layout */
[data-step="2"] .selection-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}

.selection-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    color: var(--black);
}

.selection-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.selection-card.selected {
    border-color: var(--gold);
    background-color: #fffdf5 !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}


/* ─── Premium Horizontal Vehicle Cards (Step 2) ─── */
/* ─── Premium Horizontal Vehicle Cards (Step 2) ─── */
[data-step="2"] .selection-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-right: 5px;
    padding-top: 25px !important;
    /* Step 2 için üst boşluk artırıldı */
    padding-bottom: 25px !important;
    margin-top: 5px !important;
    /* Negatif olmayan küçük bir margin eklendi */
    margin-right: 0;
    /* Removed negative margin that caused mobile overlap and overflow */
}

/* Custom Scrollbar for Vehicle List */
[data-step="2"] .selection-grid::-webkit-scrollbar {
    width: 6px;
}

[data-step="2"] .selection-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

[data-step="2"] .selection-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

[data-step="2"] .selection-grid::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.vehicle-card-horizontal {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    background: #ffffff;
    border: 2px solid gray;
    border-radius: 10px;
    /* Slightly smaller radius */
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    min-height: 140px;
    /* Reduced min-height */
}

.vehicle-card-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #d4af37;
}

.vehicle-card-horizontal.selected {
    border: 2px solid var(--gold) !important;
    background-color: #fffef9 !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.vehicle-card-horizontal.selected .v-card-img {
    background: #fffef0;
}

/* Image Section */
.v-card-img {
    flex: 0 0 200px;
    /* Reduced from 320px */
    background: #f8fafc;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-right: 1px solid #f1f5f9;
}

.v-card-img img {
    max-width: 100%;
    max-height: 110px;
    /* Reduced image size */
    object-fit: contain;
    transition: transform 0.6s ease;
}

/* Content Section */
.v-card-content {
    flex: 1;
    padding: 15px 20px;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-card-header h4 {
    font-size: 1.25rem;
    /* Smaller font */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2px;
}

.v-card-model {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 12px;
}

.v-card-specs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.v-spec {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-size: 0.8rem;
    padding: 4px 10px;
}

.v-card-price-wrap {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
}

.v-price-label {
    font-size: 0.7rem;
}

.v-price-value {
    font-size: 1.5rem;
    /* Smaller price */
    font-weight: 800;
    color: #0f172a;
}

/* Action Section */
.v-card-action {
    flex: 0 0 240px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 10px;
    border-left: 1px solid #f1f5f9;
}

.btn-select-v {
    width: 100%;
    margin-top: auto;
    background: var(--gold);
    color: var(--white) !important;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-select-v:hover {
    background: var(--gold-dark);
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.35);
}

.btn-select-v i {
    font-size: 0.9rem;
}

.vehicle-card-horizontal.selected .btn-select-v {
    background: #10b981;
    /* Green when selected for clarity */
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.2);
    transform: none;
}

.v-card-action .info-icon-btn {
    width: 32px;
    height: 32px;
}

.v-card-action .info-icon-btn:hover {
    color: #d4af37;
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* Recommended Badge Overlay */
.v-recommended {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    background: #d4af37;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* New Stacked Mobile Layout (Reference-based) */
@media (max-width: 991px) {
    [data-step="2"] .selection-grid {
        max-height: 550px !important;
        overflow-y: auto !important;
        padding: 5px 15px 30px 5px !important;
        gap: 20px !important;
    }

    .vehicle-card-horizontal {
        flex-direction: column !important;
        align-items: flex-start !important;
        height: auto !important;
        min-height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
        overflow: visible !important;
        /* Allow badge overflow if needed */
    }

    .v-card-img {
        flex: 0 0 auto !important;
        width: 100% !important;
        height: 160px !important;
        min-height: 160px !important;
        padding: 0 !important;
        /* Full width image */
        border-right: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        background: #f8fafc !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .v-card-img img {
        max-height: 120px !important;
        width: auto !important;
        transform: scale(1.1);
        /* Slightly larger cars on mobile */
    }

    .v-card-content {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 20px !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .v-card-header h4 {
        font-size: 1.2rem !important;
        margin-bottom: 4px !important;
        color: #1e293b !important;
    }

    .v-card-model {
        font-size: 0.85rem !important;
        margin-bottom: 15px !important;
        color: #64748b !important;
    }

    .v-card-specs {
        gap: 12px !important;
        margin-bottom: 20px !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: flex-start !important;
    }

    .v-spec {
        font-size: 0.75rem !important;
        padding: 4px 10px !important;
        background: #f1f5f9 !important;
        color: #475569 !important;
    }

    .v-card-price-wrap {
        width: 100% !important;
        justify-content: flex-start !important;
        margin-bottom: 15px !important;
        padding-top: 10px !important;
        border-top: 1px solid #f1f5f9 !important;
    }

    .v-price-label {
        font-size: 0.75rem !important;
        margin-bottom: 2px !important;
    }

    .v-price-value {
        font-size: 1.8rem !important;
        color: var(--gold) !important;
    }

    .v-card-action {
        display: flex !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        border-left: none !important;
        border-top: none !important;
        padding: 0 20px 20px 20px !important;
        background: transparent !important;
    }

    .btn-select-v {
        width: 100% !important;
        padding: 15px !important;
        font-size: 0.95rem !important;
        border-radius: 8px !important;
        text-transform: none !important;
        /* Match example */
    }

    .info-icon-btn {
        top: 15px !important;
        right: 15px !important;
        bottom: auto !important;
        /* Move to top right of mobile card */
    }
}

.vehicle-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.vehicle-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.vehicle-cars {
    font-size: 0.8rem;
    color: var(--gray-medium);
}

.extra-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.extra-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.extra-card.selected .extra-img i {
    color: #10b981;
}

.customer-info-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.customer-info-fields .form-group:first-child {
    grid-column: span 2;
}

/* Passenger Selection Component */
.passenger-selection-wrap {
    position: relative;
}

.passenger-field {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
}

.passenger-field:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.passenger-field i {
    font-size: 0.8rem;
    color: #64748b;
    transition: transform 0.3s ease;
}

.passenger-selection-wrap.active .passenger-field i {
    transform: rotate(180deg);
}

.passenger-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.passenger-selection-wrap,
.luggage-selection-wrap {
    position: relative;
}

.passenger-selection-wrap.active .passenger-field,
.luggage-selection-wrap.active .passenger-field {
    border-color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.passenger-selection-wrap.active .passenger-dropdown,
.luggage-selection-wrap.active .passenger-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.passenger-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.passenger-row:last-of-type {
    border-bottom: none;
    margin-bottom: 5px;
}

.passenger-label {
    display: flex;
    flex-direction: column;
}

.passenger-label strong {
    font-size: 0.95rem;
    color: #1e293b;
}

.passenger-label span {
    font-size: 0.75rem;
    color: #64748b;
}

.passenger-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.p-btn:hover:not(:disabled) {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.p-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.p-count {
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    color: #1e293b;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Info Section Step 4 */
.additional-info-wrap {
    grid-column: span 2;
    margin-top: 5px;
    padding-top: 0;
}

.info-divider {
    height: 1px;
    background: #c9c6c6;
    /* User requested color */
    width: 100%;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px !important;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.info-grid .full-width {
    grid-column: span 3;
}

.additional-info-wrap input[type="text"],
.additional-info-wrap textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #1e293b;
}

.additional-info-wrap textarea {
    min-height: 80px;
    resize: none;
}

.additional-info-wrap input:focus,
.additional-info-wrap textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.passenger-selection-wrap .passenger-dropdown {
    width: 100%;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.summary-box {
    background: #fdfdfd;
    border-radius: 8px;
    padding: 15px;
    text-align: left;
    border: 1px solid gray;
}

.summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.summary-title {
    font-size: 0.85rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 5px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    font-size: 0.9rem;
}

.summary-item strong {
    color: #555;
    font-weight: 600;
}

.summary-item span {
    color: #111;
    text-align: right;
    padding-left: 10px;
}

.extras-list span {
    font-style: italic;
    color: var(--gray-medium);
}

.summary-footer {
    border-top: 2px solid var(--gold-light);
    padding-top: 10px;
}

.total-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0px 0;
}

.surcharge-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.info-trigger {
    cursor: pointer;
    color: #64748b;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.info-trigger:hover {
    color: var(--gold);
}

.surcharge-popover {
    display: none;
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #475569;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 6px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    white-space: nowrap;
    animation: slideInLeft 0.3s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

#payment-selection-container .payment-methods-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
}


.reservation-container-fluid {
    padding-top: 10rem;
    transition: padding-top 0.3s ease;
}

@media (max-width: 991px) {
    .reservation-container-fluid {
        padding-top: 8rem;
    }
}

@media (max-width: 767px) {
    .reservation-container-fluid {
        padding-top: 6rem;
    }

    .hero-text {
        display: none !important;
    }

    .reservation-wrapper {
        padding: 15px 15px 0 15px !important;
        /* Removed bottom padding */
        max-height: 75vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .step-header h3 {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
    }

    .step-header p {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
    }

    .form-group label {
        font-size: 0.65rem !important;
        margin-bottom: 4px !important;
    }

    .form-group input,
    .form-group select {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }

    .reservation-tabs .tab-btn {
        flex: 1;
        min-width: 0 !important;
        padding: 8px 4px !important;
        font-size: 11px !important;
        text-align: center;
        justify-content: center;
    }

    /* Step 4 & 5 Grid to Single Column on Mobile */
    .info-grid,
    .summary-grid,
    .customer-info-fields {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        display: grid !important;
    }

    .info-grid .full-width,
    .customer-info-fields .full-width {
        grid-column: span 1 !important;
    }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {

    /* Absolute reset for mobile container alignment */
    .reservation-container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .reservation-wrapper {
        padding: 0 !important;
        margin-top: 35px;
        /* Total removal of wrapper padding on mobile */
        max-height: 85vh;
        /* Allow more height since we are saving space */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .reservation-wrapper.map-active {
        max-height: none !important;
        /* Harita açıkken kısıtlamayı kaldır */
        overflow: visible !important;
    }

    #reservation-map {
        height: 400px !important;
        /* Mobilde harita daha net görünsün */
    }

    #reservation-map-wrap {
        padding-bottom: 30px;
        /* Alttaki elemanlarla mesafe */
    }

    #multi-step-form {
        padding: 0 !important;
        margin: 0 !important;
    }

    .reservation-form-container.horizontal-form {
        border-radius: 0 !important;
        /* No rounded corners on mobile */
        border: none !important;
        box-shadow: none !important;
        background: #ffffff !important;
    }

    .horizontal-form .reservation-form {
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Padding for the step content itself so text isn't against screen edges */
    .form-step {
        padding: 25px 20px 20px 20px !important;
        /* Üst boşluk artırıldı (15px -> 25px) */
    }

    /* FORCE FLUSH STICKY NAVIGATION */
    .form-navigation {
        position: sticky !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        /* background: #ffffff !important; */
        padding: 15px 20px !important;
        margin: 15px 0 0 0 !important;
        /* Only top margin */
        width: 100% !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 0 !important;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05) !important;
        z-index: 1000 !important;
        display: flex !important;
    }
}

.form-navigation .btn {
    flex: 1;
}

.loading-spinner {
    padding: 40px;
    text-align: center;
    color: var(--gold);
    width: 100%;
    grid-column: 1 / -1;
}

@media (max-width: 991px) {
    .form-step .step-fields {
        flex-direction: column;
        align-items: stretch;
    }

    .customer-info-fields {
        grid-template-columns: 1fr;
    }

    .customer-info-fields .form-group:first-child {
        grid-column: span 1;
    }
}

.customer-info-fields {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .customer-info-fields {
        grid-template-columns: 1fr;
    }
}


/* Slick Slider Customizations for Premium Fleet Grid */
.fleet-slider-premium {
    position: relative;
    padding: 0 40px;
}

.fleet-slider-premium .slick-slide {
    margin: 0 15px;
}

.slick-prev-custom,
.slick-next-custom {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--white);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slick-prev-custom {
    left: -15px;
}

.slick-next-custom {
    right: -15px;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
    background: var(--black);
    color: var(--gold);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.fleet-slider-premium .slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 0;
    list-style: none;
}

.fleet-slider-premium .slick-dots li {
    margin: 0 5px;
}

.fleet-slider-premium .slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '';
    text-align: center;
    opacity: .25;
    color: black;
    -webkit-font-smoothing: antialiased;
}




.fleet-slider-premium,
.fleet-slider-premium .slick-list {
    overflow: visible !important;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
    margin-top: -15px !important;
}

.fleet-slider-premium .slick-dots li.slick-active button {
    background: var(--gold);
    transform: scale(1.2);
}

/* For sliders with less than 4 items centered */
.slick-less-than-four .slick-track {
    display: flex !important;
    justify-content: center !important;
}

.slick-less-than-four .slick-slide {
    float: none !important;
}

/* ==========================================
   Blog Page Elements
   ========================================== */
.blog-section {
    background-color: #f8f9fa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-date i {
    color: var(--gold);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family:
        \Playfair Display\', serif;
}

.blog-title a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--gold);
}

.blog-excerpt {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-read-more {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--gold);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.custom-pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover,
.custom-pagination .page-link.active {
    background: var(--gold);
    color: #fff;
}

/* ==========================================================================
   Vehicle Info Icon & Modal
   ========================================================================== */
.selection-card {
    position: relative;
    /* Ensure child absolute positioning works */
}

.info-icon-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
    /* Ensure no extra height from line-height */
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.info-icon-btn i {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.info-icon-btn:hover {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.active {
    display: flex;
    opacity: 1;
}

.modal-content-wrap {
    background: var(--white);
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.custom-modal.active .modal-content-wrap {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-body-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img-container {
    background: #f9f9f9;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-img-container img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.modal-text-content {
    padding: 40px;
}

.modal-text-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.modal-description {
    color: var(--gray-medium);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-vehicle-list {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-vehicle-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 3px solid transparent;
    font-weight: 500;
    color: var(--black);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-vehicle-item:hover,
.modal-vehicle-item.active {
    transform: translateX(5px);
    background: rgba(212, 175, 55, 0.1);
    border-left-color: var(--gold);
}

.modal-vehicle-item i {
    color: var(--gold);
    font-size: 1rem;
}

.modal-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.modal-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.modal-feature-item i {
    color: var(--gold);
    width: 16px;
}

@media (max-width: 768px) {
    .custom-modal {
        padding: 5px !important;
    }

    .modal-content-wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px auto !important;
        max-height: 95vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .modal-body-content {
        grid-template-columns: 1fr;
    }

    .modal-img-container {
        padding: 10px;
    }

    .modal-text-content {
        padding: 15px;
    }

    .modal-text-content h2 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .modal-features-list {
        grid-template-columns: 1fr !important;
        gap: 8px;
        width: 100% !important;
    }
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-method-card {
    background: #fff;
    border: 1px solid gray;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    width: 100%;
}

.payment-method-card .pay-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #64748b;
    transition: all 0.3s ease;
}

.payment-method-card .pay-text strong {
    display: block;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.payment-method-card .pay-text span {
    font-size: 0.75rem;
    color: #64748b;
}

.payment-method-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.payment-method-card:hover .pay-icon {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}

.payment-method-card.active {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.payment-method-card.active .pay-icon {
    background: var(--gold);
    color: #fff;
}

@media (max-width: 480px) {
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }

    .payment-method-card {
        flex-direction: row;
        text-align: left;
        padding: 15px;
    }
}

/* ==========================================================================
   Custom Notification Modal (Premium Style)
   ========================================================================== */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.notification-modal.active {
    display: flex;
    opacity: 1;
}

.notification-content {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.notification-modal.active .notification-content {
    transform: scale(1);
}

.notification-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.notification-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--gold);
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.notification-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.notification-message {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.notification-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.notification-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Specific types */
.notification-modal.error .notification-icon {
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.4);
    background: rgba(255, 77, 77, 0.1);
}

.notification-modal.error .notification-btn {
    background: #ff4d4d;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.notification-modal.success .notification-icon {
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.4);
    background: rgba(74, 222, 128, 0.1);
}

.notification-modal.success .notification-btn {
    background: #4ade80;
    box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

/* Shine Effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shineEffect 3s infinite;
}

@keyframes shineEffect {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* ==========================================================================
   Premium Success Screen (Post-Reservation)
   ========================================================================== */
.reservation-success-box {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: none;
    border-radius: 0 0 24px 24px;
    padding: 60px 40px;
    color: #fff;
    box-shadow: none;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.reservation-success-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reservation-success-horizontal {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.success-msg-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-right: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.success-summary-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.reservation-success-box h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.reservation-success-box p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin-bottom: 5px;
}

.success-summary-side h4 {
    font-family: 'Playfair Display', serif !important;
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.success-summary-side .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.success-summary-side .summary-item:last-child {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 20px;
}

.success-summary-side .summary-item strong {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-summary-side .summary-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: right;
}

.success-summary-side .summary-item:last-child span {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .reservation-success-box {
        padding: 25px;
    }

    .reservation-success-horizontal {
        flex-direction: column;
        gap: 30px;
    }

    .success-msg-side {
        padding-right: 0;
        padding-bottom: 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .reservation-success-box h3 {
        font-size: 1.8rem;
    }
}

.btn-premium-confirm {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    color: #fff !important;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium-confirm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
    z-index: -1;
}

.btn-premium-confirm:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #e5c158 0%, #d4af37 100%);
}

.btn-premium-confirm:hover::before {
    left: 100%;
    transition: left 0.7s ease-in-out;
}

.btn-premium-confirm i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}

.btn-premium-confirm:hover i {
    transform: rotate(90deg);
}

/* Top Bar Inquiry Styles (Refined) */
.nav-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}


.top-bar-links {
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 991px) {
    .top-bar-links {
        top: 2px;
        right: 0;
        left: 0;
        justify-content: center;
        gap: 10px;
        font-size: 0.45rem;
        background: rgba(0, 0, 0, 0.5);
        padding: 5px 0;
        backdrop-filter: blur(5px);
    }

    .navbar {
        padding-top: 35px !important;
    }
}

.top-bar-links a {
    color: var(--gold) !important;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-links a i {
    font-size: 0.85rem;
}

.top-bar-links a:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

.top-bar-links .divider {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

@media (max-width: 991px) {
    .top-bar-links {
        top: 5px;
        right: 15px;
        font-size: 0.65rem;
    }
}


/* ==========================================================================
   Premium Modal & Update Form Styles (Enhanced)
   ========================================================================== */
.premium-popup-container {
    border-radius: 20px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.premium-header {
    background: linear-gradient(135deg, #1e293b 0%, #111827 100%);
    color: #fff;
    padding: 30px 20px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 3px solid var(--gold);
}

.premium-modal-content {
    padding: 30px 40px 40px;
    background: #fff;
}

.res-number-badge {
    text-align: center;
}

.res-number-badge label {
    font-size: 0.75rem;
    color: #94a3b8;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 5px;
}

.res-number-badge h2 {
    font-size: 2.5rem;
    color: var(--black);
    margin: 0;
    font-weight: 700;
    letter-spacing: -1px;
}

.status-pill {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
}

.status-pill.confirmed,
.status-pill.active {
    background: #dcfce7;
    color: #166534;
}

.status-pill.completed {
    background: #f0fdf4;
    color: #15803d;
}

.status-pill.pending {
    background: #fef9c3;
    color: #854d0e;
}

.status-pill.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.detail-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.detail-card:hover {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
}

.detail-card i {
    font-size: 1.2rem;
    color: var(--gold);
}

.detail-card.full {
    grid-column: span 2;
}

.card-info label {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.card-info span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
}

.card-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
}

.sub-detail {
    font-size: 0.85rem;
    color: #475569;
    margin-top: 4px;
    display: block;
}

.sub-detail strong {
    color: #1e293b;
    font-weight: 700;
    margin-right: 4px;
}

.extra-tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.extra-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
}


.location-card.pickup {
    border-left: 4px solid var(--gold);
}

.location-card.dropoff {
    border-left: 4px solid #1e293b;
}

.btn-premium-close {
    padding: 12px 40px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    letter-spacing: 1px !important;
}

.btn-premium-update {
    padding: 12px 30px !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    letter-spacing: 1px !important;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
}

/* Premium Form Styles (Completely Revised for Alignment) */
.premium-modal-content {
    padding: 30px 40px;
    background: #fff;
    text-align: left !important;
}

.premium-form-group {
    margin-bottom: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.premium-form-group label {
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.premium-form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.premium-form-group input,
.premium-form-group textarea {
    width: 100% !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--black) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}

.premium-form-group input:focus,
.premium-form-group textarea:focus {
    background: #fff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1) !important;
    transform: translateY(-2px);
}

.premium-form-group:focus-within label {
    color: var(--gold);
}

/* ── GOOGLE MAPS AUTOCOMPLETE PREMIUM MINIMAL STYLES ── */
.pac-container {
    border-radius: 10px !important;
    border: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    margin-top: 4px !important;
    padding: 4px 0 !important;
    z-index: 100000 !important;
    background: #fff !important;
    font-family: 'Inter', sans-serif !important;
}

.pac-item {
    padding: 8px 14px !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #64748b !important;
    font-size: 0.82rem !important;
    border-left: 0 solid #d4af37 !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover {
    background: #f8fafc !important;
    padding-left: 18px !important;
    border-left: 4px solid #d4af37 !important;
    color: #1e293b !important;
}

.pac-icon {
    display: none !important;
}

.pac-item::before {
    content: '\f3c5';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--gold);
    font-size: 0.9rem;
    opacity: 0.9;
}

.pac-item-query {
    font-size: 0.85rem !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    padding-right: 4px !important;
}

.pac-matched {
    font-weight: 700 !important;
    color: var(--gold) !important;
}

/* Hide Powered by Google */
.pac-logo::after {
    display: none !important;
}

.pac-container::after {
    display: none !important;
}

@media (max-width: 991px) {
    .premium-modal-content {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .top-bar-links {
        display: none !important;
    }
}

/* ==========================================================================
   Elite Modal System (Premium UI/UX)
   ========================================================================== */

.elite-popup-class {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.45) !important;
}

.elite-header {
    background: #fff;
    padding: 35px 30px 10px;
    text-align: center;
    color: #1e293b;
    border-bottom: none !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.elite-header span {
    font-family: 'Inter', sans-serif !important;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    font-weight: 600;
    text-transform: none;
    color: #1e293b;
}

.elite-header.reservation {
    background: #fff;
}

.elite-modal-body {
    padding: 40px 40px 30px;
    background: #fff;
}

.elite-modal-body.no-padding {
    padding: 0;
}

.elite-modal-body.no-padding-top {
    padding-top: 50px;
}

/* Gift Card Specifics */
.elite-code-section {
    text-align: center;
    margin-bottom: 40px;
}

.elite-label {
    display: block;
    color: #a0a0a0;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.elite-code-display {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 15px;
}

.elite-status-badge {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 10px;
}

.elite-status-badge.disabled {
    color: #dc2626;
    /* Red warning */
}

.elite-status-badge.active {
    background: #dcfce7;
    color: #166534;
}

.elite-status-badge.confirmed {
    background: #dcfce7;
    color: #166534;
}

.elite-status-badge.pending {
    background: #fef9c3;
    color: #854d0e;
}

.elite-balance-card {
    background: #f8fbff;
    border: 1px solid #eef4fb;
    padding: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 50px;
}

.elite-icon {
    font-size: 3.5rem;
    color: var(--gold);
}

.elite-balance-info {
    text-align: center;
}

.elite-balance-info label {
    display: block;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.elite-card-label {
    display: block;
    color: #666;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.elite-amount {
    font-size: 3.2rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.1;
}

.elite-history-section {
    margin-top: 40px;
}

.elite-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    /* Light blue/gray from image */
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #f0f0f0;
}

.elite-table-container {
    background: #fff;
    border-radius: 8px;
    padding: 10px 0;
    text-align: -webkit-left;
}

.elite-table {
    width: 100%;
    border-collapse: collapse;
}

.elite-table th {
    text-align: left;
    font-size: 0.8rem;
    color: #aab;
    padding: 12px 0;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-bottom: 1px solid #f5f5f5;
    text-transform: uppercase;
}

.elite-table td {
    padding: 18px 0;
    font-size: 1.1rem;
    color: #333;
    border-bottom: 1px solid #fcfcfc;
    vertical-align: middle;
}

.elite-ref-pill {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 700;
}

.elite-price-text {
    font-weight: 700;
    color: #1a1a1a;
}

/* Reservation Specifics */
.elite-res-hero {
    background: #f8fafc;
    padding: 12px 30px;
    text-align: center;
    border-radius: 16px;
    margin: 0 35px 0 40px;
    border: 1px solid #f1f5f9;
}

.elite-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.elite-info-line.flex-space {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 10px 0;
}

.elite-info-line.flex-space strong {
    flex-shrink: 0;
    white-space: nowrap;
}

.elite-info-line.flex-space span {
    text-align: right;
    color: #475569;
}

.elite-res-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    margin: 5px 0;
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -2px;
}

.elite-status-pill {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.elite-status-pill.confirmed {
    background: #dcfce7;
    color: #166534;
}

.elite-status-pill.pending {
    background: #fef9c3;
    color: #854d0e;
}

.elite-status-pill.cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.elite-details-container {
    padding: 35px;
}

.elite-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: -15px;
}

.elite-info-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.elite-info-card.highlighted {
    border-left: 5px solid var(--gold);
    background: #fffdf8;
}

.elite-card-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.elite-card-title i {
    color: var(--gold);
    font-size: 1rem;
}

.elite-info-line {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #334155;
    display: flex;
    justify-content: space-between;
}

.elite-info-line strong {
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 700;
}

.elite-location-flow {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.elite-loc-step {
    display: flex;
    gap: 15px;
    position: relative;
}

.elite-loc-step:first-child {
    padding-bottom: 25px;
}

.elite-loc-point {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24px;
}

.elite-loc-point i {
    font-size: 1.2rem;
}

.elite-loc-point.pickup i {
    color: #16a34a;
}

.elite-loc-point.dropoff i {
    color: #dc2626;
}

.elite-loc-connector {
    width: 2px;
    flex-grow: 1;
    background: repeating-linear-gradient(to bottom, #e2e8f0, #e2e8f0 4px, transparent 4px, transparent 8px);
    margin: 5px 0;
}

.elite-loc-detail label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.elite-loc-detail span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
}

.elite-price-summary {
    text-align: center;
    padding: 35px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    margin-top: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.elite-price-summary::before {
    content: 'ALL INCLUSIVE';
    position: absolute;
    top: 27px;
    right: -32px;
    background: var(--gold);
    color: #fff;
    padding: 4px 25px;
    font-size: 0.65rem;
    font-weight: 800;
    transform: rotate(45deg);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.elite-price-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.elite-price-amount {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #0f172a;
    margin: 5px 0;
}

.elite-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 8px;
    color: var(--gold);
}

.elite-price-val {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -2px;
    line-height: 1;
}

.elite-price-subtext {
    display: inline-block;
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
}

/* Modal Nav Buttons */
.elite-modal-actions {
    display: flex;
    gap: 15px;
    padding: 0 30px 30px;
}

.elite-confirm-button {
    flex: 1;
    background: #1a1a1a !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
}

/* Premium & Elite Form Styling (Update Modal) */
.premium-modal-content {
    padding: 30px 40px;
}

.premium-form-group {
    margin-bottom: 20px;
}

.premium-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-form-group label i {
    color: var(--gold);
    opacity: 0.7;
    font-size: 0.9rem;
}

.premium-form-group input,
.premium-form-group select,
.premium-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}

.premium-form-group input:focus,
.premium-form-group select:focus,
.premium-form-group textarea:focus {
    border-color: var(--gold);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.premium-form-group textarea {
    resize: none;
    min-height: 100px;
}

.custom-checkbox .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.125em;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.custom-checkbox .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}

.custom-checkbox .form-check-label {
    padding-left: 8px;
    font-weight: 500;
    color: #475569;
}

.update-price-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.15) 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 20px 25px !important;
    border-radius: 16px !important;
    margin-top: 10px;
}

.update-price-banner .text-muted {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #64748b !important;
}

.update-price-banner #upd-total-price {
    font-size: 1.8rem !important;
    color: var(--gold) !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   Minimal Inquiry Modal Styles
   ========================================================================== */
.minimal-popup {
    border-radius: 24px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
}

.minimal-header-container {
    padding: 40px 30px 20px !important;
    border-bottom: none !important;
}

.minimal-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 1.8rem !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
}

.minimal-title i {
    color: var(--gold);
    font-size: 1.4rem;
    margin: 0 !important;
    opacity: 0.8;
}

.minimal-content {
    padding: 10px 40px 30px !important;
}

.minimal-form-group {
    margin-bottom: 0;
    text-align: center;
}

.minimal-form-group label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.minimal-input {
    width: 100% !important;
    padding: 18px 25px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #1e293b !important;
    background: #f8fafc !important;
    border: 2px solid #f1f5f9 !important;
    border-radius: 16px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
}

.minimal-input:focus {
    background: #fff !important;
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1) !important;
    outline: none !important;
}

.minimal-input::placeholder {
    color: #cbd5e1;
    font-weight: 400;
}

.minimal-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 40px 40px !important;
}

.minimal-btn-query {
    background: var(--gold) !important;
    color: #fff !important;
    border-radius: 14px !important;
    padding: 16px 30px !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25) !important;
    transition: all 0.3s ease !important;
}

.minimal-btn-query:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.35) !important;
}

.minimal-btn-cancel {
    background: #f1f5f9 !important;
    color: #64748b !important;
    border-radius: 14px !important;
    padding: 16px 25px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    border: none !important;
    transition: all 0.3s ease !important;
}

.minimal-btn-cancel:hover {
    background: #e2e8f0 !important;
    color: #475569 !important;
}

.elite-cancel-button {
    flex: 2;
    background: var(--gold) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 16px 25px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    letter-spacing: 1px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
    white-space: nowrap !important;
}

/* ==========================================================================
   Reservation Progress Bar
   ========================================================================== */
/* ==========================================================================
   Reservation Progress Bar - Elegant & Compact
   ========================================================================== */
.reservation-progress-container {
    padding: 14px 18px 12px;
    background: transparent;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.reservation-progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 900px;
    margin: 2px auto;
    padding: 4px 6px;
}

.progress-line-bg {
    position: absolute;
    top: 18px;
    left: 48px;
    right: 48px;
    height: 4px;
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    z-index: 1;
    overflow: hidden;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.65) 0%, var(--gold) 45%, rgba(255, 241, 178, 0.95) 100%);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.22);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: default;
}

.step-dot {
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 2px solid rgba(148, 163, 184, 0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #334155;
    margin-bottom: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease, color 0.35s ease;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.step-label {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 500;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.35s ease, transform 0.35s ease;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
}

.progress-step.active .step-dot {
    border-color: var(--gold);
    color: #0f172a;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 242, 1) 45%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.16), 0 14px 26px rgba(212, 175, 55, 0.18);
    transform: translateY(-1px) scale(1.06);
}

.progress-step.active .step-label {
    color: #000000;
    transform: translateY(-1px);
}

.progress-step.completed .step-dot {
    background: linear-gradient(135deg, var(--gold) 0%, #bc9313 100%);
    border-color: rgba(212, 175, 55, 0.9);
    color: transparent;
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.25);
}

.progress-step.completed .step-dot::after {
    content: "✓";
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
}

.progress-step.completed .step-label {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .reservation-progress-container {
        padding: 14px 12px 10px;
        border-radius: 12px;
    }

    .step-label {
        font-size: 0.58rem;
        letter-spacing: 0.4px;
        max-width: 60px;
        line-height: 1.1;
        white-space: normal;
        word-wrap: break-word;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }

    .step-dot {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
        margin-bottom: 8px;
    }

    .progress-line-bg {
        top: 14px;
        left: 34px;
        right: 34px;
        height: 3px;
    }

    /* Forced Fixed Mobile Navigation for Step 2+ */
    #multi-step-form .form-navigation.nav-sticky-mobile {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 15px 20px env(safe-area-inset-bottom, 15px) !important;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15) !important;
        border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
        display: flex !important;
        justify-content: space-between !important;
        gap: 15px !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .form-navigation.nav-sticky-mobile .btn,
    .form-navigation .btn {
        flex: 1;
        margin: 0 !important;
        height: 48px;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Prevent content being hidden under fixed navigation */
    .form-step.active {
        padding-bottom: 100px;
    }
}