/* 
 * Skyways Transport - Home Page Styles
 * Modern, lightweight, and responsive design
 * Two-card layout: Hero card with background image and form card overlay
 */

/* Hero Section Wrapper */
.hero-section-wrapper {
    position: relative;
    padding: 40px 0 60px;
    min-height: 600px;
}

/* First Card: Hero Section with Background Image */
.hero-card {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 51, 102, 0.75) 100%); */
    z-index: 1;
}

/* Content with padding on top left and right */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 80px 60px 200px;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
}

.hero-content {
    color: white;
    max-width: 60%;
}

.hero-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

/* Second Card: Booking Form (40% width, positioned on first card) */
.booking-form-card-wrapper {
    position: relative;
    margin-top: -120px;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.booking-form-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 80%;
    max-width: 90%;
    /* min-width: 400px; */
}

.booking-form .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Searchable Select */
.searchable-select-wrapper {
    position: relative;
}

.searchable-input {
    padding-right: 40px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    height: 50px;
}

.searchable-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    outline: none;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.searchable-select-wrapper.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.searchable-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.searchable-dropdown.show {
    display: block;
}

.dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item.no-results {
    color: #999;
    cursor: default;
    font-style: italic;
}

.dropdown-item.no-results:hover {
    background-color: transparent;
}

/* Date Input */
.date-input-wrapper {
    position: relative;
}

.date-input {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding-right: 40px;
    height: 50px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.date-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
    outline: none;
}

.date-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 18px;
}

/* Book Ticket Button */
.btn-book-ticket {
    background: #000066;
    color: white;
    border: none;
    padding: 10px 20px;
    /* font-size: 18px; */
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    /* width: 100%; */
}

