:root {
    /* Color Palette */
    --primary-color: #005C97; /* Gold/Champagne */
    --primary-hover: #004678;
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --text-light: #F8F9FA;
    --text-muted: #A0A0A0;
    --glass-bg: rgba(25, 25, 25, 0.6);
    --glass-border: rgba(0, 92, 151, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Glassmorphism utility */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-darker);
    box-shadow: 0 4px 15px rgba(0, 92, 151, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 92, 151, 0.4);
}

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

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

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: 1px;
}

.logo img {
    height: 40px;
    object-fit: contain;
}

.text-logo {
    display: none;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.6) 50%, rgba(5, 5, 5, 0.3) 100%);
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: #e0e0e0;
}

.hero-features i {
    color: var(--primary-color);
}

/* Booking Card */
.booking-card {
    flex: 0 0 450px;
    padding: 30px;
}

.booking-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.booking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.tab-btn {
    flex: 1;
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    border-color: var(--primary-color);
}

.booking-form .form-group {
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row .form-group {
    flex: 1;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.input-icon input, .input-icon select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.input-icon input:focus, .input-icon select:focus {
    border-color: var(--primary-color);
}

/* Route Inputs Container */
.route-inputs-container {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 10px 15px;
    margin-bottom: 25px;
}

.route-visual-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 20px;
    height: 90px;
    margin-right: 15px;
}

.route-visual-line .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-panel);
    z-index: 2;
}

.route-visual-line .dot.bottom {
    border-color: #A0A0A0; /* different color for destination */
}

.route-visual-line .line {
    flex: 1;
    width: 2px;
    background: repeating-linear-gradient(to bottom, var(--text-muted) 0, var(--text-muted) 4px, transparent 4px, transparent 8px);
    margin: 5px 0;
}

.route-fields {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.route-fields .form-group {
    margin-bottom: 0;
}

.route-fields .input-icon i {
    display: none;
}

.route-fields input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-radius: 0;
    padding: 16px 10px;
}

.route-fields input:focus {
    background: transparent;
    border-bottom-color: var(--primary-color);
    box-shadow: none;
}

.route-fields .form-group:last-child input {
    border-bottom: none;
}

.swap-btn {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 92, 151, 0.1);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.swap-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-50%) rotate(180deg);
}

.form-group {
    margin-bottom: 25px;
}

.input-icon select {
    appearance: none;
    cursor: pointer;
}

.input-icon input:focus, .input-icon select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 92, 151, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(0, 92, 151, 0.3);
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.features {
    background-color: var(--bg-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 92, 151, 0.2), rgba(0, 92, 151, 0.05));
    border: 1px solid rgba(0, 92, 151, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Search Summary */
.search-summary {
    padding: 20px 30px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-radius: 12px;
}

.summary-route {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-route i {
    color: var(--primary-color);
}

.summary-details {
    display: flex;
    gap: 25px;
    color: var(--text-muted);
}

.summary-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fleet Grid */
.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fleet-card {
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-card-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
}

.popular {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: var(--bg-darker);
    padding: 5px 40px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    transform: rotate(45deg);
    z-index: 10;
}

.fleet-image {
    width: 280px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.car-placeholder {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
}

.fleet-details {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-badge {
    font-size: 0.8rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.fleet-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.fleet-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.fleet-specs span {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 6px;
}

.fleet-specs i {
    color: var(--primary-color);
}

.fleet-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
    flex: 1;
}

.fleet-action {
    width: 220px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-left: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    height: 100%;
}

.fleet-price-container {
    text-align: right;
    width: 100%;
    margin-bottom: 15px;
}

.fleet-price-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.fleet-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.select-car-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.toggle-details-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
}

/* Collapsible Vehicle Detail Expander Styling */
.toggle-details-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}
.toggle-details-btn:hover, .toggle-details-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 70, 120, 0.05);
}
.fleet-details-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 0 30px;
}
.fleet-details-expanded.active {
    max-height: 500px;
    padding: 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.expanded-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.expanded-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 8px;
}
.expanded-col-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 70, 120, 0.15);
    padding-bottom: 8px;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.expanded-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.expanded-item-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.expanded-item-val {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-darker) 0%, #1a150b 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-about {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .booking-card {
        width: 100%;
        max-width: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-link {
        display: block;
        padding: 15px 24px;
        text-align: center;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .search-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .summary-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .fleet-card {
        flex-direction: column;
    }
    
    .fleet-card-main {
        flex-direction: column;
    }
    
    .fleet-image {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .fleet-action {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--glass-border);
        align-items: center;
        text-align: center;
        padding: 20px;
        height: auto;
    }
    
    .fleet-price-container {
        text-align: center;
    }
    .fleet-details-expanded.active {
        max-height: 1500px;
        padding: 20px 20px;
    }

    .expanded-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Modal Styles */
/* ===== MODAL - Premium Redesign ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.97), rgba(10, 10, 10, 0.99));
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 92, 151, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 92, 151, 0.05);
    max-height: 92vh;
    overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
    width: 4px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(0, 92, 151, 0.3);
    border-radius: 4px;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 92, 151, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    background: linear-gradient(135deg, #005C97, #F5E6A3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Step Indicator */
.modal-steps {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
    max-width: 280px;
}

.modal-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.35;
    transition: all 0.4s ease;
}

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

