/* ========== PREMIUM PRELOADER STYLES ========== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6e6e 0%, #0a5555 100%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.18, 1);
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    animation: pulse 1.5s ease infinite;
}

    .preloader-logo img {
        width: 100%;
        filter: brightness(0) invert(1);
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 20px;
    text-transform: uppercase;
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

    .loader-dots span {
        width: 10px;
        height: 10px;
        background: white;
        border-radius: 50%;
        animation: bounce 1.4s ease infinite;
    }

        .loader-dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes bounce {
    0%, 60%, 100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-15px);
    }
}

/* ========== TOP BAR STYLES ========== */
.top-bar, .main-header, .footer {
    font-family: 'Poppins', sans-serif;
}

.top-bar {
    background: #0a2b2e;
    color: white;
    font-size: 13px;
    padding: 8px 0;
}

    .top-bar a {
        color: #ffd700;
        text-decoration: none;
        transition: 0.3s;
    }

        .top-bar a:hover {
            color: white;
        }

.social-icons a {
    color: white;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

    .social-icons a:hover {
        color: #ffd700;
        transform: translateY(-2px);
    }

/* ========== MAIN HEADER STYLES ========== */
.main-header {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-area {
    padding: 15px 0;
}

.logo-img {
    height: 55px;
    margin-right: 12px;
}

.logo-text h2 {
    color: #0d6e6e;
    font-weight: 700;
    margin: 0;
    font-size: 1.5rem;
}

.logo-text p {
    margin: 0;
    font-size: 11px;
    color: #6c757d;
}

/* ========== MOBILE MENU BUTTON ========== */
.mobile-menu-btn {
    display: none;
    background: #0d6e6e;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 20px;
    transition: 0.3s;
    cursor: pointer;
}

    .mobile-menu-btn:hover {
        background: #0a5555;
    }

/* ========== NAVIGATION STYLES ========== */
.nav-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .nav-menu li a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 600;
        font-size: 15px;
        padding: 25px 0;
        display: inline-block;
        position: relative;
        transition: 0.3s;
    }

        .nav-menu li a:hover,
        .nav-menu li.active a {
            color: #0d6e6e;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 0;
            height: 3px;
            background: #ffc107;
            transition: 0.3s;
        }

        .nav-menu li a:hover::after,
        .nav-menu li.active a::after {
            width: 100%;
        }

/* ========== B2B BUTTONS (HEADER) ========== */
.b2b-buttons {
    display: flex;
    gap: 10px;
}

.btn-b2b {
    padding: 8px 18px !important;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: 2px solid #0d6e6e;
}

.btn-b2b-outline {
    background: transparent;
    color: #0d6e6e !important;
}

    .btn-b2b-outline:hover {
        background: #0d6e6e;
        color: white;
        transform: translateY(-2px);
    }

.btn-b2b-solid {
    background: #0d6e6e;
    color: white;
}

    .btn-b2b-solid:hover {
        background: #0a5555;
        transform: translateY(-2px);
    }

/* ========== LOGIN WRAPPER POSITIONING ========== */
.login-wrapper {
    height: 100%;
}

.login-card,
.recovery-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    overflow: hidden;
    height: 100%;
}

.login-header,
.recovery-header {
    background: #0d6efd;
    padding: 18px;
    color: #ffffff;
    text-align: center;
    padding: 18px 20px;
}


.login-body {
    padding: 20px;
}
    .login-body .mb-3:first-child {
        margin-top: 10px;
    }

.btn-login {
    width: 100%;
    display: inline-block;
    background: #0d6efd;
    color: #ffffff !important;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-login:hover {
        background: #0b5ed7;
    }

.btn-recovery {
    display: inline-block;
    background: #0d6efd;
    color: #ffffff !important;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.3s;
}

    .btn-recovery:hover {
        background: #0b5ed7;
    }

.btn-link-modern {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.form-control-modern {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 12px;
    outline: none;
    transition: 0.3s;
}

    .form-control-modern:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.15rem rgba(13,110,253,.25);
    }

.input-group-text-modern {
    background: #f8f9fa;
    border: 1px solid #dcdcdc;
    border-left: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-container {
    min-height: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    min-height: 650px;
    position: relative;
}

    .swiper-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.45);
    }