.btn-book-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.btn-book-ticket:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1600px) {
    .hero-content-wrapper {
        padding: 70px 50px 180px;
    }
    
    .hero-title {
        font-size: 1.9rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .booking-form-card-wrapper {
        margin-top: -110px;
    }
}

@media (max-width: 1400px) {
    .hero-section-wrapper {
        padding: 35px 0 55px;
    }
    
    .hero-card {
        min-height: 480px;
    }
    
    .hero-content-wrapper {
        padding: 60px 45px 170px;
    }
    
    .hero-content {
        max-width: 65%;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .booking-form-card-wrapper {
        margin-top: -100px;
    }
    
    .booking-form-card {
        width: 75%;
    }
}

@media (max-width: 1200px) {
    .hero-section-wrapper {
        padding: 30px 0 50px;
        min-height: 550px;
    }
    
    .hero-card {
        min-height: 450px;
    }
    
    .hero-content-wrapper {
        padding: 50px 40px 160px;
    }
    
    .hero-content {
        max-width: 70%;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .booking-form-card {
        width: 70%;
        padding: 18px;
    }
    
    .booking-form-card-wrapper {
        margin-top: -90px;
    }
}

@media (max-width: 992px) {
    .hero-section-wrapper {
        padding: 25px 0 45px;
        min-height: 500px;
    }
    
    .hero-card {
        min-height: 420px;
    }
    
    .hero-content-wrapper {
        padding: 45px 35px 150px;
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .booking-form-card {
        width: 85%;
        padding: 18px;
    }
    
    .booking-form-card-wrapper {
        margin-top: -80px;
    }
    
    .booking-form .form-label {
        font-size: 13px;
    }
    
    .searchable-input,
    .date-input {
        height: 48px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .hero-section-wrapper {
        padding: 20px 0 40px;
        min-height: 450px;
    }
    
    .hero-card {
        min-height: 380px;
        border-radius: 12px;
    }
    
    .hero-content-wrapper {
        padding: 35px 25px 130px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 1.35rem;
        margin-bottom: 12px;
        line-height: 1.25;
    }
    
    .hero-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .booking-form-card {
        width: 92%;
        padding: 18px;
        border-radius: 12px;
    }
    
    .booking-form-card-wrapper {
        margin-top: -70px;
    }
    
    .booking-form .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .searchable-input,
    .date-input {
        height: 45px;
        font-size: 14px;
    }
    
    .btn-book-ticket {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section-wrapper {
        padding: 15px 0 35px;
        min-height: 400px;
    }
    
    .hero-card {
        min-height: 350px;
        border-radius: 10px;
    }
    
    .hero-content-wrapper {
        padding: 30px 20px 120px;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .booking-form-card {
        width: 95%;
        padding: 15px;
        border-radius: 10px;
    }
    
    .booking-form-card-wrapper {
        margin-top: -60px;
    }
    
    .booking-form .row.g-3 {
        margin: 0;
    }
    
    .booking-form .col-lg-4,
    .booking-form .col-md-4,
    .booking-form .col-sm-12 {
        padding: 0;
        margin-bottom: 12px;
    }
    
    .booking-form .form-label {
        font-size: 11px;
        margin-bottom: 5px;
    }
    
    .searchable-input,
    .date-input {
        height: 42px;
        font-size: 13px;
    }
    
    .btn-book-ticket {
        padding: 10px 18px;
        font-size: 13px;
        width: 100%;
    }
    
    .dropdown-item {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .hero-section-wrapper {
        padding: 12px 0 30px;
        min-height: 350px;
    }
    
    .hero-card {
        min-height: 320px;
    }
    
    .hero-content-wrapper {
        padding: 25px 15px 110px;
    }
    
    .hero-title {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.75rem;
    }
    
    .booking-form-card {
        width: 98%;
        padding: 12px;
    }
    
    .booking-form-card-wrapper {
        margin-top: -50px;
    }
    
    .searchable-input,
    .date-input {
        height: 40px;
        font-size: 12px;
    }
    
    .btn-book-ticket {
        padding: 9px 15px;
        font-size: 12px;
    }
}

/* Scrollbar Styling for Dropdown */
.searchable-dropdown::-webkit-scrollbar {
    width: 8px;
}

.searchable-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.searchable-dropdown::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.searchable-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Terminals Section */
.terminals-section {
    position: relative;
    padding: 80px 0;
    min-height: 405px;
    background: #FFF0E8;
    overflow: hidden;
}

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

.terminals-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.terminals-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 240, 232, 0.85);
    z-index: 1;
}

.terminals-content {
    position: relative;
    z-index: 2;
}

.terminals-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin-bottom: 20px;
}

.terminals-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 50px;
    max-width: 732px;
}

.terminals-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.terminal-card {
    box-sizing: border-box;
    background: white;
    border: 1px solid #000065;
    border-radius: 6px;
    padding: 16px;
    min-height: 119px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.terminal-name {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    margin: 0 0 8px 0;
    padding: 0;
}

.terminal-address {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #000000;
    margin: 0 0 8px 0;
    padding: 0;
}

.terminal-phone {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Responsive Design for Terminals Section */
@media (max-width: 1200px) {
    .terminals-section {
        padding: 60px 0;
    }
    
    .terminals-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .terminals-description {
        font-size: 18px;
        line-height: 22px;
    }
    
    .terminals-cards-wrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (max-width: 992px) {
    .terminals-section {
        padding: 50px 0;
    }
    
    .terminals-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .terminals-description {
        font-size: 17px;
        line-height: 21px;
        margin-bottom: 40px;
    }
    
    .terminals-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .terminal-card {
        min-height: 110px;
        padding: 14px;
    }
}

@media (max-width: 768px) {
    .terminals-section {
        padding: 40px 0;
    }
    
    .terminals-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .terminals-description {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 35px;
    }
    
    .terminals-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .terminal-card {
        min-height: 105px;
        padding: 12px;
    }
    
    .terminal-name {
        font-size: 14px;
        line-height: 17px;
    }
    
    .terminal-address {
        font-size: 11px;
        line-height: 14px;
    }
    
    .terminal-phone {
        font-size: 13px;
        line-height: 16px;
    }
}

@media (max-width: 576px) {
    .terminals-section {
        padding: 30px 0;
    }
    
    .terminals-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .terminals-description {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 30px;
    }
    
    .terminals-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .terminal-card {
        min-height: 100px;
        padding: 12px;
    }
    
    .terminal-name {
        font-size: 13px;
        line-height: 16px;
    }
    
    .terminal-address {
        font-size: 11px;
        line-height: 13px;
    }
    
    .terminal-phone {
        font-size: 12px;
        line-height: 15px;
    }
}

/* About Us Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bus-image {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.about-content-wrapper {
    display: flex;
    flex-direction: column;
}

.about-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 10px;
}

.about-main-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin: 0 0 30px 0;
    padding: 0;
}

.about-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 35px;
    line-height: 42px;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
}

.about-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #242424;
    margin: 0 0 25px 0;
    padding: 0;
    max-width: 440px;
}

.about-features-box {
    background: #FFF8F4;
    border-radius: 6px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 440px;
}

.about-feature {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

.about-feature-separator {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

/* Responsive Design for About Section */
@media (max-width: 1200px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-wrapper {
        gap: 35px;
    }
    
    .about-main-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .about-subtitle {
        font-size: 30px;
        line-height: 36px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 18px;
    }
    
    .about-feature,
    .about-feature-separator {
        font-size: 15px;
        line-height: 18px;
    }
}

@media (max-width: 992px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image-wrapper {
        order: 1;
    }
    
    .about-content-wrapper {
        order: 2;
    }
    
    .about-main-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .about-subtitle {
        font-size: 28px;
        line-height: 34px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 18px;
        max-width: 100%;
    }
    
    .about-features-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-label {
        font-size: 18px;
        line-height: 22px;
    }
    
    .about-main-title {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 25px;
    }
    
    .about-subtitle {
        font-size: 26px;
        line-height: 31px;
        margin-bottom: 18px;
    }
    
    .about-description {
        font-size: 14px;
        line-height: 17px;
        margin-bottom: 20px;
    }
    
    .about-features-box {
        padding: 12px 16px;
        gap: 8px;
    }
    
    .about-feature,
    .about-feature-separator {
        font-size: 14px;
        line-height: 17px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 30px 0;
    }
    
    .about-label {
        font-size: 16px;
        line-height: 20px;
    }
    
    .about-main-title {
        font-size: 22px;
        line-height: 27px;
        margin-bottom: 20px;
    }
    
    .about-subtitle {
        font-size: 24px;
        line-height: 29px;
        margin-bottom: 15px;
    }
    
    .about-description {
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 18px;
    }
    
    .about-features-box {
        padding: 10px 14px;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .about-feature-separator {
        display: none;
    }
    
    .about-feature {
        font-size: 13px;
        line-height: 16px;
    }
}

/* Bus Features Section */
.bus-features-section {
    padding: 80px 0;
    background: #FFF0E8;
}

.bus-features-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 15px;
}

.bus-features-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 15px;
}

.bus-features-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 765px;
}

.bus-features-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
    margin: 0;
    padding: 0;
    max-width: 908px;
}

.bus-features-carousel-container {
    position: relative;
    overflow: hidden;
}

.bus-features-carousel-wrapper {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: 100%;
}

.bus-feature-card {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 30px 20px;
    min-width: calc(33.333% - 14px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bus-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.bus-feature-icon {
    width: 117px;
    height: 116px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bus-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bus-feature-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin: 0 0 15px 0;
    padding: 0;
}

.bus-feature-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #242424;
    margin: 0;
    padding: 0;
    max-width: 300px;
}

.bus-features-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: #000066;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.pagination-dot.active {
    background: #000066;
    opacity: 1;
}

.pagination-dot:not(.active) {
    background: #000066;
    opacity: 0.3;
}

.pagination-dot:hover {
    opacity: 0.7;
    transform: scale(1.2);
}

/* Responsive Design for Bus Features Section */
@media (max-width: 1200px) {
    .bus-features-section {
        padding: 60px 0;
    }
    
    .bus-features-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .bus-features-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .bus-feature-card {
        min-width: calc(33.333% - 14px);
        padding: 25px 18px;
    }
    
    .bus-feature-icon {
        width: 100px;
        height: 100px;
    }
    
    .bus-feature-title {
        font-size: 18px;
        line-height: 22px;
    }
    
    .bus-feature-description {
        font-size: 14px;
        line-height: 17px;
    }
}

@media (max-width: 992px) {
    .bus-features-section {
        padding: 50px 0;
    }
    
    .bus-features-header {
        margin-bottom: 40px;
    }
    
    .bus-features-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .bus-features-description {
        font-size: 15px;
        line-height: 19px;
    }
    
    .bus-feature-card {
        min-width: calc(50% - 10px);
        padding: 25px 18px;
    }
    
    .bus-feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .bus-feature-title {
        font-size: 17px;
        line-height: 21px;
    }
    
    .bus-feature-description {
        font-size: 13px;
        line-height: 16px;
    }
}

@media (max-width: 768px) {
    .bus-features-section {
        padding: 40px 0;
    }
    
    .bus-features-header {
        margin-bottom: 35px;
    }
    
    .bus-features-label {
        font-size: 18px;
        line-height: 22px;
    }
    
    .bus-features-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .bus-features-description {
        font-size: 14px;
        line-height: 18px;
    }
    
    .bus-feature-card {
        min-width: calc(50% - 10px);
        padding: 20px 15px;
    }
    
    .bus-feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .bus-feature-title {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 12px;
    }
    
    .bus-feature-description {
        font-size: 12px;
        line-height: 15px;
    }
}

@media (max-width: 576px) {
    .bus-features-section {
        padding: 30px 0;
    }
    
    .bus-features-header {
        margin-bottom: 30px;
    }
    
    .bus-features-label {
        font-size: 16px;
        line-height: 20px;
    }
    
    .bus-features-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .bus-features-description {
        font-size: 13px;
        line-height: 17px;
    }
    
    .bus-feature-card {
        min-width: 100%;
        padding: 20px 15px;
    }
    
    .bus-feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
    
    .bus-feature-title {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 10px;
    }
    
    .bus-feature-description {
        font-size: 11px;
        line-height: 14px;
    }
    
    .bus-features-pagination {
        margin-top: 30px;
    }
    
    .pagination-dot {
        width: 12px;
        height: 12px;
    }
}

/* Booking Guide & Mobile App Section */
.booking-guide-section {
    padding: 80px 0;
    background: #fff;
}

.booking-guide-top {
    margin-bottom: 50px;
    padding: 0 15px;
}

.booking-guide-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 15px;
    text-align: center;
}

.booking-guide-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
    max-width: 822px;
}

.booking-guide-intro {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #242424;
    margin: 0 0 30px 0;
    padding: 0;
    max-width: 849px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 5px;
    /* max-width: 622px; */
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* font-family: 'Inter', sans-serif; */
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 26px;
    color: #000000;
}

.step-number {
    flex-shrink: 0;
    font-weight: 700;
}

.step-text {
    flex: 1;
}

/* Mobile App Section */
.mobile-app-section {
    background: url('../images/section6thbg.png') center/cover no-repeat;
    border-radius: 6px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 358px;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
    border-radius: 6px;
}

.mobile-app-content {
    position: relative;
    z-index: 1;
    max-width: 849px;
}

.mobile-app-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0 0 15px 0;
    padding: 0;
}

.mobile-app-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    padding: 0;
}

