:root {
    /* Driver App Colors */
    --primary: #1469B5;
    /* Main Brand Color */
    --primary-dark: #0E2743;
    /* Sidebar/Darker Shade */
    --secondary: #EFF6FF;
    /* Light Background */
    --dark: #0E2743;
    /* Text Color */
    --gray: #64748B;
    --light-gray: #E2E8F0;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--secondary);
    color: var(--dark);
    min-height: 100vh;
    line-height: 1.4;
}

body.app-shell {
    padding-bottom: 0;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #edf2f7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--primary-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-bottom-nav {
    display: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .help-btn {
    background: var(--primary);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
}

.nav-links .user-btn {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
}

.nav-links .user-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* User Avatar / Dropdown Menu */
.user-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.user-avatar-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 40px;
    padding: 5px 12px 5px 5px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}

.user-avatar-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(20, 105, 181, 0.10);
}

.user-avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #3b82f6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.user-avatar-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 6px rgba(0, 0, 0, 0.06);
    border: 1px solid #edf2f7;
    padding: 6px;
    display: none;
    z-index: 1100;
    animation: dropdownFade 0.18s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown.show {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--secondary);
    color: var(--primary);
}

.dropdown-item:hover i {
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: #edf2f7;
    margin: 4px 8px;
}

.dropdown-logout {
    color: #dc3545;
}

.dropdown-logout i {
    color: #dc3545;
}

.dropdown-logout:hover {
    background: #fff5f5;
    color: #dc3545;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 50px 20px 120px;
    position: relative;
    /* Static hero specific */
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 340px;
    /* Adjust as needed */
    position: relative;
    padding-bottom: 80px;
    /* Space for booking card overlap */
    background: var(--dark);
}

.hero-slider .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overwrite overlap for slider */
/* The booking card has negative margin -60px. 
   If slider is used, we need to ensure it sits nicely. 
   Ths logic handles both cases if padding/margin is managed correctly. */

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49%, var(--secondary) 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #dfe7f2;
    box-shadow: 0 10px 34px rgba(15, 23, 42, 0.1);
    max-width: 1180px;
    margin: -40px auto 24px;
    position: relative;
    z-index: 10;
    overflow: visible;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    background: #f7f9fc;
    border-bottom: 1px solid #dde5f0;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 14px;
    background: #f8fbff;
    border-bottom: 1px solid #e5eaf2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 8px;
    border: 1px solid #e3e9f3;
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    font-size: 11px;
    font-weight: 600;
}

.trust-item i {
    color: var(--primary);
    font-size: 12px;
}

.service-tab {
    flex: 1;
    padding: 13px 16px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--gray);
    transition: all 0.3s;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
}

.service-tab:hover {
    background: var(--white);
    color: var(--primary);
}

.service-tab.active {
    background: var(--white);
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.service-tab i {
    font-size: 16px;
}

.no-results {
    border: 1px dashed #cbd5e1;
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    font-size: 13px;
    color: var(--gray);
    text-align: center;
}

.info-ribbon {
    max-width: 1240px;
    margin: 8px auto 0;
    padding: 0 12px;
}

.info-ribbon-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid #dbe5f2;
    background: #fff;
}

.info-pill {
    font-size: 11px;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: #edf5ff;
}

.info-pill strong {
    color: var(--primary);
}

/* Search Form */
.search-form {
    padding: 18px 20px 20px;
}

/* Airport Toggle */
.airport-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: flex-start;
}

.toggle-btn {
    padding: 7px 13px;
    border: 1px solid #d6e0ee;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #eff6ff;
    color: var(--white);
    border-color: #bfdbfe;
    color: #0f4a9e;
}

.form-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(220px, 1.45fr) minmax(160px, 1fr) 150px;
    gap: 10px;
    align-items: end;
}

.outstation-return-wrap {
    margin-bottom: 12px;
}

.outstation-return-wrap label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.outstation-return-wrap input {
    width: 100%;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--dark);
}

.rental-package-wrap {
    margin-bottom: 12px;
}

.rental-package-wrap > label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-package-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rental-package-chip {
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--dark);
    border-radius: 18px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.rental-package-chip.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.rental-fare-box {
    margin-top: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    background: #f8fafc;
    padding: 10px;
}