.modal-step.completed {
    opacity: 0.7;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid rgba(0, 92, 151, 0.3);
    color: var(--text-muted);
    transition: all 0.4s ease;
    font-family: var(--font-heading);
}

.modal-step.active .step-number {
    background: linear-gradient(135deg, #005C97, #004678);
    border-color: #005C97;
    color: #0A0A0A;
    box-shadow: 0 0 15px rgba(0, 92, 151, 0.3);
}

.modal-step.completed .step-number {
    background: rgba(0, 92, 151, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.step-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    font-weight: 500;
}

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

.step-connector {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 6px;
    margin-bottom: 18px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.step-connector.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #005C97, #004678);
    animation: connectorFill 0.5s ease forwards;
}

@keyframes connectorFill {
    from { width: 0; }
    to { width: 100%; }
}

.close-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.2);
}

.modal-body {
    padding: 28px;
}

.modal-step-desc {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

.modal-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(0, 92, 151, 0.08);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

/* ===== Checkout Layout ===== */
.checkout-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(0, 92, 151, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px 12px 0 0;
}

.checkout-step {
    padding: 28px 0;
    animation: modalSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-footer {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 92, 151, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

/* Glow Button */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 92, 151, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-glow:hover::after {
    opacity: 1;
}

/* Extras Grid - Premium */
.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.extra-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 18px 14px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.extra-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.35s ease;
}

.extra-card:hover {
    transform: translateY(-2px);
    background: rgba(0, 92, 151, 0.04);
}

.extra-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 92, 151, 0.4), rgba(0, 92, 151, 0.1));
}

.extra-card.selected {
    background: rgba(0, 92, 151, 0.08);
    border-color: transparent;
}

