:root {
    /* Premium Color Palette */
    --primary-blue: #004a80;
    --secondary-blue: #001f3f;
    --accent-gold: #d4af37;
    --gold-hover: #b8860b;
    --text-dark: #121212;
    /* Darker for better contrast */
    --text-light: #444444;
    /* Darker than #555 to improve readability */
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --section-bg: #fdfdfd;
    --card-bg: #ffffff;
    --border-color: #e5e7eb;
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography Scale - Slightly increased for better readability */
    --fs-h1: clamp(2.6rem, 8vw, 4.8rem);
    --fs-h2: clamp(2.1rem, 5vw, 3.4rem);
    --fs-h3: clamp(1.5rem, 4vw, 2.1rem);
    --fs-body: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
    --fs-subtitle: clamp(0.9rem, 2vw, 1.05rem);

    /* Animation Tokens */
    --reveal-duration: 0.8s;
    --reveal-distance: 40px;
}

/* Manual Dark Mode - Refined Premium Palette */
body.dark-mode {
    --white: #0a0e14;
    --section-bg: #0f141a;
    --card-bg: #1a1f26;
    --text-dark: #f8fafc;
    --text-light: #94a3b8;
    --border-color: #2d333b;
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.7);
    --primary-blue: #60a5fa;
    /* Re-brightened for better contrast */
    --secondary-blue: #e2e8f0;
    /* Crucial: lighter blue for headings and buttons in dark mode */
}

/* Specific component overrides for Dark Mode */
body.dark-mode .navbar {
    background: rgba(10, 14, 20, 0.95);
    border-bottom: 1px solid var(--border-color);
}

body.dark-mode .glass-panel,
body.dark-mode .cta-card,
body.dark-mode .faq-item,
body.dark-mode .success-card,
body.dark-mode .fleet-item,
body.dark-mode .service-card,
body.dark-mode .booking-widget,
body.dark-mode .tolls-accordion,
body.dark-mode .price-calculator-panel {
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
    color: var(--text-dark);
}

body.dark-mode .tolls-header {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

body.dark-mode .tolls-content {
    background: var(--card-bg);
}

body.dark-mode .prices-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .prices-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

body.dark-mode .toll-item {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .toll-item span {
    color: #fff;
}

body.dark-mode .booking-header {
    background: #0a0e14 !important;
    border-bottom: 1px solid var(--border-color);
}

body.dark-mode .booking-header .step:not(.active) {
    color: #4b5563;
}

body.dark-mode .form-group input,
body.dark-mode .form-group select {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: #374151 !important;
    color: #fff !important;
}

body.dark-mode .lang-dropbtn {
    background: #1a1f26;
    color: #f8fafc;
    border-color: #374151;
}

body.dark-mode .lang-dropdown-content {
    background: #1a1f26;
    border-color: #374151;
}

body.dark-mode .lang-dropdown-content button {
    color: #f8fafc;
}

body.dark-mode .lang-dropdown-content button:hover {
    background-color: #2d333b;
}

body.dark-mode .hero-bg {
    background: linear-gradient(rgba(10, 14, 20, 0.85), rgba(10, 14, 20, 0.65)),
        url('https://images.unsplash.com/photo-1571679659147-3bc3b7abb209?auto=format&fit=crop&q=80&w=1920');
}

body.dark-mode .cta-icon {
    background: #2d333b;
    color: #60a5fa;
}

body.dark-mode .btn-review {
    background: #3b82f6;
    color: #fff;
}

body.dark-mode #calculated-price {
    color: #fff;
}

body.dark-mode .price-info span:first-child {
    color: #9ca3af;
}

body.dark-mode .toll-price {
    color: #60a5fa;
}

body.dark-mode .toll-note {
    color: #94a3b8 !important;
}

body.dark-mode .weather-widget {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .amenity-pill {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

body.dark-mode .progress-steps .step.active .step-num {
    background: var(--primary-blue);
    color: #fff;
}

body.dark-mode .progress-steps .step-num {
    background: #2d333b;
    color: #94a3b8;
}

body.dark-mode .section-header h2 {
    color: var(--secondary-blue);
}

body.dark-mode .faq-question {
    color: var(--secondary-blue);
}

/* Theme Toggle Button - Enhanced Visibility */
.theme-toggle {
    background: rgba(0, 74, 128, 0.08);
    border: 1px solid rgba(0, 74, 128, 0.1);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 15px;
    position: relative;
    z-index: 100;
}

.theme-toggle:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: rotate(30deg);
}

body.dark-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--accent-gold);
}

body.dark-mode .theme-toggle:hover {
    background: var(--accent-gold);
    color: #111827;
}

/* Fix for mobile menu toggle visibility in dark mode */
body.dark-mode .menu-toggle {
    color: #fff;
}



