:root {
    --primary-color: #d13d2a;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --bg-dark: #22252a;
    --font-main: 'Outfit', sans-serif;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.text-primary {
    color: var(--primary-color);
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.bg-primary {
    background-color: var(--primary-color);
}

.text-white {
    color: white;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--text-dark);
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* Header */
.header {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img, .site-logo {
    height: 48px;
    width: auto;
    max-width: 185px;
    object-fit: contain;
    display: block;
    transition: transform 0.25s ease;
}

.logo:hover img, .site-logo:hover {
    transform: scale(1.03);
}

.drawer-header .logo img {
    height: 42px;
    max-width: 160px;
}

.footer-brand .logo img, .site-logo-footer {
    height: 50px;
    width: auto;
    max-width: 195px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.navbar ul {
    display: flex;
    gap: 30px;
}

.navbar a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
}

.navbar a:hover,
.navbar a.active {
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    color: var(--primary-color);
}

/* Mobile Navigation Drawer */
.drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 999;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 25px;
}

.drawer-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.drawer-close:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.mobile-nav-links a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-links a i {
    font-size: 16px;
    color: var(--primary-color);
    width: 20px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(209, 61, 42, 0.08);
    color: var(--primary-color);
}

.drawer-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.drawer-contact-item {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ==========================================================================
   🏠 HOME PAGE HERO SECTION (index.html ONLY)
   ========================================================================== */
.hero-home {
    padding: 40px 20px 100px;
    position: relative;
    overflow: hidden;
}

.hero-home .hero-content {
    position: relative;
    text-align: center;
}

/* --- PART 1: HOME PAGE BACKGROUND BIG TEXT ("LUXURY CAR WASH") --- */
.hero-home .hero-bg-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 1;
}

.hero-home .hero-bg-text h1 {
    font-size: 14vw;
    line-height: 0.8;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0;
    text-transform: uppercase;
    white-space: nowrap !important;
    letter-spacing: -1px;
    animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.hero-home .hero-bg-text h1.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px #d5d5d5;
    margin-top: 8vw;
    white-space: nowrap !important;
    animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
}

.hero-home .hero-car-word {
    display: inline;
}

/* --- PART 2: HOME PAGE HERO CAR IMAGE --- */
.hero-home .hero-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: -30px auto 0;  /* 👈 HOME PAGE CAR MARGIN (DESKTOP) */
    animation: heroCarEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s backwards;
}

.hero-home .hero-img {
    width: 100%;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35));
    transition: transform 0.4s ease;
}

.hero-home .hero-img:hover {
    transform: scale(1.02);
}

/* --- PART 3: HOME PAGE PRICING & BOOKING BUTTONS (5-SEATER, BIKE, 7-SEATER) --- */
.hero-home .hero-pricing {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 150px;           /* 👈 3X GAP BETWEEN BUTTONS */
    max-width: 1200px;
    width: 100%;
    margin: 45px auto 0;  /* 👈 HOME PAGE BUTTONS TOP MARGIN (DESKTOP) */
    position: relative;
    z-index: 3;
}

.hero-home .pricing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: white;
    padding: 18px 24px;
    border-radius: 18px;
    border: 2.5px solid #1a1a1a;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
    transition: all 0.3s ease;
    animation: heroCardEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    width: 250px;
    min-height: 70px;     /* 👈 CAR BUTTON HEIGHT (DESKTOP) */
    text-decoration: none;
}

.hero-home .pricing-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(209, 61, 42, 0.2);
}

.hero-home .hero-bike-circle {
    width: 125px;         /* 👈 BIKE BUTTON WIDTH (DESKTOP) */
    height: 125px;        /* 👈 BIKE BUTTON HEIGHT (DESKTOP) */
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 4.5px solid var(--primary-color);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #111827;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: heroCardEntrance 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    animation-delay: 0.15s;
    flex-shrink: 0;
    margin: 0;
}

.hero-home .hero-bike-circle:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 36px rgba(209, 61, 42, 0.25);
    background: #111827;
    color: #ffffff;
}

.hero-home .hero-bike-circle i {
    font-size: 32px;
    color: var(--primary-color);
    transition: transform 0.25s ease;
}

.hero-home .hero-bike-circle:hover i {
    color: #ffffff;
}

.hero-home .hero-bike-circle span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   2. 5-SEATER & 7-SEATER CAR PAGES HERO (5-seater-car.html & 7-seater-car.html)
   ========================================================================== */
.hero-car-page {
    padding: 10px 20px 30px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 85px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-car-page .hero-content {
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-car-page .hero-bg-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    z-index: 1;
    margin-bottom: -10px;
}

.hero-car-page .hero-bg-text h1 {
    font-size: 8.5vw;
    line-height: 0.9;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap !important;
    letter-spacing: -0.5px;
    animation: heroFadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s backwards;
}

.hero-car-page .hero-image-wrapper {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0 auto;  /* 👈 CAR PLACED BELOW 5 SEATER TEXT */
    animation: heroCarEntrance 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.35s backwards;
}

.hero-car-page .hero-img {
    width: 100%;
    filter: drop-shadow(0 15px 22px rgba(0, 0, 0, 0.22));
    transition: transform 0.4s ease;
}

.hero-car-page .hero-img:hover {
    transform: scale(1.02);
}

.hero-car-page .hero-pricing-detailed {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 24px;
    max-width: 660px;
    margin: 15px auto 0;  /* 👈 [DESKTOP] 5/7-SEATER BUTTONS TOP MARGIN */
    position: relative;
    z-index: 3;
    width: 100%;
}

.detailed-pricing-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    padding: 14px 20px;
    min-height: 190px;
    border-radius: 16px;
    border: 2px solid #1a1a1a;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: #111827;
    transition: all 0.25s ease;
}

.detailed-pricing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(209, 61, 42, 0.18);
    border-color: var(--primary-color);
}

.detailed-pricing-item .item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1.5px solid #f3f4f6;
    white-space: nowrap;
}

.detailed-pricing-item .type {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.detailed-pricing-item .price {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
    margin-left: 8px;
    white-space: nowrap;
}

.detailed-pricing-item .item-features {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.detailed-pricing-item .item-features li {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    line-height: 1.35;
}

.detailed-pricing-item .item-features li i {
    font-size: 10px;
}

.detailed-pricing-item .pricing-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    border-top: 1.5px solid #f3f4f6;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.detailed-pricing-item .pricing-action-bar .pricing-action-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
}

.hero-bike-circle:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.06);
    box-shadow: 0 16px 36px rgba(209, 61, 42, 0.25);
    background: #111827;
    color: #ffffff;
}

.hero-bike-circle:hover i {
    color: #ffffff;
    transform: scale(1.15);
}

/* Hero Loading Keyframe Animations */
@keyframes heroFadeDown {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroCarEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.88);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroCardEntrance {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-item .type {
    font-weight: 900;
    line-height: 1.15;
    text-align: left;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #111827;
}

.pricing-action-btn {
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(209, 61, 42, 0.3);
}

.pricing-item:hover .pricing-action-btn {
    transform: translateX(6px);
    background: #111827;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Services */
.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    text-align: left;
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(209, 61, 42, 0.2);
}

.card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
    border: 2px solid #1a1a1a;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(209, 61, 42, 0.5);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-radius: 22px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-item {
    padding: 0 15px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-light);
    max-width: 130px;
}

/* Bike & Bullet Section */
.bike-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.bike-section .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.bike-section .subtitle {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 50px;
}

.bike-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.bike-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.bike-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.bike-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.bike-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bike-card:hover .bike-card-image img {
    transform: scale(1.08);
}

.bike-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bike-badge.premium {
    background: linear-gradient(135deg, #d4a843, #c0922e);
}

.bike-card-content {
    padding: 30px;
}

.bike-card-content h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.bike-card-content>p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bike-features {
    margin-bottom: 25px;
}

.bike-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ccc;
}

