/* Global Styles */
:root {
    --primary-color: #0D1B2A;       /* Navy Blue (Background/Main Theme) */
    --primary-dark: #0D1B2A;        /* Same as primary */
    --secondary-color: #FFD369;     /* Gold (Buttons, Icons, Accent Text) */
    --dark-color: #0D1B2A;          /* Also Navy Blue */
    --light-color: #FFFFFF;         /* White (Main Text, Icons) */
    --gray-color: #CFCFCF;          /* Soft Grey (Subtext) */
    --light-gray: #F5F5F5;          /* Light Gray (backgrounds if needed) */
    --danger-color: #E53935;        /* Standard red for errors */
    --warning-color: #FFA726;       /* Warning color */
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
                  0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-image: url("/img/hero-bg1.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-heathrow {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/heathrow.jpeg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-luton {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/luton.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-stansted {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/stansted.jpg");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-gatwick {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/gatwick.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-bournemouth {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("/img/bournemouth.webp");
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
    color: var(--light-color);
    text-align: left;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--gray-color);
}

.hero-tagline {
    font-size: 1rem;
    color: var(--gray-color);
}

/* Modern Booking Card Styling */
.booking-card {
    background: var(--primary-color);
    border-radius: 16px;
    padding: 16px;
    width: 300px;
    max-width: 100%;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(255, 211, 105, 0.1);
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Modern Tabs Styling */
.booking-tabs {
    display: flex;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3px;
}

.tab-button {
    flex: 1;
    padding: 6px 10px;
    border: none;
    background: transparent;
    color: var(--gray-color);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    text-align: center;
}

.tab-button:hover:not(.active) {
    color: var(--light-color);
}

.tab-button.active {
    background: var(--secondary-color);
    color: var(--dark-color);
    font-weight: 600;
}

/* Form Styling */
.booking-form .form-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.booking-form .form-group {
    flex: 1;
    text-align: left;
    position: relative;
}

.booking-form label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--light-color);
    margin-bottom: 4px;
    transition: color 0.2s ease;
}

.booking-form .form-group:focus-within label {
    color: var(--secondary-color);
}

/* Input and Select Fields - Modern Style */
.booking-form input,
.booking-form select {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: var(--light-color);
    height: 32px;
    box-sizing: border-box;
}

.booking-form input:hover,
.booking-form select:hover {
    border-color: rgba(255, 211, 105, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
}

.booking-form input:focus,
.booking-form select:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 211, 105, 0.15);
}

/* Select field specific styling */
.booking-form select {
    color: var(--light-color);
    background-color: rgba(255, 255, 255, 0.1);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23CFCFCF' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 8px) center;
    background-size: 10px;
    padding-right: 28px;
}

.booking-form select option {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 12px;
    border: none;
}

/* Modern Search Button */
.search-button,
.get-quote-button {
    width: 100%;
    padding: 8px 14px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    height: 36px;
}

.search-button:hover,
.get-quote-button:hover {
    background: #E6BE5A;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-button:active,
.get-quote-button:active {
    transform: translateY(0);
}

/* Return Form Styling */
.booking-form.hidden {
    display: none;
}

.return-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Via Toggle Styling */
.via-toggle {
    color: var(--secondary-color) !important;
    font-size: 11px;
    cursor: pointer;
    margin: 8px 0;
    text-align: right;
    display: block;
    font-weight: 500;
}

.via-toggle:hover {
    color: var(--light-color) !important;
}

.via-toggle i {
    margin-right: 4px;
    font-size: 10px;
}

/* Via Section Styling */
.via-section,
.return-via-section {
    margin: 12px 0;
    position: relative;
}

.via-section.hidden,
.return-via-section.hidden {
    display: none;
}

.via-section input,
.return-via-section input {
    width: 100%;
    padding: 6px 30px 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    color: var(--light-color);
    height: 32px;
    box-sizing: border-box;
}

.via-section input:hover,
.return-via-section input:hover {
    border-color: rgba(255, 211, 105, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
}

.via-section input:focus,
.return-via-section input:focus {
    border-color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.2);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 211, 105, 0.15);
}

/* Remove Via Button */
.remove-via {
    position: absolute;
    top: 20px;
    right: 6px;
    background: rgba(229, 57, 53, 0.8);
    border: none;
    color: var(--light-color);
    cursor: pointer;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    transition: var(--transition);
}

.remove-via:hover {
    background: var(--danger-color);
    transform: scale(1.1);
}