.mobile-app-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0 0 30px 0;
    padding: 0;
}

.app-store-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.app-store-badge {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-badge:hover {
    transform: translateY(-3px);
}

.app-store-badge img {
    height: 62px;
    width: auto;
    display: block;
}

/* Responsive Design for Booking Guide Section */
@media (max-width: 1200px) {
    .booking-guide-section {
        padding: 60px 0;
    }
    
    .booking-guide-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .booking-guide-intro {
        font-size: 16px;
        line-height: 20px;
    }
    
    .booking-step {
        font-size: 16px;
        line-height: 24px;
    }
    
    .mobile-app-section {
        padding: 50px 35px;
    }
    
    .mobile-app-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .mobile-app-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .mobile-app-description {
        font-size: 16px;
        line-height: 20px;
    }
}

@media (max-width: 992px) {
    .booking-guide-section {
        padding: 50px 0;
    }
    
    .booking-guide-top {
        margin-bottom: 40px;
    }
    
    .booking-guide-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .booking-guide-intro {
        font-size: 15px;
        line-height: 19px;
    }
    
    .booking-step {
        font-size: 15px;
        line-height: 23px;
    }
    
    .mobile-app-section {
        padding: 45px 30px;
    }
    
    .mobile-app-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .mobile-app-subtitle {
        font-size: 17px;
        line-height: 21px;
    }
    
    .mobile-app-description {
        font-size: 15px;
        line-height: 19px;
    }
    
    .app-store-badge img {
        height: 55px;
    }
}

@media (max-width: 768px) {
    .booking-guide-section {
        padding: 40px 0;
    }
    
    .booking-guide-top {
        margin-bottom: 35px;
    }
    
    .booking-guide-label {
        font-size: 18px;
        line-height: 22px;
    }
    
    .booking-guide-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .booking-guide-intro {
        font-size: 14px;
        line-height: 18px;
    }
    
    .booking-steps {
        gap: 12px;
    }
    
    .booking-step {
        font-size: 14px;
        line-height: 21px;
    }
    
    .mobile-app-section {
        padding: 40px 25px;
    }
    
    .mobile-app-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .mobile-app-subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    
    .mobile-app-description {
        font-size: 14px;
        line-height: 18px;
    }
    
    .app-store-badge img {
        height: 50px;
    }
}

@media (max-width: 576px) {
    .booking-guide-section {
        padding: 30px 0;
    }
    
    .booking-guide-top {
        margin-bottom: 30px;
    }
    
    .booking-guide-label {
        font-size: 16px;
        line-height: 20px;
    }
    
    .booking-guide-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .booking-guide-intro {
        font-size: 13px;
        line-height: 17px;
    }
    
    .booking-steps {
        gap: 10px;
    }
    
    .booking-step {
        font-size: 13px;
        line-height: 19px;
        gap: 8px;
    }
    
    .mobile-app-section {
        padding: 35px 20px;
    }
    
    .mobile-app-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .mobile-app-subtitle {
        font-size: 15px;
        line-height: 19px;
    }
    
    .mobile-app-description {
        font-size: 13px;
        line-height: 17px;
    }
    
    .app-store-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-store-badge img {
        height: 45px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    box-sizing: border-box;
    background: #FFFFFF;
    border-bottom: 1px solid #000065;
    display: flex;
    flex-direction: column;
    height: 470px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: space-between;
}

.service-card-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: #000065;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
}

.service-card-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    margin: 0 0 20px 0;
    padding: 0;
    text-align: center;
    flex: 1;
}