/* 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);
    width: 100%;
}

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;
}

.booking-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    z-index: 10;
    scroll-margin-top: 100px;
    /* Space for fixed header */
}

.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);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition: all var(--reveal-duration) cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

section {
    padding: clamp(60px, 10vw, 100px) 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.navbar.scrolled {
    padding: 12px 0;
    background: var(--white);
    box-shadow: var(--shadow-premium);
}

.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: 180px;
    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 {
        right: 0;
        top: calc(100% + 10px);
        min-width: 200px;
    }
}

.btn-whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .btn-whatsapp-nav span {
        display: none;
    }

    .btn-whatsapp-nav {
        padding: 12px;
        width: 44px;
        height: 44px;
        justify-content: center;
        border-radius: 50%;
    }
}



/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    height: auto;
    padding: 100px 0 60px;
    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 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Visible title in the hero section */
.hiw-hero-content h2 {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Improved contrast for white text on image */
}

.hero-subtitle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.hiw-image-mini {
    width: 100%;
    max-width: 500px;
    margin: 15px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hiw-image-mini img {
    width: 100%;
    height: auto;
    display: block;
}

.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(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    transition: var(--transition-medium);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 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;
    flex: 1;
    /* Pushes the button to the bottom */
    margin-bottom: 20px;
}

/* 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);
    display: flex;
    flex-direction: column;
    /* Ensure internal content can be pushed down */
    height: 100%;
}

.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;
    text-align: center;
    /* Center all text */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    /* Take up all available space to push button down */
}

.fleet-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-blue);
    margin-bottom: 15px;
    font-weight: 800;
}

.fleet-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fleet-specs {
    display: flex;
    justify-content: center;
    /* Center specs */
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    margin-bottom: 25px;
    border-top: 1px solid var(--border-color);
    width: 100%;
}

.fleet-specs li {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-blue);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 74, 128, 0.04);
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.fleet-specs li:hover {
    background: var(--primary-blue);
    color: white;
}

.fleet-specs i {
    color: var(--accent-gold);
    font-size: 1.1rem;
}

.fleet-specs li:hover i {
    color: white;
}

/* Social Proof Badge */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--card-bg);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 25px 0 35px;
    border: 1px solid var(--border-color);
}

.stars-container {
    color: #ffb400;
    font-size: 1.1rem;
}

.reviews-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.fleet-item .btn-cta-inline {
    width: 100%;
    margin-top: auto;
}

/* 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.15rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.8;
}

.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);
}

/* Success Message Premium Styling */
.success-card {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 24px;
    animation: slideUpFade 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
}

.success-card h3 {
    color: var(--secondary-blue);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.success-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 450px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 320px;
    margin: 0 auto;
}

.btn-cal {
    background: #4285F4;
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.25);
}

.btn-cal:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
}

.btn-new-booking {
    background: var(--primary-blue);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 74, 128, 0.2);
}

.btn-new-booking:hover {
    background: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 31, 63, 0.3);
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 20px;
    }

    .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: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: rgba(0, 74, 128, 0.08);
        border-radius: 12px;
        font-size: 1.4rem;
        cursor: pointer;
        transition: var(--transition-fast);
        margin-left: 10px;
    }

    .menu-toggle:hover {
        background: rgba(0, 74, 128, 0.15);
        color: var(--primary-blue);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 31, 63, 0.98);
        /* Deep Navy */
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 1000;
        padding: 40px;
    }

    .nav-links.active {
        right: 0;
    }

    .logo-text {
        font-size: 1.1rem;
        line-height: 1.1;
    }

    .btn-whatsapp-nav {
        display: none;
    }

    .nav-actions {
        gap: 12px;
    }

    .weather-widget.nav-weather {
        border-right: none;
        padding-right: 0;
    }

    @media (max-width: 480px) {
        .logo-text {
            font-size: 0.95rem;
        }

        .nav-weather .weather-city {
            display: none;
        }

        .nav-actions {
            gap: 8px;
        }
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered link animations */
    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.5s;
    }

    .nav-links a {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: 'Outfit', sans-serif;
        position: relative;
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        width: 0;
        height: 3px;
        background: var(--accent-gold);
        transition: var(--transition-fast);
        transform: translateX(-50%);
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
        width: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: var(--fs-h1);
    }

    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .form-group.half {
        width: 100% !important;
    }

    .hero {
        height: auto !important;
        padding-top: 140px !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.95rem;
        line-height: 1.6;
    }

    .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;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-info,
    .footer-nav,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav ul li,
    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        margin-top: 80px;
        /* Increased top margin for better spacing from navbar */
    }

    .hero-content h1 {
        font-size: var(--fs-h1);
    }

    .form-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .form-group.half {
        width: 100% !important;
    }

    .hero {
        height: auto !important;
        padding-top: 140px !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.95rem;
        line-height: 1.6;
    }

    .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;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .footer-info,
    .footer-nav,
    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav ul li,
    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }

    .logos-flex i {
        font-size: 2.2rem;
    }
}