.rental-fare-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.rental-fare-line,
.rental-fare-policy {
    font-size: 11px;
    color: #374151;
}

.rental-fare-policy {
    margin-top: 4px;
    color: #6b7280;
}

@media (max-width: 1200px) {
    .booking-card {
        margin-left: 12px;
        margin-right: 12px;
    }
}

@media (max-width: 900px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-card {
        margin: -24px 15px 24px;
        /* Less negative margin, side margins */
    }

    .hero {
        padding-bottom: 60px;
    }

    .service-tabs {
        overflow-x: auto;
        /* Allow scrolling if tabs don't fit */
        justify-content: flex-start;
        /* Align start for scrolling */
    }

    .service-tab {
        min-width: 120px;
        /* Ensure tabs don't shrink too much */
        flex-shrink: 0;
        padding: 15px;
        font-size: 13px;
        flex-direction: column;
        /* Stack icon and text */
        gap: 5px;
    }

    .service-tab i {
        font-size: 18px;
    }

    .airport-toggle {
        gap: 10px;
        /* Reduce gap */
        flex-wrap: wrap;
        /* Allow wrapping */
    }

    .toggle-btn {
        width: 100%;
        /* Full width buttons on mobile */
        justify-content: center;
    }

    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 10px;
    }
}

.form-group {
    position: relative;
    overflow: visible;
}

.form-group label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 12px 12px;
    padding-left: 36px;
    border: 1px solid #cad6e6;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    background: var(--white);
    min-height: 50px;
}

.airport-dropdown-wrap {
    position: relative;
    width: 100%;
}

.airport-dd-input {
    width: 100%;
    padding: 12px 40px 12px 14px; /* More padding right for chevron */
    border: 1px solid #d8e1ec;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    background: var(--white);
    min-height: 48px;
    transition: all 0.2s;
    cursor: pointer;
}

.airport-dd-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.airport-dd-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s;
}

.airport-dropdown-wrap.open .airport-dd-chevron {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
}

.airport-dropdown-wrap.open .airport-dd-list {
    display: block;
    animation: ddFadeIn 0.15s ease-out forwards;
}

.airport-dd-list {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 2200;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-height: 260px; /* Slightly taller */
    overflow-y: auto;
    padding: 6px 0;
}

/* Keyframes for smooth entrance */
@keyframes ddFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.airport-dd-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s;
}