.swiper-slide-caption {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.text-with-outline {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

/* ========== DESTINATION CARDS STYLES ========== */
.destination-card {
    transition: all 0.4s ease;
    cursor: pointer;
}

    .destination-card:hover {
        transform: translateY(-8px) scale(1.01);
    }

    .destination-card img {
        transition: transform 0.5s ease;
    }

    .destination-card:hover img {
        transform: scale(1.08);
    }

/* ========== LOGIN FORM STYLES (Enhanced) ========== */
.login-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .login-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

.login-header {
    background: linear-gradient(135deg, #0d6e6e 0%, #0a5555 100%);
    padding: 15px;
    text-align: center;
}

    .login-header h5 {
        margin: 0;
        color: white;
        font-weight: 700;
        letter-spacing: 1px;
    }


.form-control-modern {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s;
}

    .form-control-modern:focus {
        border-color: #0d6e6e;
        box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.1);
        outline: none;
    }

.input-group-text-modern {
    background: white;
    border: 1px solid #e0e0e0;
    border-left: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    transition: all 0.3s;
}

    .input-group-text-modern:hover {
        background: #f8f9fa;
        color: #0d6e6e;
    }

.btn-login {
    background: linear-gradient(135deg, #0d6e6e 0%, #0a5555 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 110, 110, 0.3);
    }

.btn-link-modern {
    color: #0d6e6e;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

    .btn-link-modern:hover {
        color: #0a5555;
        text-decoration: underline;
    }

/* Recovery Password Card */
.recovery-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow:hidden;
    border: none;
}

.recovery-header {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 15px;
    text-align: center;
    border-radius: 20px 20px 0 0;
}

    .recovery-header h6 {
        margin: 0;
        color: white;
        font-weight: 700;
    }

.btn-recovery {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

    .btn-recovery:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
    }

/* ========== CAROUSEL SLIDER STYLES ========== */
.swiper-container,
.swiper-slider,
.swiper-slider-corporate {
    width: 100%;
    overflow: hidden;
}

.section.swiper-container {
    height: 85vh;
    min-height: 550px;
}

.swiper-wrapper {
    height: 100%;
}

.swiper-slider-corporate .swiper-slide {
    height: 85vh;
    min-height: 550px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.swiper-slide-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.swiper-slide .container {
    position: relative;
    z-index: 2;
}

.context-dark .container {
    position: relative;
    z-index: 5;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px !important;
    z-index: 20;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: #ffc107 !important;
    opacity: 1;
}

/* Text Styles for Slides */
.text-with-outline {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    color: #ffffff;
}

/* ========== SERVICES SECTION STYLES ========== */
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, #0d6e6e, #ffc107);
        border-radius: 3px;
    }

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(13, 110, 110, 0.15);
    }

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
}

/* ========== TEAM SECTION STYLES ========== */
.team-section {
    padding: 60px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.team-image {
    position: relative;
    padding: 30px 30px 0 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

    .team-image img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.team-info {
    padding: 20px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
}

.team-designation {
    font-size: 13px;
    color: #0d6e6e;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-phone {
    font-size: 14px;
    color: #6c757d;
}

    .team-phone a {
        color: #0d6e6e;
        text-decoration: none;
    }

        .team-phone a:hover {
            color: #0a5555;
        }

/* ========== FOOTER STYLES ========== */
.footer {
    background: #0a2b2e;
    color: #ecf0f1;
    padding-top: 50px;
    margin-top: 0;
}

    .footer h5 {
        color: #ffc107;
        font-weight: 600;
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    .footer a {
        color: #bdc3c7;
        text-decoration: none;
        transition: 0.3s;
    }

        .footer a:hover {
            color: #ffc107;
            padding-left: 5px;
        }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

        .footer-links li i {
            margin-right: 8px;
            width: 20px;
        }

.social-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

    .social-footer a:hover {
        background: #ffc107;
        color: #0a2b2e;
        transform: translateY(-3px);
    }

.footer-bottom {
    background: #051d1f;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
}
/* ============================= */
/* BEST DEAL MODAL STYLING */
/* ============================= */

.best-deal-modal .modal-dialog {
    width: auto !important;
    max-width: fit-content !important;
    margin: auto !important;
}

.best-deal-modal .modal-content {
    margin-top: 60px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    text-align: center;
}

/* IMAGE WRAPPER */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* MODAL IMAGE */
.best-deal-img {
    display: block;
    width: 50vw;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
}

/* CLOSE BUTTON */
.btn-close-custom {
    position: absolute !important;
    top: -15px !important;
    right: -15px !important;
    width: 45px !important;
    height: 45px !important;
    border: none !important;
    border-radius: 50% !important;
    background: #dc3545 !important;
    color: #fff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease !important;
}

    /* HOVER EFFECT */
    .btn-close-custom:hover {
        background: #bb2d3b !important;
        transform: scale(1.08);
    }

/* MODAL BACKDROP */
.best-deal-modal {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 768px) {

    .best-deal-img {
        width: 90vw;
        max-width: 95vw;
        max-height: 85vh;
    }

    .btn-close-custom {
        width: 38px !important;
        height: 38px !important;
        font-size: 22px !important;
        top: -10px !important;
        right: -10px !important;
    }
}

/* ========== RESPONSIVE STYLES ========== */
/* Tablet and Navigation */
@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

        .nav-menu.show {
            display: flex;
        }

        .nav-menu li a {
            padding: 12px 0;
            width: 100%;
        }

            .nav-menu li a::after {
                bottom: 8px;
            }

    .b2b-buttons {
        margin-top: 10px;
        justify-content: center;
    }

    .logo-text h2 {
        font-size: 1.2rem;
    }

    .logo-img {
        height: 45px;
    }

    .login-wrapper {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto;
        width: 100%;
        max-width: 400px;
    }

    .swiper-slider-corporate .swiper-slide,
    .section.swiper-container {
        height: 50vh;
        min-height: 400px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .top-bar .row > div {
        text-align: center !important;
        margin-bottom: 5px;
    }

    .social-icons {
        justify-content: center !important;
        margin-top: 5px;
    }

    .footer {
        text-align: center;
    }

    .social-footer {
        justify-content: center !important;
    }

    .service-card,
    .team-card {
        margin-bottom: 20px;
    }

    /* B2B Section Mobile */
    .b2b-section {
        padding: 25px 0;
        margin: 20px 0;
        border-radius: 15px;
    }

    .b2b-card {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .b2b-icon {
        width: 60px;
        height: 60px;
    }

        .b2b-icon i {
            font-size: 28px;
        }

    .b2b-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .b2b-card p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .b2b-btn {
        padding: 8px 20px;
        font-size: 12px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .b2b-card {
        padding: 15px 12px;
    }

    .b2b-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

        .b2b-icon i {
            font-size: 24px;
        }

    .b2b-card h3 {
        font-size: 16px;
    }

    .b2b-btn {
        padding: 6px 16px;
        font-size: 11px;
    }
}

/* ========== UTILITY CLASSES ========== */
.content {
    padding: 5px 0 !important;
}

.content-area {
    min-height: 70vh;
}

.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

a:focus, button:focus, .btn:focus, .form-control:focus {
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.text-gold {
    color: #ffc107;
}

.bg-teal {
    background: #0d6e6e;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border: 2px solid rgba(255,255,255,0.8);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background: #0d6e6e;
        color: #ffffff;
        border-color: #0d6e6e;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    }

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
}

.text-danger {
    color: #dc3545 !important;
}

/* Spacing Utilities */
.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.ms-2 {
    margin-left: 0.5rem;
}

.me-1 {
    margin-right: 0.25rem;
}

.me-2 {
    margin-right: 0.5rem;
}

/* ========================= */
/* DESKTOP HEADER SINGLE ROW */
/* ========================= */
@media (min-width: 992px) {

    .main-header .container > .row:first-child {
        display: flex;
        align-items: center;
    }

    .main-header .col-md-4,
    .main-header .col-md-8 {
        display: flex;
        align-items: center;
    }

        .main-header .col-md-8 > div {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin: 0;
        padding: 0;
    }

    .main-header .row:last-child {
        margin-top: -90px;
        justify-content: center;
    }

    .b2b-buttons {
        margin-left: auto;
    }
}

.package-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.horizontal-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 50px;
    scrollbar-width: none;
    width: 100%;
}

    .horizontal-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

.package-item {
    flex: 0 0 auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .carousel-nav:hover {
        background: #ffc107;
        color: black;
        transform: translateY(-50%) scale(1.1);
    }

.carousel-left {
    left: 0;
}

.carousel-right {
    right: 0;
}

.state-carousel-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.horizontal-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 50px;

    scrollbar-width: none;
    width: 100%;
}

.horizontal-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.destination-item {
    flex: 0 0 auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 65px;
    height: 65px;

    border: none;
    border-radius: 50%;

    background: rgba(0,0,0,0.6);
    color: white;

    font-size: 40px;
    font-weight: bold;

    cursor: pointer;

    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: #ffc107;
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.carousel-left {
    left: 0;
}

.carousel-right {
    right: 0;
}