:root {
    /* Color Palette */
    --primary-blue: #005A9C;
    --secondary-blue: #003366;
    --accent-gold: #FFD700;
    --gold-hover: #E6C200;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --section-bg: #F8F9FA;
    --card-bg: #FFFFFF;
    --border-color: #EEEEEE;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;

    /* Typography */
    --fs-h1: clamp(2.5rem, 8vw, 4rem);
    --fs-h2: clamp(2rem, 5vw, 3rem);
    --fs-h3: clamp(1.4rem, 4vw, 1.8rem);
    --fs-body: clamp(1rem, 0.5vw + 0.8rem, 1.1rem);
    --fs-subtitle: clamp(0.75rem, 2vw, 0.9rem);
}


/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: var(--fs-body);
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 800;
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 800;
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.subtitle {
    display: block;
    color: var(--primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    font-size: var(--fs-subtitle);
}

section {
    padding: clamp(60px, 10vw, 100px) 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 10px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--primary-blue);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-blue);
    cursor: pointer;
    transition: var(--transition-fast);
}

.menu-toggle:hover {
    color: var(--primary-blue);
}


/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.lang-dropbtn:hover {
    background: #fff;
    border-color: var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.lang-dropbtn .fi {
    font-size: 1.1rem;
    border-radius: 2px;
}

.lang-dropbtn i {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-dropbtn i {
    transform: rotate(180deg);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    background-color: var(--white);
    min-width: 170px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.lang-dropdown-content button {
    width: 100%;
    border: none;
    background: transparent;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.2s ease;
}

.lang-dropdown-content button:hover {
    background-color: #f0f7ff;
    color: var(--primary-blue);
    padding-left: 22px;
}

.lang-dropdown-content button.active {
    background-color: rgba(0, 90, 156, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
}

.lang-dropdown-content button .fi {
    font-size: 1.1rem;
    border-radius: 2px;
}

.lang-dropdown-content button span {
    flex: 1;
}

.lang-dropdown.active .lang-dropdown-content {
    display: block;
    animation: fadeInSlide 0.3s ease;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .lang-dropdown-content {
        position: fixed;
        top: auto;
        bottom: 80px;
        right: 20px;
        left: 20px;
        min-width: 0;
        border-radius: 20px;
    }
}

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.btn-whatsapp-nav:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-whatsapp-nav span {
        display: none;
    }

    .btn-whatsapp-nav {
        padding: 10px;
        width: 40px;
        height: 40px;
        justify-content: center;
        border-radius: 50%;
    }
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich Gold Gradient Overlay */
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.4)),
        url('https://images.unsplash.com/photo-1571679659147-3bc3b7abb209?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: var(--fs-h1);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Specific override for How It Works title */
.hiw-hero-content h1 {
    font-size: 0.7rem;
}

.hero-content p {
    font-size: var(--fs-body);
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    gap: 20px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge i {
    color: var(--accent-gold);
}

/* Booking Form */



.glass-panel {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}


.booking-container form h2 {
    margin-bottom: 30px;
    font-size: 1.8rem;
    text-align: center;
    color: #FFFFFF;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-gold);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #0088dd, #0066bb);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition-medium);
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0066bb, #0088dd);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 90, 156, 0.3);
}

[data-theme="dark"] .btn-submit {
    color: #003366;
}

/* Services */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--card-bg);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--section-bg);
    color: var(--primary-blue);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.service-card:hover .service-icon {
    background: var(--primary-blue);
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Fleet */
.fleet {
    background: var(--section-bg);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.fleet-item {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.fleet-image {
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.fleet-item:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.fleet-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.fleet-specs {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.fleet-specs li {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-blue);
}

.fleet-specs i {
    color: var(--primary-blue);
    margin-right: 5px;
}

/* About Us */
.about-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 0 var(--accent-gold);
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.stat-item .label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Prices Section */
/* Prices Section */
.prices-table-container {
    overflow-y: auto;
    max-height: 500px;
    /* Fixed height for scroll */
    margin-top: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.prices-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--card-bg);
}

.prices-table th,
.prices-table td {
    padding: 12px 20px;
    /* Reduced padding */
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
    font-size: 0.95rem;
    /* Slightly smaller font */
}

.prices-table th {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.prices-table td:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.prices-table .price-val {
    font-weight: 700;
    color: var(--primary-blue);
}

/* Zebra striping for better readability in compact list */
.prices-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.prices-table tr:hover td {
    background-color: rgba(0, 90, 156, 0.08);
}

/* Scrollbar styling for the table container */
.prices-table-container::-webkit-scrollbar {
    width: 6px;
}

.prices-table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.prices-table-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.prices-table-container::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.prices-table td:first-child {
    font-weight: 600;
    color: var(--secondary-blue);
}

.prices-table .price-val {
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 1.1rem;
}

/* Dark mode adjustments for table */
[data-theme="dark"] .prices-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.05);
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--secondary-blue);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--section-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-blue);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 15px;
}

/* Trust Logos */
.trust-logos {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
}

.logos-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logos-flex i {
    font-size: 2.8rem;
    transition: transform 0.3s ease;
}

.logos-flex i:hover {
    transform: scale(1.1);
}

.logos-flex .fa-cc-visa {
    color: #1A1F71;
}

.logos-flex .fa-cc-mastercard {
    color: #EB001B;
}

.logos-flex .fa-cc-apple-pay {
    color: #000;
}

[data-theme="dark"] .logos-flex .fa-cc-apple-pay {
    color: #fff;
}

.logos-flex .fa-google-pay {
    color: #4285F4;
}

.logos-flex .fa-shield-alt {
    color: #28a745;
}

/* Footer */
footer {
    background: #111;
    color: #CCC;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-info .logo-text {
    color: #FFFFFF;
    margin-bottom: 20px;
    display: block;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-blue);
}

.footer-nav h4,
.footer-contact h4 {
    color: #FFFFFF;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-nav ul li,
.footer-contact ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--primary-blue);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 75px;
    background: var(--white);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Chauffeur Service */
.chauffeur-service {
    background: var(--section-bg);
}

.chauffeur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.chauffeur-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.chauffeur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
}