.service-card-button {
    width: 145px;
    height: 36px;
    background: #EF782C;
    border: none;
    border-radius: 0;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: auto;
}

.service-card-button:hover {
    background: #d6681f;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(239, 120, 44, 0.3);
}

.service-card-button:active {
    transform: translateY(0);
}

/* Responsive Design for Services Section */
@media (max-width: 1200px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-cards-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
    
    .service-card {
        height: 450px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-content {
        padding: 18px;
    }
    
    .service-card-title {
        font-size: 14px;
        line-height: 17px;
    }
    
    .service-card-description {
        font-size: 13px;
        line-height: 16px;
    }
    
    .service-card-button {
        width: 130px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card {
        height: 470px;
    }
    
    .service-card-image {
        height: 190px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 15px;
        line-height: 18px;
    }
    
    .service-card-description {
        font-size: 14px;
        line-height: 17px;
    }
    
    .service-card-button {
        width: 145px;
        height: 36px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .service-card {
        height: 450px;
    }
    
    .service-card-image {
        height: 170px;
    }
    
    .service-card-content {
        padding: 18px;
    }
    
    .service-card-title {
        font-size: 14px;
        line-height: 17px;
    }
    
    .service-card-description {
        font-size: 13px;
        line-height: 16px;
    }
    
    .service-card-button {
        width: 130px;
        height: 34px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 30px 0;
    }
    
    .services-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        height: auto;
        min-height: 400px;
    }
    
    .service-card-image {
        height: 180px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 14px;
        line-height: 17px;
    }
    
    .service-card-description {
        font-size: 13px;
        line-height: 16px;
    }
    
    .service-card-button {
        width: 120px;
        height: 32px;
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FFF0E8;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 15px;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin: 0 0 15px 0;
    padding: 0;
}

.faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    margin: 0;
    padding: 0;
    max-width: 686px;
    margin-left: auto;
    margin-right: auto;
}

.faq-container {
    background: #FFFFFF;
    border-radius: 6px;
    padding: 30px 20px;
    max-width: 1052px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #C3BCBC;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-icon {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 47px;
    line-height: 57px;
    color: #000000;
    flex-shrink: 0;
    width: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    font-weight: 500;
}

.faq-item:not(.active) .faq-icon {
    font-weight: 300;
}

.faq-question-text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
    flex: 1;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 46px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 46px 20px 46px;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 19px;
    line-height: 23px;
    color: #000000;
    margin: 0;
    padding: 0;
}

/* Responsive Design for FAQ Section */
@media (max-width: 1200px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 25px 18px;
    }
    
    .faq-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .faq-subtitle {
        font-size: 18px;
        line-height: 22px;
    }
    
    .faq-question-text {
        font-size: 20px;
        line-height: 25px;
    }
    
    .faq-answer p {
        font-size: 17px;
        line-height: 21px;
    }
    
    .faq-icon {
        font-size: 42px;
        line-height: 52px;
        width: 28px;
    }
    
    .faq-answer {
        padding: 0 40px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 40px 18px 40px;
    }
}