/* Form Field Placeholder Styling */
.booking-form input::placeholder,
.booking-form select::placeholder {
    color: var(--gray-color);
    opacity: 0.7;
}

/* Date and Time Input Styling */
.booking-form input[type="date"],
.booking-form input[type="time"] {
    position: relative;
    color-scheme: dark;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.2s ease;
    filter: invert(1);
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator:hover,
.booking-form input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 0.8;
}



/* Features Section */
.features {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    background-color: rgba(255, 211, 105, 0.1);
    color: var(--secondary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-item p {
    color: var(--gray-color);
    font-size: 15px;
}

/* Destinations Section */
.destinations {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.destinations h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.destination-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s;
}

.destination-item:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.destination-image h3 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--light-color);
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

/* App Download Section */
.app-download {
    padding: 60px 0;
    background-color: var(--dark-color);
    color: var(--light-color);
}

.app-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.app-text {
    flex: 1;
}

.app-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.app-text p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: var(--gray-color);
}

.app-buttons {
    display: flex;
    gap: 15px;
}

.app-button {
    background-color: var(--primary-dark);
    color: var(--light-color);
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.app-button:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.app-image {
    flex: 1;
    text-align: center;
}

.app-image img {
    max-width: 100%;
    max-height: 400px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.testimonial-item {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--box-shadow);
}

.testimonial-content:after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--light-gray);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--dark-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.rating {
    color: var(--warning-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-column p {
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 14px;
    color: var(--gray-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    opacity: 0.8;
    transition: opacity 0.3s;
    font-size: 14px;
    color: var(--gray-color);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--gray-color);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-methods i {
    font-size: 28px;
    opacity: 0.8;
    color: var(--gray-color);
}

/* Popular Routes Section */
.popular-routes {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.route-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.route-card:hover {
    transform: translateY(-5px);
}

.route-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.route-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.route-card ul {
    list-style: none;
    padding: 0;
}

.route-card li {
    margin-bottom: 8px;
}

.route-card a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.route-card a:hover {
    color: var(--secondary-color);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 60px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: var(--light-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-5px);
}

.feature-card:hover h3,
.feature-card:hover .feature-icon {
    color: var(--secondary-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: color 0.3s;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: color 0.3s;
}

/* Testimonials Slider */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-color);
}

.testimonial-author {
    font-weight: bold;
    color: var(--dark-color);
}

.testimonial-author span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    color: var(--gray-color);
}

/* Fleet Section */
.our-fleet {
    padding: 60px 0;
    background-color: var(--light-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.vehicle-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-card h3 {
    padding: 15px 20px 0;
    font-size: 20px;
    color: var(--dark-color);
}

.vehicle-card ul {
    list-style: none;
    padding: 15px 20px 20px;
}

.vehicle-card li {
    margin-bottom: 8px;
    color: var(--gray-color);
    font-size: 14px;
}

.vehicle-card i {
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.step-card {
    position: relative;
    padding: 30px 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin: 15px 0 10px;
    color: var(--dark-color);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: var(--light-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: var(--light-gray);
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--secondary-color);
}

.faq-question.active::after {
    content: "-";
    color: var(--secondary-color);
}

.faq-question.active {
    background: var(--primary-color);
    color: var(--light-color);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--light-color);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--gray-color);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    color: var(--dark-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--primary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .booking-card {
        width: 90%;
        max-width: 350px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-content {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-card {
        padding: 14px;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
        color: var(--light-color);
    }

    .hero-text p {
        font-size: 1rem;
        color: var(--gray-color);
    }

    .booking-form .form-row {
        flex-direction: column;
        gap: 8px;
    }

    .section-title {
        font-size: 28px;
    }

    .routes-grid,
    .features-grid,
    .testimonials-slider,
    .fleet-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .route-card,
    .feature-card,
    .testimonial-card,
    .vehicle-card,
    .step-card {
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 26px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--light-color);
        box-shadow: var(--box-shadow);
        padding: 20px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 0 0 15px 0;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .app-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .booking-tabs {
        display: flex;
        flex-direction: row !important;  /* Force horizontal layout */
        justify-content: space-between;
        gap: 0.5rem;
        flex-wrap: nowrap;
    }

    .tab-button {
        flex: 1 1 50%;            /* Each tab takes 50% width */
        margin: 0 !important;     /* Remove any margins that cause wrapping */
        border-radius: 6px;
        text-align: center;
    }
}

