@import url('https://fonts.googleapis.com/css2?family=Playball&family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Great+Vibes&display=swap');

html {
    scroll-behavior: smooth;
}

:root {
    --primary-green: #9c7c4c;
    --primary-green-dark: #7d6034;
    --accent-yellow: #cba15c;
    --white: #ffffff;
    --bg-light: #f3f5f4;
    --text-dark: #2d3748;
    --font-sans: 'Poppins', sans-serif;
    --font-title: 'Montserrat', sans-serif;
    --font-cursive: 'Playball', cursive;
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Integrated Banner Header */
.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 35px;
    margin: 0 auto 40px;
    width: 100%;
    max-width: 1300px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 100;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 0.85;
}

.logo-img {
    height: 52px;
    width: auto;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    margin-right: 24px;
}



.banner-hero-frame,
.mobile-explore-divider,
.banner-destinations-list,
.mobile-cta-book {
    display: none;
}

.header-nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s, transform 0.3s;
    position: relative;
}

.header-nav a:hover {
    color: var(--accent-yellow);
}

/* Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 11px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
    text-align: left;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-yellow);
    padding-left: 24px;
}

/* CTA Pay Now */
.cta-pay {
    background-color: var(--accent-yellow);
    color: var(--primary-green-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(242, 179, 26, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.cta-pay:hover {
    background-color: var(--white);
    color: var(--primary-green-dark);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-pay i {
    transition: transform 0.3s;
}

.cta-pay:hover i {
    transform: translateX(4px);
}

/* Banner Container */
.banner-container-new {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 0;
}

.banner-new {
    background-color: #0b1c3c;
    /* Dark blue from reference */
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
}

.banner-new-inner {
    display: flex;
    min-height: 700px;
    position: relative;
}

/* Banner Left Content Side */
.banner-content-side {
    width: 100%;
    /* Smooth linear gradient overlay from deep navy to transparent to support background image visibility on right */
    background: linear-gradient(90deg, #050f24 0%, #091733 25%, rgba(9, 23, 51, 0.85) 42%, rgba(9, 23, 51, 0.3) 55%, transparent 75%);
    padding: 60px 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.visual-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    background-color: #050f24;
}

.visual-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out;
}

.visual-bg-image.active {
    opacity: 1;
    z-index: 2;
    animation: backgroundSlide 12s infinite alternate ease-in-out;
}

.banner-visual-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 1;
}

@keyframes backgroundSlide {
    0% {
        transform: scale(1.05) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-1.5%, -0.7%);
    }
}

.content-text-block {
    margin-bottom: 35px;
    text-align: left;
    width: 55%;
}

.accent-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #cba15c;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.accent-explore::before,
.accent-explore::after {
    content: '';
    display: inline-block;
    width: 35px;
    height: 1px;
    background-color: rgba(203, 161, 92, 0.5);
}

.elegant-serif-title {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: 68px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.banner-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.accent-gold {
    color: #cba15c;
    font-weight: 600;
}

.banner-footer-details {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 55%;
    margin-bottom: 40px;
}

.banner-cta-book-new {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #d4af37 0%, #b2995f 100%);
    color: #0b1c3c;
    padding: 13px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(178, 153, 95, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-cta-book-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(178, 153, 95, 0.55);
    background: linear-gradient(135deg, #e5c050 0%, #c5aa70 100%);
    color: #051026;
}

.cta-arrow-circle {
    width: 24px;
    height: 24px;
    background-color: rgba(11, 28, 60, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b1c3c;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.banner-cta-book-new:hover .cta-arrow-circle {
    transform: translateX(4px);
    background-color: rgba(11, 28, 60, 0.2);
}

/* Trust Badges Styling */
.banner-trust-badges {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 35px;
    width: 65%;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.trust-badge-icon {
    color: #cba15c;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.trust-badge-item:hover .trust-badge-icon {
    transform: scale(1.15);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.trust-label {
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.trust-sub {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Scroll Indicators / Path decorative trails */
.dotted-trail {
    display: none;
}

/* Popular Packages Section below the hero */
.section-title {
    text-align: center;
    margin: 60px auto 40px;
    max-width: 600px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-green);
    font-weight: 800;
    text-transform: uppercase;
}

.section-title p {
    color: #718096;
    margin-top: 10px;
    font-size: 16px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.package-card {
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
    border: none;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-img {
    position: relative;
    height: 240px;
    overflow: visible;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-img img:not(.scrolling-image) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-img img:not(.scrolling-image) {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-yellow);
    color: var(--primary-green-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.package-price {
    position: absolute;
    bottom: 50px;
    /* Aligns with the top of the overlapping content box */
    right: 25px;
    transform: translateY(50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    z-index: 12;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover .package-price {
    transform: translateY(50%) scale(1.06);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.package-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: 0 80px 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: -50px 15px 10px 40px;
    /* Negative margin pulls content block up to overlap the image; left margin offsets it to the right */
    position: relative;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover .package-content {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
    transform: translateY(-2px);
}

.package-content h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 10px;
    font-weight: 700;
}

.package-rating {
    display: flex;
    gap: 4px;
    color: var(--accent-yellow);
    margin-bottom: 15px;
    font-size: 14px;
}

.package-rating span {
    color: #a0aec0;
    margin-left: 5px;
}

.package-details {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #edf2f7;
    color: #718096;
    font-size: 14px;
}

.package-details span i {
    color: var(--primary-green);
    margin-right: 5px;
}

/* Interactive Config Drawer */
.config-drawer {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    padding: 20px;
    z-index: 1000;
    width: 300px;
    transition: transform 0.3s ease;
    transform: translateY(120%);
}

.config-drawer.active {
    transform: translateY(0);
}

.config-toggle {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: transform 0.3s;
}

.config-toggle:hover {
    transform: scale(1.1);
}

.config-drawer h4 {
    margin-bottom: 15px;
    color: var(--primary-green);
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 5px;
}

.config-group {
    margin-bottom: 15px;
}

.config-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
}

.config-group input,
.config-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-family: inherit;
}

/* Animations */
@keyframes floatCloud1 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-8px) translateX(12px);
    }
}

@keyframes floatCloud2 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(10px) translateX(-15px);
    }
}

@keyframes floatCloud3 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-6px) translateX(-10px);
    }
}

@keyframes planeFly {

    0%,
    100% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(15px, -15px) rotate(10deg);
    }
}

@keyframes phoneShake {

    0%,
    100%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

@keyframes rotatePlane {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(15deg) scale(1.1);
    }
}

/* Responsive Styles */
@media (max-width: 1300px) {
    .banner-title {
        font-size: 50px;
    }

    .banner-title .packages {
        font-size: 60px;
    }

    .photo-frame {
        width: 180px;
        height: 180px;
    }

    .frame-2 {
        width: 200px;
        height: 200px;
    }

    .frame-3 {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 992px) {

    /* Header toggler and centering */
    .banner-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        border-radius: 30px;
        margin-bottom: 20px;
    }



    .logo-img {
        height: 32px;
    }

    .header-cta-pay {
        font-size: 13px !important;
        padding: 8px 16px !important;
        margin-right: 0 !important;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        gap: 15px;
        z-index: 999;
    }

    .header-nav.active {
        display: flex;
    }

    .nav-dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: none;
        margin-top: 10px;
        width: 100%;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Banner reordering and content layout */
    .banner-container-new {
        margin-top: 80px;
    }

    .banner-new-inner {
        flex-direction: column;
        min-height: auto;
    }

    .banner-content-side {
        width: 100%;
        padding: 40px 20px 50px 20px;
        background: #091733;
        order: 2;
    }

    .banner-visual-side {
        display: block;
        position: relative;
        width: 100%;
        height: 350px;
        top: auto;
        left: auto;
        order: 1;
    }

    .banner-visual-side::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, transparent, #091733);
        z-index: 5;
        pointer-events: none;
    }

    .visual-bg-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .content-text-block,
    .banner-footer-details {
        width: 100%;
    }

    .accent-explore {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .elegant-serif-title {
        font-size: 46px;
        margin-bottom: 15px;
    }

    .banner-subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .banner-footer-details {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .banner-cta-book-new {
        margin: 10px 0;
    }

    .banner-trust-badges {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px 35px;
        margin-top: 30px;
        padding-top: 25px;
    }
}

@media (max-width: 576px) {
    .banner-promo-section {
        flex-direction: row;
        gap: 15px;
    }

    .discount-badge {
        padding: 8px 14px;
    }

    .discount-badge span:first-child {
        font-size: 9px;
    }

    .discount-badge span:last-child {
        font-size: 18px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-title .enjoy {
        font-size: 22px;
    }

    .banner-title .packages {
        font-size: 40px;
    }

    .banner-title .with-us {
        font-size: 22px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    /* Scaling down banner text on very small mobile screens */
    .banner-visual-side {
        min-height: 300px;
        height: 300px;
    }

    .accent-explore {
        font-size: 11px;
        margin-bottom: 10px;
        letter-spacing: 3px;
    }

    .elegant-serif-title {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .banner-subtitle {
        font-size: 14px;
        line-height: 1.4;
    }

    .banner-content-side {
        padding: 35px 15px 40px;
    }

    .banner-trust-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 25px;
        padding-top: 20px;
    }

    .trust-badge-item {
        gap: 10px;
    }
}

/* Scrolling Image Hover Effect */
.package-img.scrolling-wrapper {
    overflow: visible;
    position: relative;
    height: 240px;
    background-color: #f7fafc;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scrolling-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.scrolling-image {
    width: 100%;
    /* Frame full image width inside card container */
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 16s ease-in-out;
    /* Smooth ease-in-out scroll */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    z-index: 1;
}

/* Scroll image to bottom on card hover */
.package-card:hover .package-img .scrolling-image {
    transform: translate3d(0, calc(-100% + 240px), 0);
}

package-card:hover .package-img .scrolling-image {
    transform: translate3d(0, calc(-100% + 240px), 0);
}

/* ==========================================================================
   Mobile-Only Banner Redesign (Viewport < 992px)
   ========================================================================== */
.banner-container-mobile {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 992px) {

    /* Lock horizontal scrolling on mobile viewports completely */
    html,
    body {
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative !important;
    }

    /* Hide the old desktop banner container on mobile viewports */
    .banner-container-new {
        display: none !important;
    }

    /* Target headers on mobile packages page to float transparently over slide show */
    .th-header {
        background: linear-gradient(to bottom, rgba(5, 15, 36, 0.8) 0%, rgba(5, 15, 36, 0.4) 60%, transparent 100%) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        position: absolute !important;
        padding: 12px 0 !important;
        border-bottom: none !important;
        box-shadow: none !important;
    }

    .th-header.scrolled {
        background: rgba(9, 23, 51, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .banner-container-mobile {
        display: block !important;
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 640px;
        max-height: 820px;
        overflow: hidden;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    .banner-mobile {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 100px 24px 40px;
        box-sizing: border-box;
    }

    /* Mobile Background Slideshow */
    .mobile-bg-slideshow {
        position: absolute;
        inset: 0;
        z-index: 1;
        background-color: #091733;
        overflow: hidden;
    }

    .mobile-bg-image {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        z-index: 1;
        transition: opacity 1.5s ease-in-out;
        transform: scale(1.05);
        transform-origin: center center;
    }

    .mobile-bg-image.active {
        opacity: 1;
        z-index: 2;
        animation: mobileKenBurns 12s infinite alternate ease-in-out;
    }

    @keyframes mobileKenBurns {
        0% {
            transform: scale(1.05);
        }

        100% {
            transform: scale(1.12);
        }
    }

    /* Gradients over slideshow */
    .mobile-gradient-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(105deg, rgba(9, 23, 51, 0.96) 0%, rgba(9, 23, 51, 0.85) 30%, rgba(9, 23, 51, 0.3) 60%, transparent 95%),
            linear-gradient(0deg, rgba(9, 23, 51, 0.85) 0%, transparent 30%);
        z-index: 3;
        pointer-events: none;
    }

    /* Mobile Banner Content */
    .mobile-banner-content {
        position: relative;
        z-index: 5;
        margin-top: 25px;
        text-align: left;
        width: 100%;
        /* Text protection gradient overlay directly behind the text block */
        background: radial-gradient(ellipse at center left, rgba(9, 23, 51, 0.7) 0%, transparent 80%);
        padding: 15px;
        border-radius: 16px;
    }

    /* Accent Tagline with Palm Tree Icon Circle */
    .mobile-accent-explore {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .palm-icon-circle {
        width: 32px;
        height: 32px;
        background-color: #cba15c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .palm-icon-circle svg {
        width: 100%;
        height: 100%;
    }

    .mobile-cursive-text {
        font-family: 'Playball', 'Dancing Script', cursive;
        color: #cba15c;
        font-size: 26px;
        letter-spacing: 0.5px;
        text-transform: none;
        line-height: 1;
        display: inline-block;
    }

    /* Main Title and Subtitle */
    .mobile-elegant-title {
        font-family: 'Playfair Display', 'Cinzel', serif;
        font-size: 44px;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.15;
        margin-bottom: 15px;
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    }

    .mobile-subtitle {
        font-family: 'Poppins', 'Inter', sans-serif;
        font-size: 15px;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.5;
        margin-bottom: 25px;
        text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    }

    .mobile-subtitle .accent-gold {
        color: #cba15c;
        font-weight: 600;
    }

    /* CTA Button Explore Packages */
    .mobile-cta-wrapper {
        margin-top: 5px;
    }

    .mobile-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: linear-gradient(135deg, #e5c050 0%, #cba15c 100%);
        color: #0b1c3c;
        padding: 12px 26px;
        border-radius: 50px;
        font-family: 'Poppins', 'Inter', sans-serif;
        font-weight: 700;
        font-size: 13px;
        letter-spacing: 1px;
        text-transform: uppercase;
        text-decoration: none !important;
        box-shadow: 0 8px 20px rgba(203, 161, 92, 0.45);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .mobile-cta-btn:active {
        transform: translateY(1px);
        box-shadow: 0 4px 10px rgba(203, 161, 92, 0.3);
    }

    .mobile-cta-arrow {
        width: 26px;
        height: 26px;
        background-color: #0b1c3c;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #cba15c;
        padding: 2px;
        transition: transform 0.3s ease;
    }

    .mobile-cta-arrow svg {
        stroke-width: 3.5;
    }

    /* Floating Glassmorphic Search selector card */
    .mobile-search-card {
        position: relative;
        z-index: 15;
        width: 100%;
        background: rgba(9, 23, 51, 0.55);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 20px;
        padding: 18px 65px 18px 18px;
        /* Extra padding on right for search button */
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        margin-bottom: 25px;
    }

    .selector-field {
        position: relative;
        flex: 1;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
    }

    .selector-icon {
        color: rgba(255, 255, 255, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .selector-info {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .selector-label {
        font-family: 'Poppins', 'Inter', sans-serif;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }

    .selector-value-wrapper {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .selector-value {
        font-family: 'Poppins', 'Inter', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: #ffffff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 110px;
    }

    .chevron-svg {
        color: rgba(255, 255, 255, 0.8);
        flex-shrink: 0;
    }

    .selector-separator {
        width: 1px;
        height: 30px;
        background-color: rgba(255, 255, 255, 0.18);
    }

    /* Option Dropdown List Styling */
    .selector-dropdown-list {
        position: absolute;
        bottom: calc(100% + 15px);
        left: -10px;
        right: -10px;
        background: rgba(9, 23, 51, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 6px 0;
        z-index: 100;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    }

    .selector-dropdown-list.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-opt {
        padding: 10px 16px;
        font-family: 'Poppins', 'Inter', sans-serif;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.85);
        text-align: left;
        transition: background 0.2s, color 0.2s;
    }

    .dropdown-opt:hover,
    .dropdown-opt.active {
        background: rgba(203, 161, 92, 0.2);
        color: #cba15c;
        font-weight: 600;
    }

    /* Floating Search Circle Icon on card right side */
    .mobile-search-circle-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        background-color: #cba15c;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0b1c3c;
        box-shadow: 0 4px 15px rgba(203, 161, 92, 0.4);
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
    }

    .mobile-search-circle-btn:active {
        transform: translateY(-50%) scale(0.95);
        background-color: #e5c050;
    }

    .mobile-search-circle-btn svg {
        display: block;
        stroke-width: 3.5;
    }

    /* Slider Dot Indicators */
    .mobile-slider-dots {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        width: 100%;
        margin-bottom: 5px;
    }

    .mobile-slider-dots .dot {
        width: 6px;
        height: 6px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .mobile-slider-dots .dot.active {
        width: 18px;
        /* Elongated active pill dot */
        border-radius: 10px;
        background-color: #cba15c;
    }
}

/* Adjustments for smaller mobile devices */
@media (max-width: 480px) {
    .banner-mobile {
        padding: 90px 18px 30px;
    }

    .mobile-elegant-title {
        font-size: 36px;
    }

    .mobile-subtitle {
        font-size: 14px;
    }

    .mobile-accent-explore {
        margin-bottom: 15px;
    }

    .mobile-cursive-text {
        font-size: 24px;
    }

    .mobile-search-card {
        padding: 14px 60px 14px 14px;
        gap: 10px;
    }

    .selector-value {
        font-size: 12px;
        max-width: 90px;
    }

    .selector-label {
        font-size: 10px;
    }

    .mobile-search-circle-btn {
        width: 40px;
        height: 40px;
        right: 10px;
    }
}