/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #003d99;
    --text-color: #333;
    --light-bg: #f0f4ff;
    --white: #ffffff;
    --border-color: #ddd;
    --green: #25d366;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER ==================== */
.header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(240, 244, 255, 0.95));
    box-shadow: 0 2px 15px rgba(0, 102, 204, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    min-height: 56px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--primary-color);
    order: -1;
}

.logo {
    order: 2;
}

.desktop-nav {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo h1 {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.drawer-header,
.drawer-footer,
.drawer-close,
.mobile-drawer {
    display: none;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-color);
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background: #0099ff;
    color: var(--white);
}

.btn-secondary:hover {
    background: #0066cc;
}

.btn-call {
    background: #0066cc;
    color: var(--white);
}

.btn-whatsapp {
    background: var(--green);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da152;
}

/* ==================== HERO SECTION ==================== */
.hero {
    color: var(--white);
    position: relative;
    background: #003d99;
}

/* --- Banner Slider --- */
.hero-banner-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #003d99;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.slide-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 60px;
}

.slide-text h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.slide-text p {
    font-size: 16px;
    opacity: 0.95;
}

.banner-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.bdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.3s;
}

.bdot.active { background: #fff; }

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.25);
    border: none;
    color: #fff;
    font-size: 30px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.3s;
}

.banner-arrow:hover { background: rgba(255,255,255,0.5); }
.banner-arrow.bleft { left: 14px; }
.banner-arrow.bright { right: 14px; }

/* --- Hero Body (content + form) --- */
.hero-body {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #0099ff 100%);
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
}

/* ==================== BOOKING FORM ==================== */
.booking-form {
    background: var(--white);
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.25);
    max-width: 480px;
    width: 100%;
}

.booking-form h3 {
    color: var(--primary-color);
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid #ddd;
    border-radius: 7px;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.2s;
    background: #fafbff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background: var(--white);
}

#carBookingForm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

#carBookingForm .trip-toggle {
    grid-column: 1 / -1;
}

#carBookingForm input[type="hidden"] {
    display: none;
}

#carBookingForm .form-group:nth-child(3),
#carBookingForm .form-group:nth-child(4),
#carBookingForm .form-group:nth-child(5),
#carBookingForm .form-group:nth-child(6),
#carBookingForm .form-group:nth-child(9) {
    grid-column: 1 / -1;
}

#carBookingForm .btn {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
    padding: 11px;
    font-size: 14px;
    border-radius: 8px;
}

/* ==================== CARS SLIDER ==================== */
.cars-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cars-slider {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 4px 16px;
    flex: 1;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

.cars-slider::-webkit-scrollbar { display: none; }

.cars-slider .car-card {
    min-width: 375px;
    max-width: 375px;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.cars-arrow {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.3s;
    line-height: 1;
}

.cars-arrow:hover { background: var(--secondary-color); }

.cars-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.cars-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
}

.cars-dots span.active { background: var(--primary-color); }

/* ==================== OUTSTATION TRIPS ==================== */
.outstation-trips {
    padding: 40px 0;
    background: #fff;
}

.fleet-heading {
    text-align: center;
    margin-bottom: 40px;
}

.fleet-sub {
    color: #0066cc;
    font-weight: 700;
    font-size: 16px;
    font-style: normal;
    margin-bottom: 8px;
}

.fleet-heading h2 {
    font-size: 34px;
    color: #111;
    font-weight: 800;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.car-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.car-image-wrap {
    position: relative;
    background: #f2f2f2;
}

.car-rating {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f5c518;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 5px;
    z-index: 1;
}

.car-img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #f2f2f2;
    display: block;
}

.fare-car-card .car-img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: #f2f2f2;
    display: block;
}

.car-image-placeholder.dzire {
    background-image: url('images/dezire.png');
}

.car-image-placeholder.hatchback {
    background-image: url('images/Wagon R.png');
}

.car-image-placeholder.ertiga {
    background-image: url('images/Eartiga.png');
}

.car-image-placeholder.crysta {
    background-image: url('images/Innova-Crysta.png');
}