.bike-features li i {
    font-size: 16px;
}

.bike-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bike-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

/* Features Generic */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.align-center {
    align-items: center;
}

.feature-text h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.feature-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-image {
    padding: 10px;
    display: flex;
    justify-content: center;
}

.feature-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    border: 2.5px solid #1a1a1a;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

/* Best Wash */
.feature-best-wash {
    text-align: left;
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
    padding: 60px 0;
}

.feature-best-wash .feature-grid {
    margin-bottom: 40px;
}

.feature-text-right {
    display: flex;
    align-items: flex-end;
}

.feature-text-right p {
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-image-wide {
    margin-top: 20px;
    padding: 0 10px;
}

.feature-image-wide img {
    width: 100%;
    border-radius: 20px;
    border: 2.5px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Revitalize Your Ride & Pure Clean */
.feature-revitalize,
.feature-pure-clean {
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    border-radius: 28px;
    padding: 55px 45px;
    margin-top: 45px;
    margin-bottom: 45px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.feature-revitalize:hover,
.feature-pure-clean:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(209, 61, 42, 0.18);
}

/* Check list */
.check-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 600;
}

/* Testimonial */
.testimonial {
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    border-radius: 26px;
    padding: 45px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.testimonial-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: var(--text-light);
}

.author h4 {
    font-size: 18px;
}

.author p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.ctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    background: white;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.ctrl-btn.active,
.ctrl-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-image img {
    border-radius: 20px;
    border: 2.5px solid #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reviews */
.reviews {
    border-bottom: 2px solid #1a1a1a;
}

.reviews .section-header {
    margin-bottom: 50px;
}

.reviews .section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.reviews .subtitle {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

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

.review-card {
    background: var(--bg-white);
    border: 2.5px solid #1a1a1a;
    border-top: 4px solid var(--primary-color);
    border-radius: 22px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 80px;
    color: rgba(209, 61, 42, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(209, 61, 42, 0.18);
    border-color: var(--primary-color);
}

.review-card.featured {
    background: var(--primary-color);
    color: white;
    border: 2.5px solid #1a1a1a;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(209, 61, 42, 0.35);
}

.review-card.featured::before {
    color: rgba(255, 255, 255, 0.15);
}

.review-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #f5a623;
    font-size: 16px;
}

.review-card.featured .review-stars i {
    color: #ffd700;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-light);
    font-style: italic;
}

.review-card.featured .review-text {
    color: rgba(255, 255, 255, 0.9);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1.5px solid #e5e7eb;
}

.review-card.featured .review-author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.review-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.review-card.featured .review-author img {
    border-color: rgba(255, 255, 255, 0.4);
}

.review-author h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.review-author p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.review-card.featured .review-author p {
    color: rgba(255, 255, 255, 0.7);
}

.reviews-summary {
    display: flex;
    justify-content: center;
}

.summary-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.big-rating {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.summary-rating .review-stars {
    margin-bottom: 5px;
}

.summary-rating p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Experience */
.experience h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.experience .subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.exp-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 2.5px solid #1a1a1a;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.exp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-large {
    min-height: 280px;
    max-height: 300px;
}

.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: white;
    text-align: left;
}

.exp-overlay h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.exp-overlay p {
    font-size: 13px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.exp-overlay .btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.exp-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item-small {
    height: 130px;
    max-height: 130px;
    flex: none;
}

.exp-stats-box {
    border-radius: 20px;
    padding: 22px 20px;
    text-align: left;
    border: 2px solid rgba(209, 61, 42, 0.4);
    box-shadow: 0 10px 25px rgba(209, 61, 42, 0.2);
}

.avatars {
    display: flex;
    margin-bottom: 20px;
}

.avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

.stats-data {
    display: flex;
    justify-content: space-between;
}

.stats-data h4 {
    font-size: 20px;
}

.stats-data p {
    font-size: 12px;
    opacity: 0.8;
}

/* CTA */
.cta-banner {
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 60px;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(209, 61, 42, 0.3);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="triangles" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M20 0 L40 40 L0 40 Z" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23triangles)"/></svg>');
    opacity: 0.5;
}

.cta-banner h2 {
    font-size: 32px;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #aaa;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 14px;
}

/* Detail Pages */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: white;
    padding: 80px 0 60px;
}

.page-hero-premium {
    background: linear-gradient(135deg, #8b1a0e, #d13d2a);
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
}

.breadcrumb a {
    color: #aaa;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 10px;
}

.breadcrumb span {
    color: white;
}

.page-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-sub {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

/* Vehicle Categories Section */
.vehicle-categories-section {
    padding-top: 40px;
}

.vehicle-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.vehicle-card {
    background: var(--bg-white);
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(209, 61, 42, 0.2);
    border-color: var(--primary-color);
}

.vehicle-card.active-selected-card {
    border: 3px solid var(--primary-color) !important;
    border-top: 6px solid var(--primary-color) !important;
    box-shadow: 0 15px 40px rgba(209, 61, 42, 0.25) !important;
    transform: translateY(-4px);
}

.vehicle-card.highlighted-card {
    border: 2.5px solid #1a1a1a;
    border-top: 6px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(209, 61, 42, 0.25);
    position: relative;
}

.vehicle-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid #1a1a1a;
    margin-bottom: 20px;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.06);
}

.vehicle-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vehicle-badge.premium-badge {
    background: var(--primary-color);
}

.vehicle-card-body {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 2px solid #1a1a1a;
    margin-bottom: 18px;
}

.vehicle-header h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 4px;
}

.vehicle-type-sub {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.vehicle-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.vehicle-features-list {
    margin-bottom: 25px;
    flex: 1;
}

.vehicle-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-dark);
}

.vehicle-features-list li i {
    font-size: 14px;
}