/* 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;
    }
}

/* Weather Widget - Concierge Style */
.weather-widget {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

/* Nav specific weather placement */
.weather-widget.nav-weather {
    background: transparent;
    backdrop-filter: none;
    border: none;
    margin-bottom: 0;
    padding: 0;
    animation: none;
    gap: 8px;
    border-right: 1px solid var(--border-color);
    padding-right: 15px;
}

body.dark-mode .weather-widget.nav-weather {
    border-right-color: rgba(255, 255, 255, 0.1);
}

.weather-icon {
    font-size: 1.4rem;
    color: #ffce00;
}

.nav-weather .weather-icon {
    font-size: 1.2rem;
}

.weather-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.weather-city {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
}

.weather-temp {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--secondary-blue);
}

body.dark-mode .weather-temp {
    color: #fff;
}

@media (max-width: 480px) {
    .nav-weather .weather-city {
        display: none;
    }
}

/* Form Progress Bar */
.progress-container {
    padding: 20px 25px 0;
    background: #fff;
}

body.dark-mode .progress-container {
    background: transparent;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 25px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 1;
}

body.dark-mode .progress-steps::before {
    background: #374151;
}

.progress-steps .step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.progress-steps .step-num {
    width: 30px;
    height: 30px;
    background: #eee;
    color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-steps .step-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.5px;
}

.progress-steps .step.active .step-num {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 74, 128, 0.3);
}

.progress-steps .step.active .step-text {
    color: var(--primary-blue);
}

/* Fleet Amenities */
.fleet-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0 20px;
}

.amenity-pill {
    background: #f0f7ff;
    color: var(--primary-blue);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.amenity-pill i {
    font-size: 0.85rem;
}

.amenity-pill:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.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;
}

.hiw-hero-content {
    background: transparent;
    padding: 0;
    border: none;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    /* Further increased margin for elite spacing */
    padding-top: 30px;
}

.hiw-hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    /* Slightly smaller */
    margin-bottom: 35px;
    /* Slightly tighter spacing as requested */
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    max-width: 420px;
    /* Limit width of title */
    margin-left: auto;
    margin-right: auto;
}

.hiw-image-mini {
    margin: 0 auto 40px auto;
    border-radius: 16px;
    overflow: hidden;
    max-width: 420px;
    /* Match title width */
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.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;
    text-align: left;
    /* Mantener texto a la izquierda dentro del bloque centrado */
    max-width: 480px;
    margin: 0 auto;
}

.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: 40px;
        padding: 0 24px;
    }

    .hiw-hero-content {
        margin-top: 0;
        /* Remove negative margin on mobile to avoid cutting off title */
    }

    .hiw-hero-content h1 {
        font-size: clamp(1.6rem, 8vw, 2rem);
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hiw-image-mini {
        max-width: 280px;
        margin-bottom: 30px;
    }
}

/* 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;
}

/* FAQ Section Styling */
.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-medium);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 24px;
    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.1rem;
    text-align: left;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 74, 128, 0.02);
}

.faq-answer-content {
    padding: 24px;
    color: var(--text-light);
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Premium Fixed Cookie Bar */
#cookie-notice.cookie-notice {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    padding: 14px 0 !important;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1) !important;
    z-index: 999999 !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: none;
}

#cookie-notice .cookie-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 30px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 40px !important;
}

#cookie-notice .cookie-text p {
    font-size: 0.9rem !important;
    color: var(--text-dark) !important;
    margin: 0 !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
}

#cookie-notice .cookie-actions button {
    background: var(--secondary-blue) !important;
    color: white !important;
    border: none !important;
    padding: 10px 28px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    white-space: nowrap !important;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2) !important;
}

#cookie-notice .cookie-actions button:hover {
    background: var(--primary-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 74, 128, 0.3) !important;
}

@media (max-width: 768px) {
    #cookie-notice.cookie-notice {
        padding: 20px 0 !important;
    }

    #cookie-notice .cookie-content {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
        padding: 0 20px !important;
    }

    #cookie-notice .cookie-text p {
        font-size: 0.85rem !important;
    }

    #cookie-notice .cookie-actions {
        width: 100% !important;
    }

    #cookie-notice .cookie-actions button {
        width: 100% !important;
    }
}

/* Review CTA Styling - Premium & Centered */
.reviews-cta {
    margin: 60px auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.cta-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 950px;
    width: 100%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 74, 128, 0.12);
    border-color: var(--primary-blue);
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.22rem;
    color: #4285F4;
    flex-shrink: 0;
    transition: var(--transition-medium);
}

.cta-card:hover .cta-icon {
    background: #4285F4;
    color: #fff;
    transform: rotate(10deg);
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-content h3 {
    color: var(--secondary-blue);
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 800;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.5;
}

.btn-review {
    background: var(--secondary-blue);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.2);
}

