:root {
    --primary-color: #012473; /* Deep Blue */
    --primary-dark: #001a5c;
    --gradient-start: #FF8148;
    --gradient-end: #FF4136;
    --secondary-color: #212121;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f3f4f6; /* Slightly darker for better differentiation */
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden; /* Extra guard against horizontal scroll on mobile */
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; /* Adjust according to actual logo aspect ratio */
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
}

.nav-list a:hover {
    color: var(--primary-dark);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    display: inline-block;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff6b2b, #e62e25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 65, 54, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--white);
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    display: inline-block;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: left; /* Align text to left for split layout */
}

/* New container for split layout */
.hero .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap; /* Ensure stacking on mobile */
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-booking {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start; /* Align buttons left */
    flex-wrap: wrap;
}

/* Booking Form in Hero adjustments */
.booking-container {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    font-size: 0.85rem;
    color: var(--text-dark);
}

.booking-form input,
.booking-form select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #f9f9f9;
    transition: var(--transition);
    width: 100%; /* Ensure full width */
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(1, 36, 115, 0.1);
}

/* Trip Type Segmented Control */
.trip-type-selector {
    display: flex;
    background-color: #f3f4f6;
    padding: 5px;
    border-radius: 50px;
    gap: 5px;
    margin-top: 5px;
}

.trip-option {
    flex: 1;
    text-align: center;
}

.trip-option input[type="radio"] {
    display: none;
}