.chauffeur-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-blue);
}

.chauffeur-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.chauffeur-duration {
    display: inline-block;
    background: rgba(0, 90, 156, 0.1);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.chauffeur-features {
    text-align: left;
    margin-top: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.chauffeur-features li {
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.chauffeur-features i {
    color: var(--accent-gold);
}


/* Booking Widget */
.booking-widget {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    /* overflow: hidden; Removed to allow dropdowns if needed */
    width: 100%;
    position: relative;
    z-index: 20;
}

.booking-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.booking-header .step {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.booking-header .step.active {
    color: var(--primary-blue);
}

.booking-form {
    padding: 25px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group.half {
    width: 50%;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-icon input,
.input-icon select {
    width: 100%;
    padding: 12px 35px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    background: #fdfdfd;
    outline: none;
    transition: var(--transition-fast);
    font-family: 'Montserrat', sans-serif;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.input-icon {
    position: relative;
}

.input-icon .fa-chevron-down {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.8rem;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.input-icon.open .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 12px 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: none;
    padding: 5px 0;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
    padding-left: 25px;
}

.search-result-item .item-price {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.input-icon input:focus,
.input-icon select:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

.btn-book {
    width: 100%;
    background: linear-gradient(135deg, #0088dd, #0066bb);
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-book:hover {
    background: linear-gradient(135deg, #0066bb, #0088dd);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 90, 156, 0.2);
}

/* Multi-step Booking Form */
.booking-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.booking-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vehicle-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.vehicle-card {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.vehicle-card:hover {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.vehicle-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 4px;
}

.vehicle-card h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.vehicle-card p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.btn-back {
    background: none;
    border: none;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.9rem;
}

.btn-back:hover {
    color: var(--primary-blue);
}

.booking-success {
    text-align: center;
    padding: 20px 0;
}

.booking-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.booking-success h3 {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: var(--fs-h1);
    }

    .hero-badges {
        justify-content: center;
    }

    .about-flex {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: 0.4s ease-in-out;
        z-index: 2000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: var(--fs-h1);
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .form-group.half {
        width: 100% !important;
    }

    .hero {
        height: auto !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .prices {
        padding-top: 40px !important;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .section-header .subtitle {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    /* Compact Premium Services & Fleet */
    .chauffeur-grid,
    .services-grid,
    .fleet-grid {
        gap: 12px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }

    .chauffeur-card,
    .service-card,
    .fleet-item {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .fleet-image {
        height: 150px;
    }

    .fleet-content {
        padding: 15px;
    }

    .fleet-content h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .fleet-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .fleet-specs {
        padding-top: 12px;
        gap: 10px;
    }

    .fleet-specs li {
        font-size: 0.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .chauffeur-card h3,
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .chauffeur-price {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .chauffeur-duration {
        padding: 4px 12px;
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .chauffeur-features {
        padding-top: 15px;
        margin-top: 15px;
    }

    .chauffeur-features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .chauffeur-card .btn-cta-inline,
    .service-card .btn-cta-inline,
    .fleet-item .btn-cta-inline {
        padding: 8px 12px;
        font-size: 0.75rem;
        margin-top: auto;
    }
}

/* Price Calculator Panel */
.price-calculator-panel {
    background: #fff;
    border: none;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.price-info span:first-child {
    font-size: 1.1rem;
    color: #444;
    font-weight: 600;
}

#calculated-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}

.price-hint {
    font-size: 0.85rem;
    color: var(--text-light);
    opacity: 0.8;
}

.form-row.trio {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .form-row.trio {
        grid-template-columns: 1fr;
    }
}

/* Tolls & Prices Accordion (Unified Style) */
.tolls-accordion {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.tolls-accordion:hover {
    border-color: var(--primary-blue);
}

.tolls-header {
    width: 100%;
    padding: 14px 15px;
    background: #fff;
    color: var(--secondary-blue);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.tolls-header:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

.tolls-accordion.active .tolls-header {
    border-bottom-color: #eee;
    background: #f8f9fa;
}

.tolls-accordion.active .tolls-header i {
    transform: rotate(180deg);
    color: var(--primary-blue);
}

.tolls-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    padding: 0 15px;
}

.tolls-accordion.active .tolls-content {
    max-height: 500px;
    /* Adjusted for table view */
    padding: 15px;
    overflow-y: auto;
}

/* Pricing Table specifically */
.prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    font-size: 0.9rem;
}

.prices-table th {
    background: var(--primary-blue);
    color: #fff;
    text-align: left;
    padding: 10px 12px;
    font-weight: 600;
}

.prices-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
}

.prices-table tr:nth-child(even) {
    background: #f9fbfc;
}

.prices-table tr:last-child td {
    border-bottom: none;
}

.prices-table .price-val {
    font-weight: 700;
    color: var(--primary-blue);
    text-align: right;
}

.tolls-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.toll-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toll-item:hover {
    border-color: var(--primary);
    background: #fff;
}

.toll-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.toll-item span {
    font-size: 0.95rem;
    color: #000;
    font-weight: 600;
}

.toll-item .toll-price {
    margin-left: auto;
    color: var(--primary-blue);
    font-weight: 800;
}

/* How it Works (Hero Integrated - Blended) */
.hiw-hero-content {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
}

.hiw-hero-content h1 {
    font-size: var(--fs-h1);
    margin-bottom: 25px;
    color: #fff;
    text-align: left;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hiw-image-mini {
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    max-width: 400px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hiw-image-mini img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hiw-image-mini:hover img {
    transform: scale(1.08);
}

.hiw-steps {
    list-style: none;
    padding: 0;
}

.hiw-steps li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.hiw-steps li:last-child {
    margin-bottom: 0;
}

.step-icon {
    color: var(--primary);
    font-size: 1.2rem;
    padding-top: 2px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.step-text {
    font-size: 1.1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.step-text strong {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr !important;
        gap: 50px;
        padding: 0 20px;
    }

    .hiw-hero-content {
        padding: 0;
        /* order property removed to restore natural DOM order */
    }

    .hiw-hero-content h1 {
        font-size: var(--fs-h1);
    }

    .hiw-image-mini {
        max-width: 100%;
    }
}

/* Inline CTA Buttons */
.btn-cta-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    margin-top: auto;
    background: linear-gradient(135deg, #0088dd, #0066bb);
    border: none;
    color: #fff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-inline:hover {
    background: linear-gradient(135deg, #0066bb, #0088dd);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 90, 156, 0.3);
    transform: translateY(-2px);
}

.chauffeur-card .btn-cta-inline {
    width: 100%;
}

.chauffeur-card .btn-cta-inline:hover {
    background: linear-gradient(135deg, #0066bb, #0088dd);
    color: #fff;
}