/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #00897B;
    --secondary-color: #111827;
    --text-color: #374151;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--light-bg);
    line-height: 1.5;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo img {
    height: 3.5rem;
    margin-right: 0.5rem;
}

.nav-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
        gap: 2rem;
        font-weight: 500;
        color: #4B5563;
    }
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary-color);
}

.nav-desktop a.active {
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.call-btn {
    display: none;
}

@media (min-width: 1024px) {
    .call-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 700;
        color: var(--secondary-color);
        background: none;
        border: none;
        cursor: pointer;
    }

    .call-icon {
        width: 2.5rem;
        height: 2.5rem;
        background-color: rgba(0, 137, 123, 0.1);
        color: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .call-btn:hover .call-icon {
        background-color: var(--primary-color);
        color: var(--white);
    }
}

.mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    /* Hidden by default */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-100);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.5rem;
}

.mobile-nav a {
    padding: 0.75rem 0;
    color: #4B5563;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--primary-color);
}

.mobile-nav a.active {
    font-weight: 700;
    background-color: rgba(0, 137, 123, 0.05);
    border-radius: 8px;
}

/* Footer */
.main-footer {
    background-color: #111827;
    /* Gray 900 */
    color: var(--white);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid #1F2937;
    /* Gray 800 */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-brand p {
    color: #9CA3AF;
    /* Gray 400 */
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #1F2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9CA3AF;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #9CA3AF;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.copyright {
    border-top: 1px solid #1F2937;
    padding-top: 2rem;
    text-align: center;
    color: #6B7280;
    /* Gray 500 */
    font-size: 0.875rem;
}

/* Common Utility Replacements */
.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.bg-secondary {
    background-color: var(--secondary-color);
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 137, 123, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 137, 123, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    color: #4B5563;
    /* Gray 600 */
}

/* Flex Utilities for Grid replacment */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 50, 40, 0.8), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-text {
    color: var(--white);
    text-align: center;
}

@media (min-width: 768px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-actions {
        justify-content: flex-start;
    }
}

/* Booking Form */
.booking-form-card {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4B5563;
    /* Gray 600 */
    margin-bottom: 0.25rem;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    /* Gray 400 */
}

.form-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    /* Left padding for icon */
    border: 1px solid var(--gray-300);
    border-radius: 0.5rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
    box-sizing: border-box;
    /* Crucial for inputs */
}

.form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 137, 123, 0.1);
}

.full-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-separator svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

@media (min-width: 768px) {
    .wave-separator svg {
        height: 100px;
    }
}

/* Packages Section */
.packages-section {
    background-color: #F9FAFB;
    /* Gray 50 */
    padding: 5rem 0;
}

.swiper-slide-custom {
    height: auto;
}

.card {
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.card-description {
    color: #6B7280;
    /* Gray 500 */
    font-size: 0.875rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Section */
.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    background-color: #FEF3C7;
    /* Yellow 100 */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s;
}

.service-card:hover .icon-circle {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Fleet Section */
.fleet-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0;
}

.fleet-card {
    background-color: #1F2937;
    /* Gray 800 */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #374151;
    /* Gray 700 */
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-0.5rem);
}

.fleet-image-wrap {
    height: 14rem;
    background-color: #374151;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(to top, #111827, transparent);
}

.fleet-content {
    padding: 1.5rem;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.fleet-type-badge {
    background-color: rgba(0, 137, 123, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #D1D5DB;
    /* Gray 300 */
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
}

.avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E5E7EB;
}

.stars {
    color: #EAB308;
    /* Yellow 500 */
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Popular Routes Section */
.popular-routes-section {
    background-color: #F9FAFB;
    /* Light background */
    padding: 5rem 0;
}

.popular-routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 1.5rem;
}

@media (min-width: 500px) {
    .popular-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Small Tablet/Large Phone: 2 columns */
    }
}

@media (min-width: 768px) {
    .popular-routes-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 columns */
    }
}