.airport-dd-item:hover {
    background: var(--secondary, #eff6ff);
}

.airport-dd-item i {
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.airport-dd-item div {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.airport-dd-item strong {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.airport-dd-item small {
    font-size: 11px;
    color: #6b7280;
    margin-top: 1px;
}

.airport-dd-empty {
    padding: 16px 14px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

.form-group input[type="datetime-local"] {
    min-height: 44px;
    letter-spacing: 0.2px;
    color: var(--dark);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.form-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.9;
    filter: saturate(0.8) hue-rotate(175deg);
}

.form-group input[type="datetime-local"]::-webkit-datetime-edit {
    padding: 0;
}

.form-group input[type="datetime-local"]::-webkit-datetime-edit-fields-wrapper {
    color: var(--dark);
}

.form-group input[type="datetime-local"]:focus::-webkit-calendar-picker-indicator {
    opacity: 1;
}

.date-display-input {
    cursor: pointer;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 105, 181, 0.1);
}

.form-group .icon {
    position: absolute;
    left: 12px;
    bottom: 17px;
    color: #6b7a90;
    font-size: 13px;
    pointer-events: none;
}

.native-location-hidden {
    display: none !important;
}

.search-btn {
    background: #d84e55;
    color: var(--white);
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
}

.search-btn:hover {
    background: #c9454c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 78, 85, 0.35);
}

.search-btn:disabled,
.book-btn:disabled,
.auth-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Results Section */
.results-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px;
    display: none;
}

.results-section.show {
    display: block;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 10px;
    padding: 12px 16px;
}

.results-header h2 {
    font-size: 17px;
    color: var(--dark);
}

.results-count {
    color: var(--gray);
    font-size: 12px;
}

.results-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-view-all {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.results-view-all:disabled {
    opacity: 0.7;
    cursor: default;
}

.cab-card {
    background: var(--white);
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: none;
    display: grid;
    grid-template-columns: 62px 1fr 210px;
    gap: 14px;
    align-items: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #dfe7f2;
}

.cab-card:hover {
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: var(--primary);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cab-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.cab-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
    border: 1px solid #dbe6f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    overflow: hidden;
}

.cab-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.airport-published-card {
    border-color: #c7d6eb;
}

.cab-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--dark);
}

.cab-info .subtitle {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
}

.cab-info .capacity {
    color: var(--gray);
    font-size: 12px;
    margin-bottom: 6px;
}

.airport-published-card .cab-info .capacity {
    font-weight: 600;
    color: #475569;
}

.airport-ride-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.airport-ride-time {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
}

.airport-ride-driver {
    font-size: 11px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.airport-ride-driver i {
    color: #f59e0b;
    font-size: 10px;
}

.cab-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cab-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 500;
}

.cab-tag.ac {
    background: #DBEAFE;
    color: #1565c0;
}

.cab-details {
    text-align: center;
}

.cab-details .rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.cab-details .rating i {
    color: #ffc107;
}

.cab-details .reviews {
    color: var(--gray);
    font-size: 12px;
}

.cab-price {
    text-align: right;
    border-left: 1px dashed #dce4ef;
    padding-left: 14px;
}

@media (max-width: 768px) {
    .cab-price {
        text-align: center;
    }
}

.cab-price .amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.cab-price .per-km {
    color: var(--gray);
    font-size: 11px;
    margin-bottom: 8px;
}

.extra-fare {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 8px;
}

.book-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.book-btn:hover {
    background: var(--primary-dark);
}

.book-btn.sold-out,
.book-btn.sold-out:hover {
    background: #94a3b8;
    color: #ffffff;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 20px 30px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 15px;
    line-height: 1.8;
}

.footer h5 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary);
    /* Keep as highlight or make white? Keeping brand color */
    color: #60A5FA;
    /* Using Lighter blue for contrast on dark bg */
}

.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Loading */
.loading {
    display: none;
    text-align: center;
    padding: 40px;
}

.loading.show {
    display: block;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Offers Section */
.offers-section {
    padding: 42px 0;
    background: #fff;
    margin: 10px 0 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.section-header .view-all {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s;
}

.section-header .view-all:hover {
    background: var(--primary);
    color: #fff;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.offer-card {
    background: linear-gradient(135deg, #FFF, #F8FAFC);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: all 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.offer-icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.offer-details {
    flex: 1;
}

.offer-details .badge {
    background: #DCFCE7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.offer-details h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 5px 0;
    color: var(--dark);
}

.offer-details p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.4;
}

.coupon-code {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px dashed var(--gray);
    border-radius: 6px;
    padding: 4px 10px;
    width: fit-content;
    gap: 10px;
}

.coupon-code span {
    font-family: monospace;
    font-weight: 700;
    color: var(--dark);
    font-size: 14px;
}

.coupon-code button {
    border: none;
    background: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 14px;
}

/* Services Section */
.services-section {
    padding: 24px 0 18px;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.service-card {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    background: var(--white);
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--secondary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: var(--dark);
    margin: 0;
}

/* App Download Section */
.app-download-section {
    padding: 80px 0;
    background: #fff;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    /* Subtle pattern */
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 60px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .app-content {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

.app-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}

.app-text h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.app-text ul {
    list-style: none;
    margin-bottom: 40px;
}

.app-text ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 900px) {
    .app-text ul li {
        justify-content: center;
    }
}

.app-text ul li i {
    color: #4ade80;
}

.app-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 900px) {
    .app-buttons {
        justify-content: center;
    }
}

.store-btn {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.store-btn:hover {
    background: #333;
    transform: translateY(-2px);
}

.store-btn i {
    font-size: 28px;
}

.store-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-btn div span {
    font-size: 10px;
    text-transform: uppercase;
}

.store-btn div b {
    font-size: 16px;
    font-weight: 600;
}

.app-image img {
    max-height: 400px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transform: rotate(-5deg);
    transition: all 0.5s;
}

.app-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

.auth-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.auth-modal.open {
    display: flex;
}

.calendar-sheet {
    position: fixed;
    inset: 0;
    z-index: 2100;
    display: none;
    align-items: center; /* Center on desktop */
    justify-content: center;
    padding: 20px;
}

.calendar-sheet.open {
    display: flex;
}

.calendar-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(2px); /* Slight blur for modern look */
}

.calendar-sheet-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px; /* Much smaller on desktop */
    background: #fff;
    border-radius: 16px; /* Rounded all corners */
    padding: 20px;
    box-shadow: var(--shadow-lg);
    /* No huge min-height */
}

.calendar-sheet-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #f2f4f7;
    color: #24262d;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.calendar-sheet-close:hover {
    background: #e2e8f0;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-top: 20px; /* Reduced from 56px */
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eceff4;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 13px; /* Reduced from 20px */
    color: #7a7f87;
    font-weight: 600;
}

