body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #333;
}

.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: relative;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.left-section {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #333;
}

.logo a {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #0278F7;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #0278F7;
}

.login-btn {
    padding: 6px 12px;
    background: #f1f1f1;
    border-radius: 20px;
    font-weight: 600;
}

.burger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Slide Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 998;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 280px;
    background: white;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: right 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    font-size: 16px;
}

/* Active state */
.mobile-menu-overlay.open {
    display: block;
}

.mobile-menu.open {
    right: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-section {
        order: 1;
        margin-left: auto;
    }

    .logo {
        order: 0;
        flex: 0 0 auto;
    }
}


.hero {
    background: url('../images/cover.webp') no-repeat center/cover;
    color: white;
    text-align: center;
    padding: 300px 20px;
    /* Increased top and bottom padding for more height */
}

/* Mobile view adjustments (example for screens up to 768px wide) */
@media (max-width: 768px) {
    .hero {
        padding: 75px 15px;
        /* Slightly reduced padding for smaller screens */
    }
}

.popular-routes {
    background-color: #EDF6FF;
    text-align: center;
    padding: 40px 20px;
}

.section-title {
    font-size: 24px;
    color: #2b4e2e;
    font-weight: bold;
}

.section-subtitle {
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

.route-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.route-card {
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
}

.route-card:hover {
    transform: translateY(-5px);
}

/* .route-image {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.route-label {
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    font-size: 14px;
} */

.route-image {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.route-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

.route-label {
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    z-index: 2;
    /* Ensure it appears above the overlay */
}

.route-list {
    list-style: none;
    padding: 10px 15px 15px;
    margin: 0;
}

.route-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.route-list li:last-child {
    border-bottom: none;
}

.route-list li strong {
    font-weight: bold;
    color: #000;
    white-space: nowrap;
}

.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', sans-serif;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.office-group {
    margin-bottom: 30px;
}

.office-group-title {
    background-color: #0278F7;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
}

.office-card {
    background-color: #EDF6FF;
    border: 1px solid #0278F7;
    border-top: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-radius: 0 0 5px 5px;
    margin-top: 1px;
    flex-wrap: wrap;
}

.office-info {
    flex: 1;
    min-width: 200px;
}

.location-name {
    color: #0056b3;
    font-size: 16px;
}

.address {
    font-size: 14px;
    color: #333;
    margin: 4px 0 0;
}

.office-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-call {
    background-color: #043972;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-weight: bold;
    white-space: nowrap;
}

.icon-phone {
    margin-right: 6px;
}

.footer {
    background: #EDF6FF;
    color: black;
    padding: 40px 20px 20px;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column h4 {
    margin-bottom: 12px;
    color: #444;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-column li a {
    color: #888;
    text-decoration: none;
}

.hotline a.btn-call-hotline {
    color: #0056b3;
    font-weight: bold;
    text-decoration: none;
}


.hotline {
    font-size: 20px;
    margin-bottom: 12px;
}

.social-icons img {
    width: 32px;
    height: 32px;
    margin-right: 10px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* ===== MOBILE RESPONSIVE ===== */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer-column {
        min-width: 100%;
    }

    .hotline {
        font-size: 18px;
    }

    .social-icons {
        margin-top: 10px;
    }

    .footer {
        padding: 30px 16px 16px;
    }
}