.car-image-placeholder.hycross {
    background-image: url('images/innova-hycross.png');
}

.car-info {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.car-features {
    list-style: none;
    margin-bottom: 14px;
    flex: 1;
}

.car-features li {
    font-size: 13px;
    color: #555;
    padding: 3px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.4;
}

.car-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.car-price {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 14px;
    line-height: 1;
}

.car-price span {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.car-price small {
    font-size: 11px;
    color: #e6a817;
    font-weight: 600;
    margin-left: 4px;
}

.btn-book {
    background: #1a2b4a;
    color: var(--white);
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
    gap: 8px;
}

.btn-book:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ==================== TAXI FARE ==================== */
.taxi-fare {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(240, 244, 255, 0.8) 100%);
}

.taxi-fare h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.fare-cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .fare-cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.fare-car-card {
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.fare-car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-button {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.tab-button.active {
    background: #0066cc;
    color: var(--white);
    border-color: #0066cc;
}

.tab-button:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.fare-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.fare-card {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #0099ff 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
}

.fare-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.fare-card .fare {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
}

.fare-card p {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== SERVICES ==================== */
.services {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(0, 102, 204, 0.05) 100%);
}

/* Auto-Scrolling Banner */
.auto-banner-slider {
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    height: 350px;
}

.banner-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: fit-content;
}

.banner-slide {
    min-width: 100vw;
    max-width: 100vw;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-slide.placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
}

.banner-slide.placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.banner-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.banner-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 20px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.banner-btn {
    display: inline-block;
    background: white;
    color: #0066cc;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s;
    margin-top: 10px;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f5c518;
    color: #111;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-500vw);
    }
}

.auto-banner-slider:hover .banner-track {
    animation-play-state: paused;
}

.dynamic-banner {
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.dynamic-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
}

.dynamic-banner a {
    display: block;
}

.dynamic-banner img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--secondary-color);
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.service-buttons .btn {
    flex: 1;
    justify-content: center;
}

/* ==================== CITIES ==================== */
.cities {
    padding: 40px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, rgba(0, 102, 204, 0.05) 100%);
}

.cities h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.cities-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cities-slider {
    display: flex;
    gap: 20px;
    overflow-x: scroll;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 10px 4px 20px;
    flex: 1;
}

.cities-slider::-webkit-scrollbar { display: none; }

.city-card {
    min-width: 300px;
    max-width: 300px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.city-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 70%, transparent 100%);
    padding: 25px 20px;
    color: #fff;
}

.city-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.city-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.cities-arrow {
    background: var(--primary-color);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s;
    line-height: 1;
}

.cities-arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.cities-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.cities-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.cities-dots span.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.city-item {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #0099ff 100%);
    color: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.city-item:hover {
    transform: scale(1.05);
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--white) 0%, rgba(240, 244, 255, 0.8) 100%);
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.infographic-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    min-height: 100px;
}

.info-number {
    width: 100px;
    height: 100px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 900;
    color: #666;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.info-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    z-index: 3;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.info-icon i {
    font-size: 38px;
    color: var(--item-color);
}

.info-content {
    flex: 1;
    background: var(--item-color);
    padding: 20px 30px 20px 40px;
    border-radius: 50px;
    margin-left: -30px;
    color: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s;
}

.info-item:hover .info-content {
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.25);
}

.info-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.info-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
    color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #0066cc;
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reason-card h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* ==================== FARE TABLE ==================== */
.fare-table {
    padding: 40px 0;
}

.fare-table h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.fare-table-header {
    background: #fff;
    padding: 15px;
    text-align: center;
    border-left: 3px solid #0066cc;
    border-right: 3px solid #0066cc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.fare-badge {
    display: inline-block;
    background: #1a2b4a;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.fare-badge.services-badge {
    background: #25d366;
}

.fare-text {
    color: #666;
    font-size: 14px;
}

.table-note {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-style: italic;
}

.table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pricing-table thead {
    background: linear-gradient(135deg, #1a2b4a 0%, #003d99 100%);
    color: var(--white);
}

.pricing-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.pricing-table tbody tr:hover {
    background: var(--light-bg);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(0, 102, 204, 0.05) 100%);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
}