.extra-card.selected::before {
    background: linear-gradient(135deg, #005C97, rgba(0, 92, 151, 0.3));
}

.extra-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
    background: rgba(0, 92, 151, 0.15);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extra-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.extra-name {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.extra-price {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== Summary Layout - Premium ===== */
.summary-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
}

/* Section Heading */
.section-heading-modern {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 92, 151, 0.1);
}

.section-heading-modern i {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Passenger Form Column */
.pax-form-column {
    display: flex;
    flex-direction: column;
}

.pax-form-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group-modern label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrap > i {
    position: absolute;
    left: 14px;
    color: rgba(0, 92, 151, 0.5);
    font-size: 0.85rem;
    z-index: 1;
    pointer-events: none;
    transition: color 0.3s ease;
}

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

.form-control-modern {
    width: 100%;
    padding: 12px 14px 12px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px; /* Prevents zoom on iOS */
    font-family: var(--font-body);
    transition: all 0.3s ease;
    outline: none;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-control-modern:focus {
    border-color: rgba(0, 92, 151, 0.4);
    background: rgba(0, 92, 151, 0.03);
    box-shadow: 0 0 0 3px rgba(0, 92, 151, 0.08);
}

select.form-control-modern {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

select.form-control-modern option {
    background: #1a1a1a;
    color: var(--text-light);
}

.textarea-wrap {
    align-items: flex-start;
}

.textarea-wrap > i {
    top: 14px;
    position: absolute;
}

textarea.form-control-modern {
    resize: vertical;
    min-height: 52px;
}

/* Time Row */
.time-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px;
}

.time-field {
    flex: 1;
}

.time-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

input[type="time"].form-control-modern {
    padding-left: 40px;
}

/* Summary Details Box - Premium Glass */
.summary-details-box-modern {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(0, 92, 151, 0.12);
    position: relative;
    overflow: hidden;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.summary-details-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #005C97, transparent);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    gap: 10px;
}

.summary-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.summary-total {
    font-size: 1.15rem;
    font-weight: 700;
    color: #25D366;
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 92, 151, 0.2) !important;
    border-bottom: none !important;
    background: rgba(37, 211, 102, 0.04);
    margin: 12px -22px -22px -22px;
    padding: 16px 22px;
    border-radius: 0 0 16px 16px;
}

/* ===== Success State - Premium ===== */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(37, 211, 102, 0.05));
    border: 2px solid rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon-ring i {
    font-size: 2rem;
    color: #25D366;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #25D366, #7FE8A0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-desc {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
    font-size: 0.92rem;
}

@media (max-width: 768px) {
    .summary-layout {
        grid-template-columns: 1fr;
    }
    
    .modal-steps {
        display: none;
    }
    
    .modal-header {
        flex-wrap: nowrap;
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 15px 20px;
    }
    
    .time-row {
        flex-direction: column !important;
    }
    
    .summary-details-box-modern {
        position: static;
    }
    
    .modal-content {
        max-height: 100vh;
        height: 100%;
        border-radius: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
        padding: 15px 20px;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
        justify-content: center;
    }
    
    .extras-grid, .tours-grid {
        grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
        gap: 10px;
    }
}

/* --- Language Selector --- */
.lang-selector {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.lang-btn img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 140px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

.lang-dropdown.active {
    display: flex;
}

.lang-dropdown a {
    padding: 10px 15px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    transition: all var(--transition-fast);
}

.lang-dropdown a:hover {
    background: rgba(0, 92, 151, 0.1);
    color: var(--primary-color);
}

.lang-dropdown a img {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

/* --- Action Buttons (PDF & WhatsApp) --- */
.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-pdf {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-pdf:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- Popular Routes Section --- */
.popular-routes {
    background-color: var(--bg-darker);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.routes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.routes-header .header-left {
    max-width: 600px;
}

.routes-header .section-badge {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.routes-header .section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.routes-header .header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.view-all-link {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-all-link:hover {
    color: white;
    transform: translateX(3px);
}

.carousel-nav {
    display: flex;
    gap: 12px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* Carousel Layout */
.carousel-container {
    overflow: visible;
    margin: 0 -15px;
    padding: 10px 15px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Route Card */
.route-card {
    flex: 0 0 calc(25% - 22.5px); /* 4 items on widescreen */
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(25, 25, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.route-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 92, 151, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 92, 151, 0.1);
}

.route-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 120%; /* Portrait aspect ratio */
    overflow: hidden;
}

.route-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.route-card:hover .route-img-wrapper img {
    transform: scale(1.1);
}

.badge-premium {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 92, 151, 0.4);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.route-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.route-destination {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.route-card:hover .route-destination {
    color: var(--primary-color);
}

.route-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Explore Button styling to match requested layout */
.explore-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: white;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.explore-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.route-card:hover .explore-btn {
    color: var(--primary-color);
}

.route-card:hover .explore-icon-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
    transform: translateX(4px) rotate(-45deg);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .route-card {
        flex: 0 0 calc(33.333% - 20px); /* 3 cards */
    }
}

@media (max-width: 992px) {
    .route-card {
        flex: 0 0 calc(50% - 15px); /* 2 cards */
    }
    .routes-header .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .popular-routes {
        padding: 70px 0;
    }
    .routes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 35px;
    }
    .routes-header .header-right {
        width: 100%;
        justify-content: space-between;
    }
    .carousel-container {
        margin: 0 -10px;
        padding: 5px 10px;
    }
    .carousel-track {
        gap: 20px;
        scroll-snap-type: x mandatory;
        /* Enable browser-native kinetic scrolling on mobile */
        -webkit-overflow-scrolling: touch;
    }
    .route-card {
        flex: 0 0 280px; /* fixed size card on mobile for smooth horizontal scroll */
    }
    .route-img-wrapper {
        padding-top: 100%;
    }
}

/* --- Form Highlight Golden Glow Animation --- */
@keyframes golden-glow {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 92, 151, 0.7);
        border-color: rgba(0, 92, 151, 0.8);
    }
    50% {
        box-shadow: 0 0 35px 12px rgba(0, 92, 151, 0.45);
        border-color: rgba(0, 92, 151, 1);
        transform: scale(1.015);
    }
    100% {
        box-shadow: 0 0 0 0px rgba(0, 92, 151, 0);
        border-color: rgba(0, 92, 151, 0.2);
    }
}

.booking-card.highlight {
    animation: golden-glow 1.5s cubic-bezier(0.25, 1, 0.5, 1) 2;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

/* --- Premium Stats Section --- */
.stats-section {
    padding: 60px 0;
    position: relative;
    z-index: 10;
    margin-top: -30px;
    background: transparent;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-card {
    text-align: center;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 70, 120, 0.08), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.stats-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 70, 120, 0.4);
    box-shadow: 0 12px 30px rgba(0, 70, 120, 0.15);
}

.stats-icon-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 70, 120, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 70, 120, 0.2);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.stats-card:hover .stats-icon-container {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 70, 120, 0.4);
}

.stats-icon-container i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.stats-card:hover .stats-icon-container i {
    color: var(--bg-darker);
    transform: scale(1.1);
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    z-index: 2;
    letter-spacing: -1px;
}

.stats-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 2px;
    z-index: 2;
}

/* Responsive stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .stats-card {
        padding: 30px 20px;
    }
}

/* Custom Suggestions Dropdown Styling */
.suggestions-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 92, 151, 0.25);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    max-height: 320px;
    overflow-y: auto;
    z-index: 1050;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
}