.vehicle-card-body .btn {
    width: 100%;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.detail-image img {
    width: 100%;
    border-radius: 20px;
    border: 2.5px solid #1a1a1a;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 30px;
}

.detail-price-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.premium-tag {
    background: linear-gradient(135deg, #fff5f3, #ffe8e4);
    border: 2.5px solid var(--primary-color);
}

.detail-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.detail-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
}

.detail-per {
    font-size: 16px;
    color: var(--text-light);
}

.detail-content h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.detail-features {
    margin-bottom: 30px;
}

.detail-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(209, 61, 42, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.detail-features h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.detail-features p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Why Choose */
.why-choose {
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.why-card {
    background: white;
    padding: 30px 25px;
    border-radius: 22px;
    border: 2.5px solid #1a1a1a;
    border-top: 4px solid var(--primary-color);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-color);
    box-shadow: 0 18px 40px rgba(209, 61, 42, 0.2);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(209, 61, 42, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    border: 2px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.why-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Booking */
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.booking-info {
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    border-radius: 26px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.booking-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.booking-info>p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.booking-contact p {
    margin-bottom: 15px;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.booking-form {
    background: #ffffff;
    border: 2.5px solid #1a1a1a;
    border-top: 5px solid var(--primary-color);
    padding: 35px;
    border-radius: 26px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.form-label i {
    color: var(--primary-color);
    font-size: 12px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    margin-bottom: 16px;
    background: #f8fafc;
    color: #1e293b;
    transition: all 0.25s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(209, 61, 42, 0.15);
}

.booking-form select:disabled {
    background-color: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.input-phone-group {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0 14px;
    font-weight: 700;
    font-size: 14px;
    color: #334155;
    white-space: nowrap;
}

.input-phone-group input {
    margin-bottom: 0;
}

.vehicle-plate-input {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Payment Mode Radio Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.payment-method-card {
    position: relative;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.payment-method-card:hover {
    border-color: #cbd5e1;
    background: #ffffff;
    transform: translateY(-2px);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-method-card.selected,
.payment-method-card:has(input[type="radio"]:checked) {
    border-color: var(--primary-color);
    background: rgba(209, 61, 42, 0.05);
    box-shadow: 0 4px 15px rgba(209, 61, 42, 0.12);
}

.payment-method-card .pm-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.payment-method-card .pm-title {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    display: block;
}

.payment-method-card .pm-sub {
    font-size: 10px;
    color: #64748b;
    display: block;
}

/* Multi-Step Wizard Progress Bar */
.form-wizard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.wizard-progress-track {
    position: absolute;
    top: 18px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: #e2e8f0;
    z-index: 1;
}

.wizard-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-color);
    transition: width 0.35s ease;
}

.wizard-step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2.5px solid #cbd5e1;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    transition: all 0.3s ease;
}

.wizard-step-item.active .step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 0 0 5px rgba(209, 61, 42, 0.2);
    transform: scale(1.08);
}

.wizard-step-item.completed .step-circle {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wizard-step-item.active .step-label {
    color: var(--primary-color);
}

/* Step Containers */
.form-step-panel {
    display: none;
    animation: stepSlideIn 0.35s ease forwards;
}

.form-step-panel.active {
    display: block;
}

@keyframes stepSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* Segmented Pill Selectors */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.pill-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.pill-btn {
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pill-btn:hover {
    border-color: #cbd5e1;
    background: #ffffff;
}

.pill-btn.selected {
    border-color: var(--primary-color);
    background: rgba(209, 61, 42, 0.06);
    box-shadow: 0 4px 14px rgba(209, 61, 42, 0.12);
}

.pill-btn .pill-icon {
    font-size: 20px;
}

.pill-btn .pill-title {
    font-size: 12px;
    font-weight: 800;
    color: #1e293b;
}

.pill-btn .pill-sub {
    font-size: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Sleek Compact GPS Icon Badge */
.location-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.btn-gps-icon {
    background: #ffffff;
    color: #2563eb;
    border: 1.5px solid #bfdbfe;
    padding: 5px 11px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
    transition: all 0.25s ease;
}

.btn-gps-icon:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.btn-gps-icon i {
    font-size: 13px;
    color: #2563eb;
    transition: color 0.2s;
}

.btn-gps-icon:hover i {
    color: #ffffff;
}

.btn-gps-icon.detected {
    background: #ecfdf5;
    color: #059669;
    border-color: #6ee7b7;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.btn-gps-icon.detected i {
    color: #059669;
}

.btn-gps-icon.loading i {
    animation: spinRadar 1s linear infinite;
}

@keyframes spinRadar {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Wizard Navigation Buttons */
.wizard-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-wizard-prev {
    background: #f1f5f9;
    color: #475569;
    border: 2px solid #cbd5e1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.btn-wizard-prev:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.btn-wizard-next {
    flex: 1;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(209, 61, 42, 0.3);
    transition: all 0.25s ease;
}

.btn-wizard-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(209, 61, 42, 0.4);
}

/* Comparison Table */
.comparison {
    border-top: 2px solid #1a1a1a;
    border-bottom: 2px solid #1a1a1a;
}

.compare-table {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
    border-collapse: collapse;
    background: white;
    border: 2.5px solid #1a1a1a;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.compare-table th,
.compare-table td {
    padding: 16px 25px;
    text-align: center;
    border-bottom: 1.5px solid #1a1a1a;
}

.compare-table th {
    background: var(--bg-light);
    font-size: 14px;
    font-weight: 700;
}

.compare-table td:first-child,
.compare-table th:first-child {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.compare-table .highlight {
    background: rgba(209, 61, 42, 0.05);
}

.compare-table th.highlight {
    background: var(--primary-color);
    color: white;
}

a.service-card {
    display: block;
    cursor: pointer;
}

a.pricing-item {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

a.pricing-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   ULTRA-PREMIUM BOOKING MODAL POPUP DIALOG (EXACT MOCKUP DESIGN)
   ========================================================================== */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open,
.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Dialog Card */
.booking-modal-dialog {
    background: #ffffff;
    width: 100%;
    max-width: 620px;
    max-height: 94vh;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 35px 90px -15px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.94) translateY(18px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .booking-modal-dialog,
.modal-backdrop.active .booking-modal-dialog {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 30;
}

.booking-modal-header .modal-brand {
    display: flex;
    align-items: center;
}

.booking-modal-header .modal-brand img {
    height: 36px;
    width: auto;
}

.booking-modal-header .modal-title-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    pointer-events: none;
}

.booking-modal-header .modal-title-center h3 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 2px 0;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.booking-modal-header .modal-title-center p {
    font-size: 12px;
    margin: 0;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.modal-close-btn {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    cursor: pointer !important;
    transition: all 0.2s ease;
    z-index: 1000 !important;
    pointer-events: auto !important;
    position: relative;
}

.modal-close-btn * {
    pointer-events: none !important;
}

.modal-close-btn:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Modal Body Scroll Container */
.booking-modal-body {
    padding: 0;
    overflow-y: auto;
    background: #f8fafc;
    -webkit-overflow-scrolling: touch;
    flex: 1;
}

.booking-modal-body::-webkit-scrollbar {
    width: 6px;
}

.booking-modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* ================= USER CUSTOM WIREFRAME FORM ================= */
.custom-step1-container,
.custom-flow-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* 1. Process Bar (Exact Arrow Chain Match) */
.custom-process-bar {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    width: 100%;
    box-sizing: border-box;
}

.custom-process-item {
    font-size: 12.5px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.custom-process-item.active {
    color: #0f172a;
    font-weight: 800;
}

.custom-process-arrow {
    color: #cbd5e1;
    font-size: 12px;
    user-select: none;
    flex-shrink: 0;
}

/* 2. Vehicle 3-Box Row */
.custom-vehicle-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.custom-vehicle-card {
    background: #e2e8f0;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 16px 10px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 800;
    color: #334155;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.custom-vehicle-card:hover {
    background: #cbd5e1;
    transform: translateY(-1px);
}

.custom-vehicle-card.active {
    background: #ffffff;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(209, 61, 42, 0.15), 0 0 0 1px var(--primary-color);
}

/* 3. Package 2-Box Row */
.custom-package-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.custom-package-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 16px;
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.custom-package-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.custom-package-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(209, 61, 42, 0.14), 0 0 0 1px var(--primary-color);
}

.custom-pkg-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-pkg-name {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.custom-pkg-price {
    font-size: 17px;
    font-weight: 900;
    color: var(--primary-color);
}

.custom-pkg-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.custom-pkg-features li {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.custom-pkg-features li i {
    color: #10b981;
    font-size: 10.5px;
}

/* 4. Car Name Input with Solid Chose Car Pill (Exact Wireframe Match) */
.custom-model-input-wrap {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 4px 6px 4px 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.22s ease;
    min-height: 48px;
    position: relative;
    box-sizing: border-box;
}

.custom-model-input-wrap:focus-within {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 2.5px rgba(124, 58, 237, 0.15) !important;
}

.booking-form .custom-model-input-wrap input,
.custom-model-input-wrap input {
    flex: 1;
    width: auto !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    font-family: inherit !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
    min-height: 0 !important;
    line-height: normal !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.booking-form .custom-model-input-wrap input:focus,
.custom-model-input-wrap input:focus,
.custom-model-input-wrap input:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.custom-model-input-wrap input::placeholder {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 13.5px !important;
    opacity: 1 !important;
}

.custom-choose-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    margin-right: 2px;
    box-sizing: border-box;
}

.custom-choose-pill:hover {
    background: #e2e8f0;
    border-color: #94a3b8;
    color: #0f172a;
    transform: translateY(-1px);
}

.custom-choose-pill i {
    color: #475569;
    font-size: 10px;
    transition: transform 0.2s ease;
}

.custom-model-dropdown-list {
    position: absolute;
    top: calc(100% + 6px);
    bottom: auto;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18), 0 4px 12px rgba(124, 58, 237, 0.08);
    max-height: 200px;
    overflow-y: auto;
    z-index: 9999;
    padding: 6px;
    display: none;
}

.custom-model-dropdown-list.show {
    display: block;
    animation: dropdownFadeDown 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.custom-model-item {
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-model-item:hover {
    background: #f1f5f9;
    color: #7c3aed;
}

.custom-model-item.selected {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 800;
}

/* 5. Bottom Navigation Buttons (Back & Next Section) */
.custom-actions-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 14px;
    margin-top: 4px;
}

.btn-custom-back {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #0f172a;
    padding: 12px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.btn-custom-back:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-custom-next {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border: none;
    color: #ffffff;
    padding: 12px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
    transition: all 0.22s ease;
}

.btn-custom-next:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

/* ================= PART 2: COLLAPSIBLE DATE & TIME SLOTS (MOBILE & DESKTOP ENHANCED) ================= */
.custom-step2-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

/* Multi-Vehicle Duration Info Banner */
.slot-duration-info-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    border: 1.5px solid #ddd6fe;
    border-radius: 12px;
    padding: 10px 14px;
    color: #5b21b6;
    animation: fadeIn 0.3s ease;
}

.slot-duration-info-banner i {
    font-size: 18px;
    color: #7c3aed;
    flex-shrink: 0;
}

.slot-duration-info-banner .banner-title {
    font-size: 13px;
    font-weight: 800;
    color: #4c1d95;
    display: block;
}

.slot-duration-info-banner .banner-desc {
    font-size: 11px;
    color: #6d28d9;
    font-weight: 600;
    display: block;
    margin-top: 1px;
}

/* Collapsible Dropdown Accordion Boxes */
.step2-collapsible-box {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.step2-collapsible-box.open {
    border-color: #8b5cf6;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.12), 0 0 0 1px #8b5cf6;
}

.step2-collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: #ffffff;
    cursor: pointer;
    user-select: none;
    transition: background 0.18s ease;
}

.step2-collapsible-header:hover {
    background: #f8fafc;
}

.step2-collapsible-box.open .step2-collapsible-header {
    background: #fdfcff;
    border-bottom: 1px solid #f1f5f9;
}

.collapsible-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.collapsible-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #f5f3ff;
    border: 1px solid #ddd6fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.collapsible-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.collapsible-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.collapsible-value {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.collapsible-arrow {
    font-size: 12px;
    color: #94a3b8;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.step2-collapsible-box.open .collapsible-arrow {
    transform: rotate(180deg);
    color: #7c3aed;
}

.step2-collapsible-body {
    display: none;
    padding: 12px;
    background: #ffffff;
    animation: dropdownFade 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.step2-collapsible-box.open .step2-collapsible-body {
    display: block;
}

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

/* Custom Interactive Calendar inside Collapsible */
.custom-calendar-box {
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 380px;
    margin: 0 auto;
}

.custom-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 6px;
}

.custom-cal-month-title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
}

.custom-cal-nav-btn {
    background: #f1f5f9;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #475569;
    font-size: 11px;
    transition: all 0.2s ease;
}

.custom-cal-nav-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.custom-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 2px;
}

.custom-cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    text-align: center;
}

.custom-cal-day {
    aspect-ratio: 1;
    width: 36px;
    height: 36px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    position: relative;
}

.custom-cal-day:hover:not(.disabled):not(.other-month) {
    background: #ede9fe;
    color: #7c3aed;
    transform: scale(1.06);
}

/* Active / Selected Date Circle Highlight (Fixed with high specificity) */
.custom-cal-day.selected,
.custom-cal-day.active {
    background: #7c3aed !important;
    color: #ffffff !important;
    font-weight: 900 !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.45) !important;
    transform: scale(1.08) !important;
}

.custom-cal-day.today:not(.selected):not(.active) {
    border: 1.5px solid #7c3aed;
    color: #7c3aed;
    font-weight: 800;
}

.custom-cal-day.disabled {
    color: #cbd5e1 !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.45;
}

.custom-cal-day.other-month {
    color: #cbd5e1 !important;
    cursor: default;
    pointer-events: none;
    opacity: 0.35;
}

/* Multi-Vehicle Slot Switcher / Tabs */
.vehicle-slot-tabs-wrap {
    margin-bottom: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 8px 10px;
}

.vehicle-slot-tabs-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.vehicle-slot-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}

.vehicle-slot-tab-btn {
    display: inline-flex;
    flex-direction: column;
    padding: 6px 10px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 8px;
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 700;
    color: #334155;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.vehicle-slot-tab-btn:hover {
    border-color: #7c3aed;
}

.vehicle-slot-tab-btn.active {
    background: #7c3aed;
    border-color: #7c3aed;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}

.vehicle-slot-tab-btn .tab-slot-val {
    font-size: 10px;
    font-weight: 800;
    opacity: 0.85;
    margin-top: 1px;
}

.vehicle-slot-tab-btn.active .tab-slot-val {
    opacity: 1;
    color: #f5f3ff;
}

/* Time Slot Pills Grid / Stack */
.custom-slots-stack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 8px;
}

.custom-slot-pill {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    min-height: 42px;
}

.custom-slot-pill:hover:not(.disabled) {
    border-color: #a78bfa;
    background: #fdfcff;
    transform: translateY(-1px);
}

.custom-slot-pill.active {
    border-color: #7c3aed;
    background: #f5f3ff;
    box-shadow: 0 3px 10px rgba(124, 58, 237, 0.16), 0 0 0 1.5px #7c3aed;
}

.custom-slot-pill.active .custom-slot-pill-time {
    color: #7c3aed;
    font-weight: 800;
}

.custom-slot-pill.assigned-other {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.custom-slot-pill.disabled {
    opacity: 0.55;
    background: #f8fafc;
    border-color: #f1f5f9;
    cursor: not-allowed;
}

.custom-slot-pill.disabled.is-booked {
    background: #fef2f2;
    border-color: #fee2e2;
    opacity: 0.7;
}

.custom-slot-pill-time {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
}

.custom-slot-assigned-badge {
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 6px;
    background: #ede9fe;
    color: #6d28d9;
}

.custom-slot-status-badge {
    font-size: 9.5px;
    font-weight: 800;
    padding: 2.5px 7px;
    border-radius: 6px;
    letter-spacing: 0.2px;
}

.custom-slot-status-badge.badge-booked {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fca5a5;
}

.custom-slot-status-badge.badge-passed {
    background: #f1f5f9;
    color: #94a3b8;
}

.custom-slot-status-badge.badge-avail {
    background: #ecfdf5;
    color: #059669;
}

/* ================= PART 3: ADDRESS & CONFIRMATION ================= */
.custom-inputs-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-input-field {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 4px 14px;
    transition: all 0.2s ease;
    min-height: 48px;
}

.custom-input-field:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 61, 42, 0.1);
}

.booking-form .custom-input-field input,
.custom-input-field input {
    flex: 1;
    width: 100% !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    font-family: inherit !important;
    padding: 6px 0 !important;
    margin: 0 !important;
}

.custom-input-field input::placeholder {
    color: #94a3b8 !important;
    font-weight: 500 !important;
}

.custom-input-field .input-icon {
    color: #94a3b8;
    font-size: 14px;
    margin-right: 10px;
}

.btn-gps-detect {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.btn-gps-detect:hover {
    background: #e2e8f0;
    color: #0f172a;
}

/* Payment Mode Grid */
.custom-pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.custom-pay-card {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-pay-card:hover {
    border-color: #94a3b8;
}

.custom-pay-card.active {
    border-color: var(--primary-color);
    background: #fffafa;
    box-shadow: 0 4px 12px rgba(209, 61, 42, 0.12), 0 0 0 1px var(--primary-color);
}

.custom-pay-card input[type="radio"] {
    accent-color: var(--primary-color);
    width: 16px;
    height: 16px;
    margin: 0 !important;
}

.custom-pay-info {
    display: flex;
    flex-direction: column;
}

.custom-pay-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
}

.custom-pay-sub {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 600;
}

/* Booking Summary Card */
.custom-summary-card {
    background: #f8fafc;
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-summary-info h5 {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.custom-summary-info p {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

.custom-summary-total {
    text-align: right;
}

.custom-summary-total span {
    font-size: 10.5px;
    color: #64748b;
    font-weight: 700;
    display: block;
}

.custom-summary-total strong {
    font-size: 17px;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-custom-confirm {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b82e1d 100%);
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 14px rgba(209, 61, 42, 0.3);
    transition: all 0.22s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-custom-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(209, 61, 42, 0.4);
}

.sidebar-trust-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.sidebar-trust-card .st-icon {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.sidebar-trust-card span {
    font-size: 11.5px;
    font-weight: 700;
    color: #1e293b;
}

.sidebar-car-banner {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin: 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-car-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.sidebar-help-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
}

.sidebar-help-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff1f0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.sidebar-help-box h4 {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.sidebar-help-box p {
    font-size: 10px;
    color: #64748b;
    margin: 0 0 6px 0;
}

.sidebar-help-phone {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
}

.sidebar-help-time {
    font-size: 9.5px;
    color: #94a3b8;
    font-weight: 600;
}

/* Multi-Step Modal Progress Bar */
.modal-steps-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    margin-bottom: 4px;
}

.modal-step-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-step-tab.active {
    opacity: 1;
}

.modal-step-tab.completed {
    opacity: 0.9;
}

.modal-step-tab-num {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.modal-step-tab.active .modal-step-tab-num {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(209, 61, 42, 0.35);
}

.modal-step-tab.completed .modal-step-tab-num {
    background: #10b981;
    color: #ffffff;
}

.modal-step-tab-text {
    font-size: 11.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.1px;
}

.modal-step-tab-line {
    flex: 1;
    height: 2px;
    background: #f1f5f9;
    margin: 0 12px;
}

.modal-form-step {
    display: none;
    animation: fadeInStep 0.25s ease;
}

.modal-form-step.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@keyframes fadeInStep {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-step-btn-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.btn-step-prev {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.btn-step-prev:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-step-next {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b82e1d 100%);
    border: none;
    color: #ffffff;
    padding: 13px 22px;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(209, 61, 42, 0.28);
    transition: all 0.25s ease;
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(209, 61, 42, 0.38);
}

/* Right Main Form Container */
.modal-form-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Luxury Section Titles */
.form-group-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.form-group-title .group-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group-title .group-sub {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
}

/* Section 1: Luxury Vehicle Selector Grid */
.mockup-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mockup-vehicle-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 8px 10px;
    text-align: center;
    cursor: pointer;
    position: relative;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.mockup-vehicle-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.mockup-vehicle-card.active,
.mockup-vehicle-card.selected {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(209, 61, 42, 0.12), 0 0 0 1px var(--primary-color);
}

.mockup-vehicle-card .v-svg-icon {
    width: 44px;
    height: 22px;
    color: #64748b;
    margin-bottom: 2px;
    transition: all 0.22s ease;
}

.mockup-vehicle-card:hover .v-svg-icon,
.mockup-vehicle-card.active .v-svg-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 2px 4px rgba(209, 61, 42, 0.3));
}

.mockup-vehicle-card .v-title {
    font-size: 12.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.mockup-vehicle-card.active .v-title {
    color: var(--primary-color);
}

.mockup-vehicle-card .v-sub {
    font-size: 9.5px;
    color: #64748b;
    font-weight: 600;
}

.card-corner-check {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 8px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(209, 61, 42, 0.3);
}

.mockup-vehicle-card.active .card-corner-check {
    display: flex;
}

/* Section 2: Luxury Package Cards */
.mockup-pkg-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mockup-pkg-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 14px 14px 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.mockup-pkg-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.mockup-pkg-card.active,
.mockup-pkg-card.selected {
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(209, 61, 42, 0.12), 0 0 0 1px var(--primary-color);
}

.mockup-pkg-card .pkg-tag {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 8.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.pkg-tag.tag-express {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
}

.mockup-pkg-card.active .pkg-tag.tag-express {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.pkg-tag.tag-popular {
    background: #0f172a;
    color: #ffffff;
}

.mockup-pkg-card.active .pkg-tag.tag-popular {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.25);
}

.mockup-pkg-card .pkg-title-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
}

.mockup-pkg-card .pkg-name {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.2px;
}

.mockup-pkg-card.active .pkg-name {
    color: var(--primary-color);
}

.mockup-pkg-card .pkg-price {
    font-size: 19px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.mockup-pkg-card.active .pkg-price {
    color: var(--primary-color);
}

.mockup-pkg-card .pkg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    font-size: 10.5px;
    color: #475569;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mockup-pkg-card .pkg-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.25;
}

.mockup-pkg-card .pkg-list li i {
    color: #10b981;
    font-size: 10px;
    flex-shrink: 0;
}

.mockup-pkg-card .pkg-duration {
    font-size: 9.5px;
    font-weight: 700;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f8fafc;
    padding: 3px 7px;
    border-radius: 6px;
    width: fit-content;
}

/* Section 3: Luxury Model Select Dropdown (100% Width) */
.mockup-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.mockup-input-wrap:focus-within,
.mockup-input-wrap:hover {
    border-color: #cbd5e1;
}

.mockup-input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(209, 61, 42, 0.1);
}

.mockup-input-wrap i.input-icon {
    position: absolute;
    left: 14px;
    color: #64748b;
    font-size: 13.5px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.mockup-input-wrap:focus-within i.input-icon {
    color: var(--primary-color);
}

.mockup-input-wrap select,
.mockup-input-wrap input,
.mockup-input-wrap textarea {
    width: 100%;
    padding: 11px 36px 11px 40px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.mockup-input-wrap select option {
    font-weight: 600;
    color: #0f172a;
    padding: 6px;
}

.mockup-input-wrap .select-arrow {
    position: absolute;
    right: 14px;
    pointer-events: none;
    color: #94a3b8;
    font-size: 11px;
}

/* Section 4 & 5: Date and Time Slots 2-Col Grid */
.mockup-date-slot-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 14px;
}

.mockup-time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.mockup-time-chip {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 6px 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.mockup-time-chip:hover:not(.disabled) {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.mockup-time-chip.selected,
.mockup-time-chip.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.mockup-time-chip .chip-time {
    font-size: 10px;
    font-weight: 800;
    color: #0f172a;
}

.mockup-time-chip.selected .chip-time,
.mockup-time-chip.active .chip-time {
    color: #ffffff;
}

.mockup-time-chip .chip-period {
    font-size: 8px;
    font-weight: 600;
    color: #64748b;
}

.mockup-time-chip.selected .chip-period,
.mockup-time-chip.active .chip-period {
    color: rgba(255, 255, 255, 0.85);
}

.mockup-time-chip.disabled {
    opacity: 0.4;
    background: #f1f5f9;
    cursor: not-allowed;
}

/* Section 6: Contact & Address */
.mockup-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 8px;
}

.mockup-address-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.btn-mockup-gps {
    background: #ffffff;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 11.5px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-mockup-gps:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Section 7: Payment Option & Bottom Action Bar Row */
.mockup-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding-top: 12px;
}

.mockup-payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.mockup-payment-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mockup-payment-card.active,
.mockup-payment-card.selected {
    border-color: var(--primary-color);
}

.mockup-payment-card .pm-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mockup-payment-card .pm-icon {
    font-size: 16px;
}

.mockup-payment-card .pm-title {
    font-size: 11px;
    font-weight: 800;
    color: #0f172a;
}

.mockup-payment-card .pm-desc {
    font-size: 9px;
    color: #64748b;
    display: block;
}

.mockup-action-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mockup-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.mockup-total-label {
    font-size: 10px;
    font-weight: 800;
    color: #64748b;
    letter-spacing: 0.4px;
}

.mockup-total-val {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-mockup-confirm {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b82b19 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(209, 61, 42, 0.3);
    transition: all 0.2s ease;
    width: 100%;
}

.btn-mockup-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(209, 61, 42, 0.4);
}

/* Modal Bottom Trust Strip (Full Width) */
.modal-bottom-trust-strip {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 24px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    font-size: 11px;
    font-weight: 700;
    color: #475569;
}

.modal-bottom-trust-strip span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.modal-bottom-trust-strip i {
    color: var(--primary-color);
}

/* Responsive for Mobile & Tablets */
@media (max-width: 900px) {
    .modal-split-layout {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .modal-sidebar {
        display: none;
    }

    .mockup-date-slot-row {
        grid-template-columns: 1fr;
    }

    .mockup-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mockup-bottom-row {
        grid-template-columns: 1fr;
    }

    .mockup-address-row {
        grid-template-columns: 1fr;
    }

    .btn-mockup-gps {
        justify-content: center;
    }

    .modal-bottom-trust-strip {
        flex-wrap: wrap;
        gap: 8px;
        font-size: 10px;
        padding: 8px 14px;
    }

    .modal-steps-nav {
        padding: 6px 10px;
    }

    .modal-step-tab-text {
        font-size: 10.5px;
    }

    .modal-step-tab-num {
        width: 18px;
        height: 18px;
        font-size: 9.5px;
    }

    .modal-step-tab-line {
        margin: 0 4px;
    }
}

/* Success Confirmation Card Modal */
.modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.open .modal-card,
.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-icon.success {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.modal-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #0f172a;
}

.modal-card p {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .booking-modal-dialog {
        border-radius: 16px;
        max-height: 94vh;
    }

    .booking-modal-body {
        padding: 14px 14px 18px;
    }

    .package-selector-grid {
        grid-template-columns: 1fr;
    }

    .mockup-model-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .time-slots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .services-grid,
    .feature-grid,
    .testimonial-container,
    .reviews-grid,
    .bike-grid {
        grid-template-columns: 1fr;
    }

    .review-card.featured {
        transform: scale(1);
    }

    .review-card.featured:hover {
        transform: translateY(-8px);
    }

    /* Home Page Hero Mobile */
    .hero-home .hero-pricing {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        justify-content: center;
        align-items: center;
        gap: 10px 12px;
        margin-top: 30px;  /* 👈 HOME MOBILE BUTTONS MARGIN */
        padding: 0 10px;
        width: 100%;
        max-width: 480px;
    }

    .hero-home .btn-5seater {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
    }

    .hero-home .btn-7seater {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
    }

    .hero-home .pricing-item {
        width: 100%;
        padding: 15px 16px;
        gap: 10px;
        min-height: 58px;
    }

    .hero-home .pricing-item .type {
        font-size: 14px;
    }

    .hero-home .pricing-action-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .hero-home .hero-bike-circle {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        justify-self: center;
        width: 110px;
        height: 110px;
        margin: 0;
        gap: 3px;
    }

    .hero-home .hero-bike-circle i {
        font-size: 22px;
    }

    .hero-home .hero-bike-circle span {
        font-size: 12px;
    }

    /* 5-Seater & 7-Seater Hero (Left Basic Wash, Right Premium Wash in 1 Row) */
    .hero-car-page .hero-pricing-detailed {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        max-width: 680px;
        padding: 0 10px;
        gap: 14px;
        margin-top: 20px;
        width: 100%;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: 45%;
    }

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

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

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .detail-grid,
    .booking-grid,
    .vehicle-category-grid {
        grid-template-columns: 1fr;
    }

    .detail-image img {
        position: static;
    }

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

    .page-hero h1 {
        font-size: 40px;
    }
}

/* Luxury Confirmation Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    background: #ffffff;
    border-radius: 24px;
    max-width: 480px;
    width: 100%;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-card {
    transform: translateY(0) scale(1);
}

.modal-icon-wrap {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.35);
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.modal-card p.modal-sub {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.receipt-box {
    background: var(--bg-light);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    padding: 18px 20px;
    text-align: left;
    margin-bottom: 25px;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-bottom: 10px;
}

.receipt-row:last-child {
    margin-bottom: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 700;
    font-size: 15px;
}

.receipt-label {
    color: var(--text-light);
}

.receipt-value {
    color: var(--text-dark);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
}

/* Out of Service / Hisar Location Modal Styles */
.modal-icon-alert {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.35) !important;
}

.hisar-alert-box {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 16px;
    padding: 14px 18px;
    margin: 18px 0;
    text-align: left;
}

.hisar-alert-box .alert-title {
    color: #b45309;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.hisar-alert-box .alert-desc {
    color: #78350f;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.detected-distance-tag {
    display: inline-block;
    background: #fee2e2;
    color: #dc2626;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 8px;
}

/* Floating Sticky Mobile Quick-Book Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    z-index: 990;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

.sticky-bar-text h5 {
    font-size: 14px;
    font-weight: 800;
    margin: 0;
}

.sticky-bar-text p {
    font-size: 11px;
    color: var(--text-light);
    margin: 0;
}

/* Testimonial slider */
.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.carousel-dots {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

/* Responsive Rules */
@media (max-width: 992px) {

    .services-grid,
    .feature-grid,
    .testimonial-container,
    .reviews-grid,
    .bike-grid {
        grid-template-columns: 1fr;
    }

    .review-card.featured {
        transform: scale(1);
    }

    .review-card.featured:hover {
        transform: translateY(-8px);
    }

    .hero-pricing {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin-top: 38px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        width: 45%;
    }

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

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

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .detail-grid,
    .booking-grid,
    .vehicle-category-grid {
        grid-template-columns: 1fr !important;
    }

    .detail-image img {
        position: static;
    }

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

    .page-hero h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header .btn-outline {
        display: none;
    }

    .mobile-sticky-bar {
        display: flex;
    }

    /* Hide Footer in Mobile View ONLY (Visible on Desktop) */
    .footer {
        display: none !important;
    }

    body {
        padding-bottom: 65px;
    }

    /* Mobile Side Margin & Container Framing */
    .container {
        padding-left: 18px !important;
        padding-right: 18px !important;
        box-sizing: border-box;
    }

    .hero {
        padding: 10px 16px 30px;
        overflow: visible;
        box-sizing: border-box;
    }

    .hero-content {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
    }

    /* ==========================================================================
       📱 MOBILE HOME PAGE HERO (index.html ONLY)
       ========================================================================== */

    /* --- MOBILE HOME PART 1: BACKGROUND BIG TEXT --- */
    .hero-home .hero-bg-text {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        z-index: 1;
        pointer-events: none;
        text-align: center;
    }

    .hero-home .hero-bg-text h1 {
        font-size: 20vw;
        line-height: 0.9;
        white-space: nowrap !important;
    }

    .hero-home .hero-bg-text h1.outline-text {
        -webkit-text-stroke: 2px #c0c0c0;
        color: transparent;
        margin-top: 12vh;
        white-space: nowrap !important;
    }

    .hero-home .hero-car-word {
        display: none;
    }

    /* --- MOBILE HOME PART 2: HERO CAR IMAGE --- */
    .hero-home .hero-image-wrapper {
        position: relative;
        z-index: 2;
        max-width: 90%;
        margin: 0 auto;
        margin-top: -55vw;    /* 👈 HOME CAR MARGIN (MOBILE) */
    }

    /* --- MOBILE HOME PART 3: PRICING & BOOKING BUTTONS --- */
    .hero-home .hero-pricing {
        position: relative;
        z-index: 3;
        margin-top: 30%;   /* 👈 HOME BUTTONS MARGIN (MOBILE) */
        padding: 0 16px;
        box-sizing: border-box;
        width: 100%;
    }

    /* ==========================================================================
       📱 MOBILE 5-SEATER & 7-SEATER CAR HERO
       ========================================================================== */
    .hero-car-page .hero-bg-text {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        z-index: 1;
        pointer-events: none;
        text-align: center;
    }

    .hero-car-page .hero-bg-text h1 {
        font-size: clamp(1.8rem, 12.5vw, 4rem);
        line-height: 0.95;
        white-space: nowrap !important;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-car-page .hero-image-wrapper {
        position: relative;
        z-index: 2;
        max-width: 90%;
        margin: 0 auto;
        margin-top: 0vw;    /* 👈 Detail Car Margin on Mobile */
    }

    .hero-car-page .hero-pricing-detailed {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: stretch;
        position: relative;
        z-index: 3;
        margin-top: 10vh;   /* 👈 [MOBILE] 5/7-SEATER BUTTONS TOP MARGIN */
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
        gap: 10px;
    }

    .hero-car-page .detailed-pricing-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 16px 12px;
        min-height: 215px;     /* 👈 Additional 10% Mobile Height */
        border-radius: 16px;
        box-sizing: border-box;
    }

    .hero-car-page .detailed-pricing-item .item-title-row {
        gap: 3px;
        margin-bottom: 10px;
        padding-bottom: 7px;
    }

    .hero-car-page .detailed-pricing-item .type {
        font-size: 12px;
    }

    .hero-car-page .detailed-pricing-item .price {
        font-size: 17px;
        margin-left: 2px;
    }

    .hero-car-page .detailed-pricing-item .item-features {
        gap: 6px;
        margin-bottom: 12px;
    }

    .hero-car-page .detailed-pricing-item .item-features li {
        font-size: 10.5px;
        gap: 4px;
        white-space: normal;
        line-height: 1.35;
    }

    .hero-car-page .detailed-pricing-item .pricing-action-bar {
        font-size: 12px;
        padding-top: 12px;
    }

    .hero-car-page .detailed-pricing-item .pricing-action-bar .pricing-action-btn {
        width: 25px;
        height: 25px;
        font-size: 11px;
    }

    .hero-home .hero-bike-circle {
        width: 95px !important;
        height: 95px !important;
    }

    .vehicle-card,
    .bike-card,
    .service-card,
    .why-card,
    .review-card {
        width: 100%;
        box-sizing: border-box;
        border-radius: 18px;
    }

    .stat-item {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .feature-text h2 {
        font-size: 34px;
    }

    .reviews .section-header h2 {
        font-size: 28px;
    }

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

    .feature-revitalize,
    .feature-pure-clean {
        width: calc(100% - 32px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding: 26px 18px !important;
        border-radius: 20px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
    }

    .item-large {
        min-height: 220px;
        max-height: 240px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .payment-methods-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .modal-backdrop {
        padding: 12px;
    }

    .booking-modal-dialog {
        max-width: 100%;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .booking-form {
        padding: 24px 18px;
    }

    .booking-info {
        padding: 24px 18px;
    }

    .booking-summary-box {
        padding: 14px 16px;
    }

    .summary-header .summary-price {
        font-size: 22px;
    }
}

/* ==========================================================================
   📱 REAL PHONE FIX (max-width: 480px) — Modal Form Overflow Fix
   ========================================================================== */
@media (max-width: 480px) {

    /* --- Modal Backdrop & Dialog (10% Bottom Screen Clearance & Clear Outline) --- */
    .modal-backdrop {
        padding: 10px 10px 40px !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    .booking-modal-dialog {
        max-width: 100% !important;
        width: 100% !important;
        max-height: 86vh !important;
        border-radius: 18px !important;
        border: 1.5px solid #cbd5e1 !important;
        box-shadow: 0 16px 40px rgba(15, 23, 42, 0.3) !important;
        box-sizing: border-box !important;
    }

    /* --- Modal Header --- */
    .booking-modal-header {
        padding: 10px 14px !important;
    }

    .booking-modal-header .modal-brand img {
        height: 28px !important;
    }

    .booking-modal-header .modal-title-center h3 {
        font-size: 14px !important;
    }

    .booking-modal-header .modal-title-center p {
        font-size: 10px !important;
    }

    .modal-close-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }

    /* --- Modal Body --- */
    .booking-modal-body {
        padding: 0 !important;
    }

    /* --- Step Container --- */
    .modal-form-step.active {
        gap: 12px !important;
        padding: 12px 10px 50px !important; /* Plenty of bottom room to prevent cutting off buttons */
    }

    .custom-step1-container,
    .custom-flow-container {
        gap: 10px !important;
    }

    /* --- Process Bar --- */
    .custom-process-bar {
        padding: 8px 10px !important;
        border-radius: 40px !important;
    }

    .custom-process-item {
        font-size: 10px !important;
        white-space: nowrap !important;
    }

    .custom-process-arrow {
        font-size: 9px !important;
        margin: 0 2px !important;
    }

    /* --- Vehicle Type Row (5 Seater / 7 Seater / Bike) --- */
    .custom-vehicle-row {
        gap: 8px !important;
    }

    .custom-vehicle-card {
        padding: 10px 6px !important;
        font-size: 11.5px !important;
        border-radius: 10px !important;
    }

    /* --- Package Cards Row (Basic / Premium) --- */
    .custom-package-row {
        gap: 8px !important;
    }

    .custom-package-card {
        padding: 12px 10px !important;
        border-radius: 12px !important;
        gap: 4px !important;
    }

    .custom-pkg-name {
        font-size: 12.5px !important;
    }

    .custom-pkg-price {
        font-size: 14px !important;
    }

    .custom-pkg-features {
        gap: 3px !important;
        margin-top: 2px !important;
    }

    .custom-pkg-features li {
        font-size: 10px !important;
        gap: 4px !important;
        line-height: 1.3 !important;
    }

    .custom-pkg-features li i {
        font-size: 9px !important;
    }

    /* --- Car Name Input + Chose Car Pill --- */
    .custom-model-input-wrap {
        padding: 3px 5px 3px 12px !important;
        min-height: 42px !important;
        border-radius: 10px !important;
    }

    .booking-form .custom-model-input-wrap input,
    .custom-model-input-wrap input {
        font-size: 12.5px !important;
    }

    .custom-model-input-wrap input::placeholder {
        font-size: 12.5px !important;
    }

    .custom-choose-pill {
        padding: 7px 14px !important;
        font-size: 11px !important;
        border-radius: 40px !important;
    }

    /* --- Dropdown List --- */
    .custom-model-dropdown-list {
        max-height: 180px !important;
        border-radius: 12px !important;
        padding: 4px !important;
    }

    .custom-model-item {
        padding: 8px 10px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }

    /* --- Bottom Buttons (Back / Next Section) --- */
    .custom-actions-row {
        gap: 10px !important;
        margin-top: 8px !important;
        margin-bottom: 24px !important;
        padding-bottom: 10px !important;
    }

    .btn-custom-back,
    .btn-custom-next {
        padding: 12px 14px !important;
        font-size: 13px !important;
        border-radius: 12px !important;
        min-height: 44px !important;
    }

    /* --- Step 2: Calendar & Slots --- */
    .custom-step2-grid {
        gap: 10px !important;
    }

    .custom-calendar-box {
        padding: 8px !important;
        border-radius: 12px !important;
    }

    .custom-cal-header {
        font-size: 13px !important;
    }

    .custom-cal-day {
        width: 32px !important;
        height: 32px !important;
        font-size: 11px !important;
    }

    .custom-slots-stack {
        gap: 6px !important;
    }

    .custom-slot-pill {
        padding: 6px 10px !important;
        min-height: 32px !important;
    }

    .custom-slot-pill-time {
        font-size: 10.5px !important;
    }

    /* --- Step 3: Address & Confirmation --- */
    .custom-inputs-stack {
        gap: 8px !important;
    }

    .custom-input-field {
        padding: 3px 5px 3px 12px !important;
        min-height: 40px !important;
        border-radius: 10px !important;
    }

    .custom-input-field input,
    .custom-input-field textarea {
        font-size: 12.5px !important;
    }

    .custom-input-field input::placeholder,
    .custom-input-field textarea::placeholder {
        font-size: 12px !important;
    }

    .custom-gps-pill {
        padding: 6px 12px !important;
        font-size: 10.5px !important;
    }

    /* --- Receipt Card --- */
    .custom-receipt-card {
        padding: 12px 10px !important;
        border-radius: 12px !important;
    }

    .receipt-row {
        font-size: 11px !important;
    }

    .receipt-label {
        font-size: 10.5px !important;
    }

    .receipt-value {
        font-size: 11px !important;
    }

    .custom-total-row {
        font-size: 13px !important;
    }

    /* --- COD / Pay Button --- */
    .btn-custom-confirm {
        padding: 12px !important;
        font-size: 13px !important;
        border-radius: 12px !important;
    }

    /* --- Prevent any horizontal overflow --- */
    .booking-modal-dialog,
    .booking-modal-body,
    .modal-form-step,
    .custom-step1-container,
    .custom-flow-container,
    .custom-process-bar,
    .custom-vehicle-row,
    .custom-package-row,
    .custom-model-input-wrap,
    .custom-actions-row,
    .custom-step2-grid,
    .custom-inputs-stack,
    .custom-receipt-card {
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
}

/* ==========================================================================
   🚗 MULTI-VEHICLE BOOKING SYSTEM STYLES
   ========================================================================== */
/* ==========================================================================
   🚗 MULTI-VEHICLE DYNAMIC CARDS LIST (STEP 1)
   ========================================================================== */
.vehicles-cards-container {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.vehicle-block-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all 0.2s ease;
}

.vehicle-block-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.06);
}

.vehicle-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px dashed #e2e8f0;
}

.vehicle-block-title {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 7px;
}

.vehicle-block-title i {
    color: #7c3aed;
    font-size: 13.5px;
}

.btn-remove-vehicle {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #ef4444;
    font-size: 11px;
    font-weight: 700;
    padding: 3.5px 9px;
    border-radius: 7px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.18s ease;
}

.btn-remove-vehicle:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
    transform: translateY(-1px);
}

/* 4. Vehicle Plate Number Input (Identical styling to Vehicle Name) */
/* 4. Vehicle Plate Number Input (Clean Field with Left Icon) */
.custom-plate-wrap {
    margin-top: 0;
    position: relative;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 12px;
    padding: 4px 14px;
    min-height: 48px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.custom-plate-wrap:focus-within {
    border-color: #7c3aed !important;
    box-shadow: 0 0 0 2.5px rgba(124, 58, 237, 0.15) !important;
}

.plate-left-icon {
    color: #7c3aed;
    font-size: 15px;
    margin-right: 10px;
    flex-shrink: 0;
}

.custom-plate-wrap input.card-plate-input {
    flex: 1;
    width: 100% !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 !important;
    margin: 0 !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.custom-plate-wrap input.card-plate-input::placeholder {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-transform: none;
    letter-spacing: normal;
}

/* + Add Vehicle Button Row (Right-Aligned, Purple Dashed Outline) */
.add-vehicle-btn-row {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 4px;
    margin-bottom: 8px;
}

.btn-add-vehicle-card {
    width: auto;
    min-width: 175px;
    background: #ffffff;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 800;
    border: 2px dashed #7c3aed;
    border-radius: 12px;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-add-vehicle-card:hover {
    background: #f5f3ff;
    border-color: #6d28d9;
    color: #6d28d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.16);
}

/* Single Package Card for Bike */
.custom-package-row.single-pkg-row {
    grid-template-columns: 1fr;
}

.custom-package-card.single-card {
    width: 100%;
    border-color: #7c3aed;
    background: #faf8ff;
}

.vehicle-tab-item .tab-pill-price {
    font-size: 11px;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(209, 61, 42, 0.1);
    padding: 1px 6px;
    border-radius: 6px;
}

.vehicle-tab-item.active .tab-pill-price {
    color: #ffd4cf;
    background: rgba(255, 255, 255, 0.15);
}

.vehicle-tab-item .tab-remove-btn {
    color: #94a3b8;
    margin-left: 2px;
    font-size: 11px;
    padding: 2px 4px;
    border-radius: 50%;
    transition: color 0.15s;
}

.vehicle-tab-item .tab-remove-btn:hover {
    color: #ef4444;
}

.vehicle-tab-add-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 10px;
    background: rgba(209, 61, 42, 0.08);
    border: 1.5px dashed var(--primary-color);
    font-size: 12px;
    font-weight: 800;
    color: var(--primary-color);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vehicle-tab-add-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

/* Active vehicle banner */
.vehicle-editing-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-top: -4px;
}

.vehicle-editing-banner .banner-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

/* Multi-vehicle summary bar at bottom of Step 1 */
.step1-total-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 10px 16px;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.step1-total-info {
    display: flex;
    flex-direction: column;
}

.step1-total-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.step1-total-vehicles {
    font-size: 12.5px;
    color: #f1f5f9;
    font-weight: 700;
}

.step1-total-amount {
    font-size: 19px;
    font-weight: 900;
    color: #ff6b52;
}

/* Multi-Vehicle Itemized Breakdown in Step 3 */
.multi-summary-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.multi-summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid #e2e8f0;
}

.multi-summary-header h5 {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.multi-summary-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
    padding-right: 2px;
}

.multi-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 8px 12px;
    gap: 10px;
}

.multi-summary-vehicle-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.multi-summary-vehicle-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.multi-summary-vehicle-sub {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

.multi-summary-vehicle-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    white-space: nowrap;
}

.multi-summary-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1.5px dashed #cbd5e1;
    margin-top: 4px;
}

.multi-summary-total-label {
    font-size: 13px;
    font-weight: 800;
    color: #1e293b;
}

.multi-summary-total-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
}
/* Location Options UI */
.btn-add-location {
    width: 100%;
    padding: 14px;
    border: 2px dashed #3b82f6;
    background-color: #eff6ff;
    color: #1e3a8a;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-add-location:hover {
    background-color: #dbeafe;
    border-color: #2563eb;
}

.btn-add-location i {
    font-size: 1.1rem;
}

.location-options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.loc-option-btn {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e7eb;
    background-color: white;
    color: #1f2937;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.loc-option-btn:hover {
    background-color: #f3f4f6;
}

.loc-option-btn i {
    color: #3b82f6;
    font-size: 1.2rem;
}

.bottom-sheet {
    align-self: flex-end;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.map-modal-backdrop {
    padding: 0 !important;
}

.map-modal-card {
    max-width: 100vw !important;
    width: 100vw !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
}

.map-header {
    padding: 15px 20px;
    background: white;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-header h3 {
    margin: 0;
    font-size: 18px;
}

.map-header p {
    margin: 5px 0 0 0;
    font-size: 12px;
    color: #64748b;
}

#map-container {
    flex-grow: 1;
    width: 100%;
    height: 100%;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.map-actions {
    padding: 15px 20px;
    background: white;
    z-index: 10;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

/* Make sure Leaflet map has correct z-index */
.leaflet-container {
    z-index: 1 !important;
}

/* Geocoder custom styles */
.leaflet-control-geocoder {
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}