.testimonial-card .stars {
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-card h4 {
    color: var(--secondary-color);
    margin: 15px 0 5px;
}

.testimonial-card .location {
    color: var(--primary-color);
    font-size: 14px;
    font-style: normal;
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(135deg, #001a33 0%, #003d99 50%, #0066cc 100%);
    color: var(--white);
    padding: 80px 0 0;
    position: relative;
    overflow: visible;
    border-radius: 40px 40px 0 0;
    margin-top: 60px;
    box-shadow: 0 -10px 40px rgba(0, 102, 204, 0.3);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 40px 40px 0 0;
    pointer-events: none;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    padding-top: 30px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.footer-section:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-section h3::after,
.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f5c518);
    border-radius: 2px;
}

.footer-section p {
    line-height: 2;
    opacity: 0.95;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.footer-section p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-section a {
    color: #f5c518;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-section a:hover {
    color: #fff;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    font-size: 24px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: #25d366;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    border-color: #25d366;
}

.footer-cta {
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    padding: 40px 40px;
    text-align: center;
    margin: 0 -20px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '🚗';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
}

.footer-cta h3 {
    margin: 0;
    font-size: 28px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-buttons .btn {
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 20px;
    text-align: center;
    opacity: 0.95;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== STATS SECTION ==================== */
.stats {
    background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #0099ff 100%);
    padding: 30px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item {
    padding: 20px 15px;
    border-right: 1px solid rgba(255,255,255,0.2);
    position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-item h3 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-item p {
    font-size: 12px;
    opacity: 0.85;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==================== TRIP TYPE TOGGLE ==================== */
.trip-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    border-radius: 7px;
    overflow: hidden;
    border: 1.5px solid var(--primary-color);
}

.trip-toggle button {
    flex: 1;
    padding: 8px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.trip-toggle button.active {
    background: var(--primary-color);
    color: var(--white);
}

/* ==================== MOBILE BOTTOM NAVIGATION ==================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #003d99 0%, #0066cc 100%);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 4px 0 max(4px, env(safe-area-inset-bottom));
    height: 56px;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    padding: 4px 0;
    transition: all 0.3s;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
    margin-bottom: 2px;
    transition: all 0.3s;
}

.mobile-bottom-nav .nav-item span {
    font-weight: 500;
    font-size: 9px;
}

.mobile-bottom-nav .nav-item.active {
    color: #fff;
}

.mobile-bottom-nav .nav-item.active i {
    transform: scale(1.1);
}

.mobile-bottom-nav .nav-item-center {
    position: relative;
    top: -12px;
}

.mobile-bottom-nav .nav-item-center i {
    background: linear-gradient(135deg, #ff6b35 0%, #f5c518 100%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4);
    margin-bottom: 0;
    color: #fff;
}

.mobile-bottom-nav .nav-item-center span {
    position: absolute;
    bottom: -16px;
    font-size: 9px;
    color: #fff;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 56px;
    }
}

/* ==================== MOBILE MENU ==================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--primary-color);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; order: -1; }
    .logo { order: 2; margin-left: auto; }
    .desktop-nav { display: none !important; }

    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: 2px 0 20px rgba(0,0,0,0.3);
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    /* Auto Banner Mobile */
    .auto-banner-slider {
        height: 250px;
    }

    .banner-slide {
        height: 250px;
        padding: 20px;
    }

    .banner-content h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .banner-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .banner-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .mobile-drawer.open {
        transform: translateX(0);
    }

    .drawer-header {
        display: block;
        padding: 30px 20px;
        background: linear-gradient(135deg, #003d99 0%, #0066cc 50%, #0099ff 100%);
        color: white;
        text-align: center;
    }

    .drawer-header h2 {
        margin: 0 0 8px 0;
        font-size: 24px;
        font-weight: 800;
    }

    .drawer-header p {
        margin: 0;
        font-size: 13px;
        opacity: 0.9;
    }

    .mobile-drawer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex: 1;
    }

    .mobile-drawer ul li {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-drawer ul li a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px 20px;
        text-decoration: none;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s;
    }

    .mobile-drawer ul li a:hover,
    .mobile-drawer ul li a:active {
        background: #f0f4ff;
        padding-left: 25px;
        color: #0066cc;
    }

    .mobile-drawer ul li a i {
        width: 22px;
        color: #0066cc;
        font-size: 18px;
    }

    .drawer-footer {
        display: block;
        padding: 20px;
        background: #f8f9fa;
        border-top: 1px solid #e0e0e0;
        text-align: left;
    }

    .drawer-footer .company-name {
        font-size: 14px;
        color: #0066cc;
        font-weight: 700;
        margin: 0 0 6px 0;
    }

    .drawer-footer .powered-by {
        font-size: 11px;
        color: #666;
        margin: 0 0 6px 0;
    }

    .drawer-footer .made-in {
        font-size: 11px;
        color: #666;
        margin: 0 0 6px 0;
    }

    .drawer-footer .version {
        font-size: 10px;
        color: #999;
        margin: 0;
    }

    .drawer-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }

    .drawer-overlay.active {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .hero-body {
        grid-template-columns: 1fr;
        padding: 30px 16px;
        gap: 24px;
    }

    .hero-banner-slider { height: 220px; }
    .slide-text { padding: 0 50px; }
    .slide-text h2 { font-size: 20px; }
    .slide-text p { font-size: 14px; }

    .hero-content h2 { font-size: 24px; }

    .header-buttons { display: none; }

    .cars-arrow { display: none; }
    .cars-slider {
        gap: 15px;
        padding: 10px 20px 16px;
        scroll-snap-type: x mandatory;
    }
    .cars-slider .car-card { 
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        scroll-snap-align: center;
    }

    .cities-arrow { display: none; }
    .cities-slider-wrap { 
        padding: 0;
        margin: 0 -20px;
    }
    
    .cities-slider {
        gap: 15px;
        padding: 10px 20px 20px;
        scroll-snap-type: x mandatory;
    }
    
    .city-card { 
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        height: 200px;
        scroll-snap-align: center;
    }
    
    .cities-dots {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }
    
    .cities-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-block;
    }
    
    .cities-dots span.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }

    .tabs { gap: 5px; }
    .tab-button { padding: 8px 12px; font-size: 12px; }
    
    .footer { padding: 40px 0 0; border-radius: 30px 30px 0 0; }
    .footer-content { grid-template-columns: 1fr; gap: 20px; padding-top: 20px; }
    .footer-section { padding: 20px; }
    .footer-cta { padding: 30px 20px; margin: 0 0 20px; }
    .footer-cta h3 { font-size: 20px; }
    
    .footer-buttons { flex-direction: column; }
    .footer-buttons .btn { width: 100%; }
    .pricing-table { font-size: 13px; }
    .pricing-table th, .pricing-table td { padding: 12px 10px; }

    .fare-table-header {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .fare-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .fare-text {
        font-size: 12px;
        text-align: center;
    }

    /* Infographic Mobile Styles */
    .infographic-list {
        gap: 15px;
        padding: 0 10px;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
        min-height: auto;
    }

    .info-number {
        width: 70px;
        height: 70px;
        font-size: 32px;
        position: absolute;
        left: 10px;
        top: 15px;
    }

    .info-icon {
        width: 70px;
        height: 70px;
        position: absolute;
        left: 10px;
        top: 15px;
        margin-left: 0;
    }

    .info-icon i {
        font-size: 30px;
    }

    .info-content {
        width: 100%;
        margin-left: 0;
        padding: 20px 20px 20px 100px;
        border-radius: 40px;
        min-height: 90px;
    }

    .info-content h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .info-content p {
        font-size: 13px;
        line-height: 1.5;
    }

    .info-item:hover .info-content {
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .logo h1 { font-size: 18px; }
    .hero-content h2 { font-size: 20px; }
    .hero-content p { font-size: 14px; }
    h2 { font-size: 24px !important; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .booking-form { padding: 16px; }
    .hero-banner-slider { height: 200px; }
    .slide-text h2 { font-size: 18px; }
}