.suggestions-dropdown.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.suggestions-group {
    padding: 4px 0;
}

.suggestions-group:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.suggestions-group .group-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    padding: 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    opacity: 0.85;
}

.suggestion-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 0.9rem;
    color: #e0e0e0;
    transition: all 0.15s ease;
    gap: 12px;
}

.suggestion-item:hover, .suggestion-item.active {
    background: rgba(0, 92, 151, 0.12);
    color: #fff;
    padding-left: 20px;
}

.suggestion-item .item-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.suggestion-item .item-badge {
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    transition: all 0.15s ease;
}

.suggestion-item:hover .item-badge, .suggestion-item.active .item-badge {
    background: rgba(0, 92, 151, 0.2);
    color: var(--primary-color);
    border-color: rgba(0, 92, 151, 0.3);
}

.suggestions-no-results {
    padding: 20px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggestions-no-results i {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
    color: var(--primary-color);
    opacity: 0.7;
}

/* Custom Scrollbar for suggestions */
.suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}

.suggestions-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0 12px 12px 0;
}

.suggestions-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 92, 151, 0.3);
    border-radius: 3px;
}

.suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 92, 151, 0.5);
}

/* Premium Passenger Stepper CSS */
.passenger-stepper-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    height: 52px; /* Matches standard buttons height */
    overflow: hidden;
    transition: all var(--transition-fast, 0.2s);
    width: 100%;
}

.passenger-stepper-container:hover {
    border-color: rgba(0, 92, 151, 0.3);
}

.passenger-stepper-container:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 70, 120, 0.15);
}

.stepper-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    width: 45px;
    height: 100%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.stepper-btn:hover {
    background: rgba(0, 92, 151, 0.12);
    color: white;
}

.stepper-btn:active {
    transform: scale(0.9);
}