@media (min-width: 1024px) {
    .popular-routes-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Laptop/Desktop: 4 columns */
    }
}

.route-item {
    display: block;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.2s ease;
    border-radius: 0.25rem;
}

.route-item:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
    /* Slight background on hover for better UX */
}

.routes-collapsed {
    max-height: 400px;
    overflow: hidden;
    position: relative;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Services Section */
.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    background-color: #FEF3C7;
    /* Yellow 100 */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin: 0 auto 1.5rem auto;
    transition: all 0.3s;
}

.service-card:hover .icon-circle {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Fleet Section */
.fleet-section {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5rem 0;
}

.fleet-card {
    background-color: #1F2937;
    /* Gray 800 */
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid #374151;
    /* Gray 700 */
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-0.5rem);
}

.fleet-image-wrap {
    height: 14rem;
    background-color: #374151;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: linear-gradient(to top, #111827, transparent);
}

.fleet-content {
    padding: 1.5rem;
}

.fleet-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.fleet-type-badge {
    background-color: rgba(0, 137, 123, 0.2);
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #D1D5DB;
    /* Gray 300 */
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
    height: 100%;
}

.avatar {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E5E7EB;
}

.stars {
    color: #EAB308;
    /* Yellow 500 */
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

/* Popular Routes Section */
.popular-routes-section {
    background-color: #F9FAFB;
    /* Light background */
    padding: 5rem 0;
}

.popular-routes-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: 1.5rem;
}

@media (min-width: 500px) {
    .popular-routes-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Small Tablet/Large Phone: 2 columns */
    }
}

@media (min-width: 768px) {
    .popular-routes-grid {
        grid-template-columns: repeat(3, 1fr);
        /* Tablet: 3 columns */
    }
}

@media (min-width: 1024px) {
    .popular-routes-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Laptop/Desktop: 4 columns */
    }
}

.route-item {
    display: block;
    padding: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.2s ease;
    border-radius: 0.25rem;
}

.route-item:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
    /* Slight background on hover for better UX */
}

.routes-collapsed {
    max-height: 400px;
    overflow: hidden;
    position: relative;
    /* Optional: Fade effect */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.routes-expanded {
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
}

/* =========================================
   New Global Footer Styles
   ========================================= */
footer {
    background-color: var(--secondary-color);
    /* Dark Blue Background */
    color: #ccc;
    padding-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    /* Teal highlight */
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}


.social-icons {
    display: flex;
    gap: 15px;
    /* Space between icons */
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--white);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #00695C;
    /* Darker Blue/Teal shade */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* =========================================
   Responsive Design Utilities (Mobile/Tablet)
   ========================================= */

/* Tablet & Mobile (Below 992px) */
@media (max-width: 992px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Stack Grids */
    .footer-content,
    .cities-grid,
    .branches-grid,
    .popular-routes-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Inner Pages Layout (Sidebar Stacking) */
    .content-wrapper {
        grid-template-columns: 1fr !important;
    }

    .image-section {
        position: static !important;
        margin-bottom: 40px;
        order: -1;
        /* Image on top for visual appeal */
    }
}

/* Mobile Devices (Below 768px) */
@media (max-width: 768px) {

    /* Typography */
    h1,
    .hero-title,
    .page-title {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }

    h2,
    .section-title {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }

    p,
    .hero-description {
        font-size: 1rem !important;
    }

    /* Layouts to 1 Column */
    .footer-content,
    .cities-grid,
    .branches-grid,
    .popular-routes-grid,
    .stats-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    /* Forms */
    /* Forms */
    .newsletter-form {
        flex-direction: row !important;
    }

    .newsletter-form input {
        border-radius: 4px 0 0 4px;
        margin-bottom: 0;
        width: auto;
        flex: 1;
    }

    .newsletter-form button {
        border-radius: 0 4px 4px 0;
        width: auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    /* Booking Form */
    .booking-form-card {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* Spacing */
    section {
        padding: 40px 0 !important;
    }

    .footer-content {
        gap: 30px;
    }
}