.btn-review i {
    font-size: 1.1rem;
}

.btn-review:hover {
    background: var(--primary-blue);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 74, 128, 0.3);
}

@media (max-width: 992px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 25px;
    }

    .cta-content {
        text-align: center;
    }

    .btn-review {
        width: 100%;
        justify-content: center;
    }
}
/* =========================================
   Google Maps Style Testimonials
   ========================================= */
.google-rating-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
body.light-mode .google-rating-banner {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.google-rating-logo i {
    font-size: 2.5rem;
    color: #4285F4;
    background: -webkit-linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.google-rating-score {
    display: flex;
    align-items: center;
    gap: 15px;
}
.google-score-number {
    font-size: 2.5rem;
    font-weight: 700;
}
.google-stars i, .google-card-stars i {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-right: 2px;
}
.google-rating-text {
    margin-top: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.google-review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
body.light-mode .google-review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.google-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}
.google-user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}
.google-user-info {
    display: flex;
    flex-direction: column;
}
.google-user-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}
.google-user-date {
    font-size: 0.8rem;
    color: var(--text-light);
}
.google-corner-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.2rem;
    color: #4285F4;
    background: -webkit-linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.google-card-stars {
    margin-bottom: 15px;
}
.google-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

.btn-google-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #3c4043;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #dadce0;
    transition: background 0.2s;
    font-family: "Roboto", "Montserrat", sans-serif;
}
.btn-google-action:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3);
}
.btn-google-action i {
    background: -webkit-linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1rem;
}

/* =========================================
   Hero Trust Badges and Timeline Design
   ========================================= */
.hiw-hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.hiw-timeline-container {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
body.light-mode .hiw-timeline-container {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hiw-image-mini {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.hiw-image-mini img {
    width: 100%;
    display: block;
    height: auto;
}

/* Timeline specific */
.hiw-timeline {
    position: relative;
    padding-left: 0;
}


.timeline-item {
    position: relative;
    margin-bottom: 25px;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-icon {
    display: none;
}
.timeline-content {
    background: transparent;
}
.timeline-content strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}
body.light-mode .timeline-content strong {
    color: var(--text-color);
}
.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}
body.light-mode .timeline-content p {
    color: var(--text-light);
}

/* Hide old hiw-steps */
.hiw-steps { display: none; }


/* =========================================
   VIP Fleet Showroom Design
   ========================================= */
.fleet-showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 20px;
}

.fleet-showroom-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
body.light-mode .fleet-showroom-card {
    background: #fff;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.fleet-showroom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}
body.light-mode .fleet-showroom-card:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.showroom-image-box {
    position: relative;
    padding: 30px 20px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: visible;
}
body.light-mode .showroom-image-box {
    background: radial-gradient(circle at center, rgba(0,0,0,0.03) 0%, transparent 70%);
}

.showroom-glow {
    position: absolute;
    width: 60%;
    height: 20px;
    bottom: 20px;
    background: var(--primary-color);
    filter: blur(30px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.fleet-showroom-card:hover .showroom-glow {
    opacity: 0.3;
}

.showroom-image-box img {
    width: 90%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.5s ease;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4));
}
body.light-mode .showroom-image-box img {
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15));
}
.fleet-showroom-card:hover .showroom-image-box img {
    transform: scale(1.1) translateX(10px);
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.6));
}

.showroom-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 1px solid rgba(255,255,255,0.05);
}
body.light-mode .showroom-content {
    border-top: 1px solid #f0f0f0;
}

.showroom-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.showroom-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
body.light-mode .showroom-header h3 {
    color: var(--text-color);
}

.eco-badge, .group-badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}
.eco-badge {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}
.group-badge {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.showroom-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px;
}

.showroom-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.stat-box {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.3s ease;
}
body.light-mode .stat-box {
    background: #f8f9fa;
    border: 1px solid #eaeaea;
}
.fleet-showroom-card:hover .stat-box {
    background: rgba(255,255,255,0.05);
}
.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    display: block;
}
body.light-mode .stat-value {
    color: var(--text-color);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showroom-am.hero-vip-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.vip-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vip-item i {
    color: #4CAF50;
    font-size: 1.1rem;
}

.chauffeur-pricing {
    margin: 20px 0;
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #cbd5e1;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row span {
    color: #475569;
    font-weight: 500;
}

.pricing-row strong {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.chauffeur-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: gold;
    color: #000;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.showroom-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.vip-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 20px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
body.light-mode .vip-pill {
    background: transparent;
}

.btn-showroom {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
body.light-mode .btn-showroom {
    color: var(--primary-color);
}
.btn-showroom:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
body.light-mode .btn-showroom:hover {
    color: #fff;
}