@media (max-width: 992px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .faq-subtitle {
        font-size: 17px;
        line-height: 21px;
    }
    
    .faq-container {
        padding: 20px 15px;
    }
    
    .faq-question {
        padding: 18px 0;
        gap: 12px;
    }
    
    .faq-question-text {
        font-size: 19px;
        line-height: 24px;
    }
    
    .faq-answer p {
        font-size: 16px;
        line-height: 20px;
    }
    
    .faq-icon {
        font-size: 38px;
        line-height: 48px;
        width: 26px;
    }
    
    .faq-answer {
        padding: 0 38px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 38px 16px 38px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-header {
        margin-bottom: 35px;
    }
    
    .faq-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .faq-subtitle {
        font-size: 16px;
        line-height: 20px;
    }
    
    .faq-container {
        padding: 18px 12px;
    }
    
    .faq-question {
        padding: 15px 0;
        gap: 10px;
    }
    
    .faq-question-text {
        font-size: 18px;
        line-height: 23px;
    }
    
    .faq-answer p {
        font-size: 15px;
        line-height: 19px;
    }
    
    .faq-icon {
        font-size: 35px;
        line-height: 45px;
        width: 24px;
    }
    
    .faq-answer {
        padding: 0 34px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 34px 15px 34px;
    }
}

@media (max-width: 576px) {
    .faq-section {
        padding: 30px 0;
    }
    
    .faq-header {
        margin-bottom: 30px;
    }
    
    .faq-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .faq-subtitle {
        font-size: 15px;
        line-height: 19px;
    }
    
    .faq-container {
        padding: 15px 10px;
    }
    
    .faq-question {
        padding: 12px 0;
        gap: 8px;
    }
    
    .faq-question-text {
        font-size: 16px;
        line-height: 21px;
    }
    
    .faq-answer p {
        font-size: 14px;
        line-height: 18px;
    }
    
    .faq-icon {
        font-size: 32px;
        line-height: 42px;
        width: 22px;
    }
    
    .faq-answer {
        padding: 0 30px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 30px 12px 30px;
    }
}

/* Popular Routes Section */
.popular-routes-section {
    padding: 80px 0;
    /* background: #FFF0E8; */
}

.routes-header {
    text-align: left;
    margin-bottom: 60px;
    padding: 0 15px;
}

.routes-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    color: #000000;
    margin-bottom: 15px;
}