.stepper-display {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 10px;
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stepper-icon {
    position: absolute;
    left: 12px;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.stepper-display input[type="number"] {
    width: 35px;
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 0;
    margin-left: 15px;
    outline: none;
    -moz-appearance: textfield;
}

.stepper-display input[type="number"]::-webkit-outer-spin-button,
.stepper-display input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.stepper-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-left: 5px;
    font-weight: 500;
    pointer-events: none;
}

/* ==========================================
   --- PREMIUM GLASSMORPHIC FLATPICKR STYLING ---
   ========================================== */
.flatpickr-calendar {
    background: rgba(10, 10, 10, 0.88) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 70, 120, 0.3) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 70, 120, 0.15) !important;
    border-radius: 16px !important;
    font-family: 'Outfit', sans-serif !important;
    color: #ffffff !important;
    padding: 10px !important;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
    border-bottom-color: rgba(0, 70, 120, 0.3) !important;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
    border-top-color: rgba(0, 70, 120, 0.3) !important;
}

.flatpickr-months {
    padding: 5px 0 !important;
}

.flatpickr-current-month {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
}

.flatpickr-month {
    color: #ffffff !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
    border-bottom-color: var(--primary-color) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
    border-top-color: var(--primary-color) !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: var(--primary-color) !important;
    fill: var(--primary-color) !important;
    padding: 10px !important;
}

.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
    color: #ffffff !important;
    background: rgba(0, 70, 120, 0.2) !important;
    border-radius: 50% !important;
}

span.flatpickr-weekday {
    color: rgba(255, 255, 255, 0.6) !important;
    font-weight: 500 !important;
}

.flatpickr-day {
    color: rgba(255, 255, 255, 0.85) !important;
    border-radius: 8px !important;
    border: 1px solid transparent !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
    background: rgba(0, 70, 120, 0.2) !important;
    color: #ffffff !important;
    border-color: rgba(0, 70, 120, 0.4) !important;
}

.flatpickr-day.today {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.flatpickr-day.today:hover {
    background: var(--primary-color) !important;
    color: #0A0A0A !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #0A0A0A !important;
    font-weight: 700 !important;
    box-shadow: 0 0 15px rgba(0, 70, 120, 0.45) !important;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
    color: rgba(255, 255, 255, 0.15) !important;
    background: transparent !important;
    border-color: transparent !important;
}

/* GTranslate Custom Tweaks */
.gtranslate_wrapper {
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
}
.gtranslate_wrapper > div {
    border-radius: 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
}
.gtranslate_wrapper > div:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
}

/* Hide Google Translate Top Banner and Tooltips */
body {
    top: 0px !important; 
    position: static !important; 
}
.skiptranslate iframe,
.skiptranslate.goog-te-banner-frame {
    display: none !important;
}
#goog-gt-tt, .goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Tours & Experiences Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.tour-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tour-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

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

.tour-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    z-index: 2;
    transition: background 0.35s ease;
}

.tour-card:hover::before {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.3) 60%, transparent 100%);
}

.tour-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 92, 151, 0.3);
}

.tour-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: #000;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    z-index: 3;
}

.tour-info {
    position: relative;
    z-index: 3;
    padding: 15px;
}

.tour-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.tour-price {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}


/* Hide Select Button if not in booking mode */
#fleet:not(.booking-mode) .select-car-btn { display: none !important; }


/* Vehicle Image Slider */
.vehicle-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
}

.vehicle-slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.vehicle-slider-slide {
    flex: 0 0 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vehicle-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

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

.vehicle-slider-btn.prev {
    left: 10px;
}

.vehicle-slider-btn.next {
    right: 10px;
}

.vehicle-slider-dots {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.vehicle-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s;
}

.vehicle-slider-dot.active {
    background: var(--primary-color);
}


/* Very small mobile screen optimizations */
@media (max-width: 400px) {
    .route-inputs-container {
        padding: 8px 10px;
    }
    .route-visual-line {
        margin-right: 8px;
    }
    .route-fields input {
        padding: 8px 10px 8px 30px; /* Reduce padding but keep icon space */
    }
}