.trip-option label {
    display: block;
    padding: 10px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.trip-option label:hover {
    color: var(--primary-color);
    background-color: rgba(0,0,0,0.02);
}

.trip-option input[type="radio"]:checked + label {
    background: var(--primary-color); /* Deep Blue */
    color: var(--white);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    background: #25D366; /* WhatsApp Green */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--white);
    padding: 12px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-block:hover {
    background: #1faf53;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Remove duplicate .booking-section styles */

/* ... (Common Section styles remain) ... */

/* Mobile Responsive Fixes */
@media (max-width: 992px) {
    .hero .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .hero-booking {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .booking-container {
        padding: 20px;
    }
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* About section background handled by rhythm rules */

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.features-list li {
    font-weight: 500;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list i {
    color: var(--primary-dark);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

/* Why Choose Us Split Layout */
.why-choose-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.why-choose-image {
    flex: 1;
    min-width: 300px;
}

.why-choose-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-choose-content {
    flex: 1.2;
    min-width: 300px;
}

.why-list {
    margin-top: 20px;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.why-list i {
    color: var(--primary-color);
    margin-top: 4px; /* Align icon with first line of text */
    font-size: 0.9rem;
}

/* Mobile responsive for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-wrapper {
        flex-direction: column;
    }

    .why-choose-content h2 {
        text-align: center !important;
        margin-bottom: 30px;
    }
}

/* Tariff Cards Design */
.tariff-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.tariff-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.tariff-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.tariff-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #FFC107; /* Yellow ribbon */
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

.card-header-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.card-header-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    z-index: 1;
}

.card-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tariff-card:hover .card-header-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Ensures content fills height */
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-specs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.car-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.car-models {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-block {
    background-color: #f0f7ff; /* Light blue tint */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-type {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-type .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-type .price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-type .unit {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.tariff-features {
    text-align: left;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tariff-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tariff-features i {
    color: #25D366; /* Green check */
    margin-top: 4px;
}

.card-btn {
    width: 100%;
    margin-top: auto; /* Push to bottom */
}

.tariff-note {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #ffeeba;
}

@media (max-width: 768px) {
    .tariff-card {
        width: 100%;
        max-width: 400px;
    }
    
    .tariff-card.featured {
        transform: scale(1);
    }
    
    .tariff-card.featured:hover {
        transform: scale(1);
    }
}

/* Areas Grid */
.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.areas-grid span {
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid #eee;
}

/* States Section */
.states-section {
    text-align: center;
}

.states-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 by 3 layout */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.state-box {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #eee;
    cursor: pointer;
}

.state-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.state-image-wrapper {
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.state-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.state-box:hover .state-image-wrapper img {
    transform: scale(1.1);
}

.state-box h4 {
    padding: 20px;
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .states-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .state-image-wrapper {
        height: 150px;
    }
    
    .states-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    text-align: center;
}

.step {
    flex: 1;
    min-width: 200px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* Terms */
.terms-list {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.terms-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.terms-list i {
    color: var(--primary-color);
    margin-top: 4px;
}

/* Cars */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.car-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.car-item:hover {
    transform: translateY(-5px);
}

.car-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.car-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.car-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.car-desc {
    margin-top: 10px;
    font-style: italic;
    font-size: 0.85rem !important;
}

/* Contact */
.contact {
    background-color: var(--secondary-color);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
}

.contact .section-title {
    color: var(--white);
    left: 0;
    transform: none;
    display: block;
    text-align: center;
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 50px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gradient-end); /* Changed from dark blue to bright orange/red for visibility */
    font-size: 1.2rem;
}

.info-item h5 {
    color: rgba(255, 255, 255, 0.8); /* Increased opacity */
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.info-item a {
    font-size: 1.2rem;
    font-weight: 600;
}

.booking-cta {
    background: linear-gradient(to bottom right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
}

.booking-cta h3 {
    margin-bottom: 15px;
    color: var(--white);
}

.booking-cta p {
    margin-bottom: 25px;
    font-weight: 500;
}

.big-btn {
    background: var(--white);
    color: var(--gradient-end);
    border: none;
    width: 100%;
}

@media (max-width: 768px) {
    .booking-cta {
        max-width: 100%;
        width: 100%;
        padding: 24px 20px;
        box-sizing: border-box;
        margin: 0;
    }

    .booking-cta h3 {
        font-size: 1.4rem;
    }

    .booking-cta p {
        font-size: 0.95rem;
    }
}

.big-btn:hover {
    background-color: #f0f0f0;
    color: var(--gradient-start);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--white); /* Brighter white for better visibility */
    text-align: center;
    padding: 20px 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer {
        font-size: 0.75rem;
        padding: 16px 10px;
    }
}

/* Additional Services Section */
.additional-services {
    background-color: var(--white);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-image-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 1px solid #eee;
}

.service-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    height: 300px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-image-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.service-image-card p {
    padding: 0 25px 25px;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-image-wrapper {
        height: 250px;
    }
}

/* Section Backgrounds Rhythm */
.about, .why-choose, .cars, .process {
    background-color: var(--white);
}

.services, .tariff, .areas, .terms {
    background-color: var(--light-bg);
}

/* Old Booking Section removed */

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #1faf53;
    transform: scale(1.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .booking-container {
        padding: 25px;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }

    .nav-list.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .tariff-card.featured {
        transform: scale(1);
    }
    
    .contact-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
        width: 100%;
        padding: 0;
    }
    
    .booking-cta {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
}

/* Booking Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 450px; /* Reduced width slightly */
    position: relative;
    padding: 0;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh; /* Prevent overflow on small screens */
    overflow-y: auto;
}

.modal-content .booking-container {
    box-shadow: none;
    padding: 20px 25px; /* Reduced padding */
    background: transparent;
}

.modal-content .section-title {
    font-size: 1.5rem !important; /* Smaller title */
    margin-bottom: 15px !important;
}

.modal-content .booking-form {
    gap: 10px; /* Reduced gap */
}

.modal-content .booking-form input {
    padding: 10px 12px; /* Smaller inputs */
    font-size: 0.95rem;
}

.modal-content .form-group label {
    font-size: 0.8rem;
    margin-bottom: 2px;
    display: block;
}

.modal-content .trip-type-selector {
    margin-top: 0;
    padding: 3px;
}

.modal-content .trip-option label {
    padding: 8px; /* Smaller selector */
    font-size: 0.9rem;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: #888;
    cursor: pointer;
    font-weight: 700;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* City Links Section */
.city-links-section {
    background-color: #ffffff;
    /* Lighter dots */
    background-image: radial-gradient(#e0e0e0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid #eee;
}

/* Floating Buttons */
.whatsapp-float, .call-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none; /* Ensure no underline */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
    touch-action: manipulation; /* Improve touch responsiveness */
}

.whatsapp-float {
    background-color: #25D366;
    right: 30px;
}

.call-float {
    background-color: #007bff; /* Blue color for call */
    left: 30px; /* Position on left */
}

.whatsapp-float:hover, .call-float:hover {
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float:hover {
    background-color: #1faf53;
}

.call-float:hover {
    background-color: #0069d9;
}

@media (max-width: 768px) {
    .whatsapp-float, .call-float {
        width: 56px; /* Slightly larger for better touch targets */
        height: 56px;
        font-size: 26px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .whatsapp-float {
        right: 15px;
        left: auto;
        bottom: calc(90px + env(safe-area-inset-bottom, 0px)); /* Stack WhatsApp above call button, support for devices with home indicator */
    }
    
    .call-float {
        right: 15px;
        left: auto;
        bottom: calc(15px + env(safe-area-inset-bottom, 0px)); /* Call button at bottom, support for devices with home indicator */
    }
}

/* Extra small devices - ensure buttons are always visible */
@media (max-width: 480px) {
    .whatsapp-float, .call-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        right: 12px;
    }
    
    .whatsapp-float {
        bottom: calc(85px + env(safe-area-inset-bottom, 0px));
    }
    
    .call-float {
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    }
}

.city-links-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px 30px;
    margin-top: 30px;
}

.city-links-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.city-links-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--text-light);
    border-radius: 50%; /* Bullet point */
}

.city-links-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.city-links-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .city-links-list {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 flexible columns on mobile, no overflow */
        column-gap: 16px;
    }
}
