/* Featured Routes Section */
.featured-routes-section {
    background-color: #002266;
    color: white;
    padding: 75px 130px 75px 130px;  
    height: 679px;
    background-image: url("../../public/world-icon.svg");
    background-position: center 56px;
    background-repeat: no-repeat;
    border-radius: 22px;
    position: relative;
    margin-top: 16px;
    width: 98%;
    margin: 0 auto;
}

.container {
    max-width: 1500px;
    overflow: hidden;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.title-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #0044a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    font-size: 36px;
    font-weight: normal;
    color: #e8effc;
    margin: 0;
}

/* Routes Slider */
.routes-slider {
    display: flex;
    gap: 12px;
    width: max-content;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: transform 0.3s ease-out;
}

.routes-slider:active {
    cursor: grabbing;
}

/* Route Cards */
.route-card {
    border-radius: 20px;
    width: 480px;
    padding: 30px 43px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.light-card {
    background-color: #E8EFFC;
    color: #0a2269;
}

.dark-card {
    background-color: #0044A6;
}

.darker-card {
    background-color: #032A79;
}

/* Service Type */
.service-type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.service-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
}

.maritimo-dot {
    background-color: #0054a6;
    background-image: url("../../public/maritime.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.air-dot {
    background-image: url("../../public/air.svg");
    background-position: center;
    background-repeat: no-repeat;
}

.dark-card .service-dot,
.darker-card .service-dot {
    background-color: #0044A6;
    border: 1px solid #707070;
}

.service-type span {
    color: #002266;
    font-size: 16px;
    font-weight: 400;
}

.dark-card .service-type span{
    color: #E8EFFC;
}

.darker-card .service-type span {
    color: #E8EFFC;
}

/* Route Name */
.route-name-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-name {
    font-size: 30px;
    font-weight: 400;
    color: #002266;
    margin: 0;
    line-height: 30px;
}

.dark-card .route-name {
    color: #e8effc;
}

.darker-card .route-name {
    color: #e8effc;
}

/* Progress Bar */
.route-progress {
    width: 100%;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    margin-bottom: 20px;
    margin-top: 33px;
    overflow: hidden;
}

.light-card .route-progress {
    background-color: rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    width: 100%;
    background-color: white;
}

/* Route Details */
.route-details {
    display: flex;
    gap: 20px;
}

.detail-column {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    font-weight: lighter;
    color: #012D74;
    margin-bottom: 5px;
}

.dark-card .detail-label {
    color: #E8EFFC;
}

.darker-card .detail-label {
    color: #E8EFFC;
}

.detail-value {
    font-size: 14px;
    font-weight: normal;
    padding: 7px 28px 7px 21px;
    background-color: #0044a617;
    border-radius: 3px;
    color: #0044A6;
    display: inline-block;
}

.light-card .detail-value {
    background-color: #0044a617;
}

.dark-card .detail-value {
    background-color: #e8effc5f;
    color: #e8effc;
}

.darker-card .detail-value {
    background-color: #e8effc5f;
    color: #e8effc;
}

/* Arrow Button */
.route-card-arrow-button {
    width: 57px;
    height: 57px;
    min-width: 57px;
    min-height: 57px;
    background-color: #0054a6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
    background-image: url("../../public/arrow_forward.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.route-card-arrow-button:hover {
    background-color: #003d7a;
}

.dark-card .arrow-button,
.darker-card .arrow-button {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 41px;
    right: 153px;
}

.nav-button {
    width: 53px;
    height: 53px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
    background-color: transparent;
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.prev-button img {
    rotate: 180deg;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .featured-routes-section {
        padding: 60px 100px;
        height: auto;
        min-height: 625px;
    }
    
    .route-card {
        width: 450px;
        padding: 40px 35px;
        max-height: 315px;
    }
    
    .slider-navigation {
        right: 100px;
    }
}

@media (max-width: 1200px) {
    .featured-routes-section {
        padding: 50px 80px;
        min-height: 550px;
        background-position: center 40px;
    }
    
    .route-name {
        font-size: 26px;
    }
    
    .slider-navigation {
        right: 80px;
    }
}

@media (max-width: 992px) {
    .featured-routes-section {
        padding: 40px 50px;
        margin: 0px 15px;
        min-height: 500px;
        background-size: 80%;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .route-name {
        font-size: 22px;
    }
    
    .slider-navigation {
        right: 50px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .featured-routes-section {
        padding: 40px 30px;
        margin: 0px 10px;
        background-position: center 30px;
        background-size: 90%;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .icon-circle {
        width: 35px;
        height: 35px;
    }
    
    .slider-navigation {
        position: relative;
        right: auto;
        justify-content: center;
        margin-top: 25px;
    }
}

@media (max-width: 576px) {
    .featured-routes-section {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0px 8px;
        background-position: center 20px;
        background-size: contain;
    }
    
    .container {
        width: 100%;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .icon-circle {
        width: 30px;
        height: 30px;
    }
    
    .route-card {
        padding: 20px 15px;
        height: auto;
        min-height: 220px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .route-name {
        font-size: 18px;
        width: 80%;
    }
    
    .slider-navigation {
        margin-top: 25px;
    }
}