.calendar-month-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 4px 0 10px;
}

.calendar-month-nav h4 {
    font-size: 18px; /* Draco Drastically reduced from 44px */
    color: #121826;
    font-weight: 700;
    margin: 0;
}

.calendar-month-nav button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f4f7fb;
    font-size: 16px;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendar-month-nav button:hover {
    background: #e2e8f0;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-top: 10px;
}

.calendar-time-row {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-time-row label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    min-width: 84px;
}

.calendar-time-row input[type="time"] {
    flex: 1;
    min-height: 40px;
    border: 1px solid #d8e1ec;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    color: #1f2937;
    background: #fff;
}

.calendar-day-spacer {
    min-height: 40px;
}

.calendar-day-btn {
    width: 100%;
    aspect-ratio: 1; /* Keep it square */
    height: 40px; 
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #1f2937;
    font-size: 14px; /* Reduced from 30px */
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.calendar-day-btn:hover:not(.disabled):not(.selected) {
    background-color: #f3f4f6;
}

.calendar-day-btn.selected {
    background: var(--primary); /* Use primary color */
    color: #fff;
}

.calendar-day-btn.disabled {
    color: #c4cad4;
    cursor: not-allowed;
}

.auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.auth-dialog {
    width: 100%;
    max-width: 440px;
    max-height: min(86vh, 720px);
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    padding: 32px 28px 28px;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    animation: authSlideUp 0.3s ease;
}

@keyframes authSlideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.auth-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.auth-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.auth-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.auth-dialog h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin: 0 0 22px;
    line-height: 1.5;
}

.auth-form {
    display: grid;
    gap: 14px;
}

.auth-phone-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.auth-country-code-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid var(--light-gray);
    border-radius: 12px;
    padding: 0 10px;
    background: #f8fafc;
    min-width: 100px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.auth-country-code-wrap:focus-within {
    border-color: var(--primary);
    background: var(--white);
}

.auth-flag {
    font-size: 20px;
    line-height: 1;
}

.auth-country-code-wrap input {
    border: none;
    background: transparent;
    width: 48px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    outline: none;
    padding: 0;
    text-align: center;
}

.auth-chevron {
    color: #94a3b8;
    flex-shrink: 0;
}

.auth-mobile-input {
    flex: 1;
    height: 48px;
    border: 1.5px solid var(--light-gray);
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    color: var(--dark);
    transition: all 0.2s;
    background: var(--white);
}

.auth-mobile-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 105, 181, 0.1);
}

.auth-mobile-input::placeholder {
    color: #94a3b8;
}

.auth-field-group {
    animation: authFieldIn 0.25s ease;
}

@keyframes authFieldIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.auth-input-icon-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid var(--light-gray);
    border-radius: 12px;
    padding: 0 14px;
    height: 48px;
    background: var(--white);
    transition: all 0.2s;
}

.auth-input-icon-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 105, 181, 0.1);
}

.auth-input-icon-wrap svg {
    flex-shrink: 0;
}

.auth-input-icon-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    padding: 0;
    height: 100%;
}

.auth-input-icon-wrap input::placeholder {
    color: #94a3b8;
}

.auth-submit {
    height: 48px;
    border: none;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 4px;
}

.auth-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(20, 105, 181, 0.25);
}

.auth-spinner {
    animation: authSpin 1s linear infinite;
}

@keyframes authSpin {
    100% { transform: rotate(360deg); }
}