.routes-subtitle {
    display: none; /* Combined with title in Figma */
}

.routes-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000000;
    max-width: 688px;
    margin: 0 0 15px 0;
}

.routes-description:last-of-type {
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    color: #242424;
    max-width: 912px;
}

/* Routes Carousel Container */
.routes-carousel-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.carousel-nav-btn {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 18px;
    color: #000065;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 0;
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* Show navigation buttons on smaller screens */
@media (max-width: 1200px) {
    .carousel-nav-btn {
        display: flex;
    }
    
    .routes-carousel-container {
        padding: 0 70px;
    }
}

.routes-carousel-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    overflow: visible;
    transition: transform 0.3s ease;
    width: 100%;
}

/* On smaller screens, switch to flex for horizontal scrolling */
@media (max-width: 1200px) {
    .routes-carousel-wrapper {
        display: flex;
        grid-template-columns: none;
        overflow-x: visible;
    }
}

/* Route Card */
.route-card {
    width: 100%;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.route-card-inner {
    box-sizing: border-box;
    background: #FFF0E8;
    border: 1px solid #676767;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 307px;
    display: flex;
    flex-direction: column;
}

.route-card-inner:hover {
    border-color: #000;
}

.route-image {
    width: 100%;
    height: 197px;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 6px 6px 0 0;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.route-card-inner:hover .route-image img {
    transform: scale(1.05);
}

.route-content {
    padding: 10px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: #FFF0E8;
    position: relative;
}

.route-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    position: relative;
}

.route-price-label {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 13px;
    color: #6B6B6B;
    margin-right: 8px;
}

.route-price-amount {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #000000;
    flex: 1;
}

.route-price-arrow {
    width: 15px;
    height: 15px;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-title {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    color: #000000;
    /* margin: 0; */
    padding: 0;
    /* margin-top: auto; */
}

/* Responsive Design for Routes Section */
@media (max-width: 1200px) {
    .popular-routes-section {
        padding: 60px 0;
    }
    
    .routes-header {
        margin-bottom: 50px;
    }
    
    .routes-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .routes-description {
        font-size: 18px;
        line-height: 22px;
    }
    
    .routes-description:last-of-type {
        font-size: 14px;
        line-height: 17px;
    }
    
    .routes-carousel-container {
        padding: 0 60px;
    }
    
    .routes-carousel-wrapper {
        gap: 20px;
    }
    
    .route-card {
        min-width: calc(33.333% - 14px);
        flex-shrink: 0;
    }
    
    .route-card-inner {
        height: 280px;
    }
    
    .route-image {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .popular-routes-section {
        padding: 50px 0;
    }
    
    .routes-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .routes-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .routes-description {
        font-size: 17px;
        line-height: 21px;
    }
    
    .routes-description:last-of-type {
        font-size: 13px;
        line-height: 16px;
    }
    
    .routes-carousel-container {
        padding: 0 50px;
    }
    
    .carousel-nav-btn {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .routes-carousel-container {
        padding: 0 60px;
    }
    
    .routes-carousel-wrapper {
        gap: 18px;
    }
    
    .route-card {
        min-width: calc(50% - 9px);
        flex-shrink: 0;
    }
    
    .route-card-inner {
        height: 260px;
    }
    
    .route-image {
        height: 170px;
    }
}

@media (max-width: 768px) {
    .popular-routes-section {
        padding: 40px 0;
    }
    
    .routes-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .routes-title {
        font-size: 24px;
        line-height: 29px;
    }
    
    .routes-description {
        font-size: 16px;
        line-height: 20px;
    }
    
    .routes-description:last-of-type {
        font-size: 12px;
        line-height: 15px;
    }
    
    .routes-carousel-container {
        padding: 0 45px;
    }
    
    .carousel-nav-btn {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .routes-carousel-container {
        padding: 0 55px;
    }
    
    .routes-carousel-wrapper {
        gap: 15px;
    }
    
    .route-card {
        min-width: calc(50% - 8px);
        flex-shrink: 0;
    }
    
    .route-card-inner {
        height: 240px;
    }
    
    .route-image {
        height: 160px;
    }
    
    .route-content {
        padding: 8px;
    }
    
    .route-price-label {
        font-size: 10px;
        line-height: 12px;
    }
    
    .route-price-amount {
        font-size: 13px;
        line-height: 16px;
    }
    
    .route-price-arrow {
        width: 13px;
        height: 13px;
        font-size: 13px;
    }
    
    .route-title {
        font-size: 12px;
        line-height: 15px;
    }
}

@media (max-width: 576px) {
    .popular-routes-section {
        padding: 30px 0;
    }
    
    .routes-header {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .routes-title {
        font-size: 22px;
        line-height: 27px;
    }
    
    .routes-description {
        font-size: 15px;
        line-height: 19px;
    }
    
    .routes-description:last-of-type {
        font-size: 11px;
        line-height: 14px;
    }
    
    .routes-carousel-container {
        padding: 0 40px;
    }
    
    .carousel-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .routes-carousel-container {
        padding: 0 50px;
    }
    
    .routes-carousel-wrapper {
        gap: 15px;
    }
    
    .route-card {
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .route-card-inner {
        height: 220px;
    }
    
    .route-image {
        height: 145px;
    }
    
    .route-content {
        padding: 8px;
    }
    
    .route-price-label {
        font-size: 9px;
        line-height: 11px;
    }
    
    .route-price-amount {
        font-size: 12px;
        line-height: 15px;
    }
    
    .route-price-arrow {
        width: 12px;
        height: 12px;
        font-size: 12px;
    }
    
    .route-title {
        font-size: 11px;
        line-height: 14px;
    }
}