.auth-resend-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.auth-countdown {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.auth-resend-btn {
    border: none;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.auth-resend-btn:hover:not(:disabled) {
    background: var(--secondary);
}

.auth-resend-btn:disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.auth-message {
    margin-top: 12px;
    font-size: 13px;
    color: #166534;
    min-height: 18px;
    text-align: center;
    padding: 0 4px;
}

.auth-message.error {
    color: #b91c1c;
}

.auth-footer-note {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.toast-container {
    position: fixed;
    right: 16px;
    bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2200;
}

.toast-item {
    min-width: 220px;
    max-width: 340px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    box-shadow: var(--shadow);
    animation: toastIn 0.2s ease;
}

.toast-item.info {
    background: #1d4ed8;
}

.toast-item.success {
    background: #166534;
}

.toast-item.error {
    background: #b91c1c;
}

.toast-item.hide {
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body.app-shell {
        padding-bottom: calc(78px + env(safe-area-inset-bottom));
    }

    .header-container {
        padding: 10px 14px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a:not(.user-btn):not(.help-btn) {
        display: none;
    }

    .nav-links .help-btn {
        display: none;
    }

    .nav-links .user-btn {
        padding: 8px 10px;
        font-size: 12px;
        white-space: nowrap;
    }

    .user-avatar-btn {
        padding: 4px 8px 4px 4px;
        gap: 4px;
    }

    .user-avatar-circle {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .user-avatar-name {
        display: none;
    }

    .user-dropdown {
        right: -10px;
        min-width: 180px;
    }

    .hero-slider {
        height: 220px;
        padding-bottom: 62px;
    }

    .info-ribbon {
        margin-top: 6px;
    }

    .info-ribbon-inner {
        justify-content: flex-start;
        gap: 6px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 8px;
    }

    .info-pill {
        white-space: nowrap;
        font-size: 10px;
        padding: 4px 8px;
    }

    .booking-card {
        border-radius: 14px;
        box-shadow: var(--shadow);
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .trust-item {
        font-size: 11px;
    }

    .results-section {
        padding: 14px;
    }

    .results-header {
        padding: 10px 12px;
    }

    .results-header h2 {
        font-size: 15px;
    }

    .results-count {
        font-size: 11px;
    }

    .cab-card {
        text-align: left;
        padding: 12px;
        gap: 10px;
    }

    .cab-price {
        border-left: none;
        border-top: 1px dashed #dce4ef;
        margin-top: 6px;
        padding-left: 0;
        padding-top: 8px;
        text-align: left;
    }

    .offers-section {
        padding: 30px 0;
    }

    .services-section {
        padding: 18px 0 14px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 12px;
    }

    .service-card h3 {
        font-size: 13px;
    }

    .section-header {
        margin-bottom: 14px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1600;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
        box-shadow: var(--shadow);
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(66px, 1fr);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
    }

    .mobile-nav-item {
        text-decoration: none;
        color: var(--gray);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 10px;
        font-weight: 600;
        border-radius: 10px;
        min-height: 50px;
        padding: 2px 4px;
        white-space: nowrap;
    }

    .mobile-nav-item i {
        font-size: 16px;
    }

    .mobile-nav-item.active {
        color: var(--primary);
        background: var(--secondary);
    }

    .footer {
        margin-top: 24px;
        padding-bottom: 92px;
    }

    .toast-container {
        right: 12px;
        left: 12px;
        bottom: calc(88px + env(safe-area-inset-bottom));
    }

    .toast-item {
        min-width: auto;
        max-width: 100%;
    }

    .calendar-sheet {
        align-items: flex-end;
        padding: 0;
    }

    .calendar-sheet-dialog {
        padding: 18px 14px calc(20px + env(safe-area-inset-bottom));
        min-height: 50vh;
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
        max-width: 100%;
    }

    .calendar-weekdays {
        margin-top: 20px;
    }

    .calendar-weekdays span {
        font-size: 13px;
    }

    .calendar-month-nav h4 {
        font-size: 20px;
    }
    
    .calendar-month-nav button {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .calendar-day-btn,
    .calendar-day-spacer {
        min-height: 40px;
        font-size: 16px;
    }

    .calendar-sheet-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
        top: 12px;
        right: 12px;
    }

    .form-group input,
    .form-group select,
    .airport-dd-input,
    .date-display-input {
        min-height: 50px;
        font-size: 14px;
    }

    .form-group .icon {
        bottom: 15px;
        font-size: 15px;
    }

    .search-btn {
        height: 50px;
        font-size: 14px;
    }

    .auth-dialog {
        max-width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 28px 20px 24px;
        max-height: 92vh;
    }

    .auth-modal {
        align-items: flex-end;
    }

    .auth-phone-row {
        flex-direction: row;
        gap: 10px;
    }

    .auth-country-code-wrap {
        min-width: auto;
        width: 104px;
    }
}

.map-pin-trigger {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #d6e0ee;
    background: #f8fbff;
    color: var(--primary);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 480px) {
    .calendar-sheet-dialog {
        padding: 16px 12px calc(18px + env(safe-area-inset-bottom));
        min-height: 56vh;
    }

    .calendar-weekdays span {
        font-size: 12px;
    }

    .calendar-day-btn,
    .calendar-day-spacer {
        min-height: 36px;
        font-size: 14px;
    }

    .calendar-time-row {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
    }

    .calendar-time-row label {
        min-width: 0;
    }

    .mobile-nav-item {
        min-height: 48px;
        font-size: 9px;
    }

    .mobile-nav-item i {
        font-size: 15px;
    }
}

.map-pin-trigger:hover {
    background: #edf5ff;
}

.map-pin-sheet {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1600;
}

.map-pin-sheet.open {
    display: block;
}

.map-pin-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 16, 32, 0.58);
}

.map-pin-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 760px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e3e8ef;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    padding: 14px;
}

.map-pin-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
}

.map-pin-head h4 {
    font-size: 16px;
    color: var(--primary-dark);
}

.map-pin-head p {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

.map-pin-map {
    margin-top: 10px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e3e8ef;
}

.map-pin-footer {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.map-pin-address {
    flex: 1;
    font-size: 12px;
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 9px 10px;
    min-height: 38px;
}

.map-pin-confirm {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.map-pin-current {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d7e3f1;
    background: #f8fbff;
    color: var(--primary);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.map-pin-current:hover {
    background: #edf5ff;
}

.map-pin-current:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.map-pin-current .pin-btn-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(20, 105, 181, 0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    display: none;
    animation: mapPinSpin 0.8s linear infinite;
}

.map-pin-current.loading .pin-btn-spinner {
    display: inline-block;
}

.map-pin-current.loading .pin-btn-text {
    opacity: 0.9;
}

@keyframes mapPinSpin {
    to { transform: rotate(360deg); }
}

.map-pin-confirm:hover {
    background: var(--primary-dark);
}

.booking-confirm-sheet {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1700;
}

.booking-confirm-sheet.open {
    display: block;
}

.booking-confirm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 16, 32, 0.58);
}

.booking-confirm-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 460px);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e3e8ef;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
    padding: 18px;
}

.booking-confirm-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: var(--gray);
    cursor: pointer;
}

.booking-confirm-dialog h4 {
    font-size: 18px;
    color: var(--primary-dark);
}

.booking-confirm-subtitle {
    margin-top: 4px;
    font-size: 13px;
    color: var(--gray);
}

.booking-confirm-summary {
    margin-top: 14px;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    overflow: hidden;
}

.booking-confirm-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 12px;
    border-bottom: 1px solid #edf2f7;
}

.booking-confirm-row:last-child {
    border-bottom: none;
}

.booking-confirm-row span {
    font-size: 12px;
    color: var(--gray);
}

.booking-confirm-row strong {
    font-size: 13px;
    color: var(--primary-dark);
    text-align: right;
}

.booking-confirm-row.amount-row strong {
    font-size: 17px;
}

.booking-confirm-field {
    margin-top: 14px;
}

.booking-confirm-field label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 6px;
    font-weight: 600;
}

.booking-confirm-field select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d6e0ee;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    color: var(--primary-dark);
    background: #fff;
}

.booking-confirm-btn {
    margin-top: 14px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    min-height: 46px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.booking-confirm-btn:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .booking-confirm-dialog {
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        transform: none;
        border-radius: 18px 18px 0 0;
        padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
    }
}