@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --deep-navy: #040d1a;
    --navy-darker: #020811;
    --luxury-gold: #ffffff;
    --whatsapp-yellow: #ffcc33;
    --gold-glow: rgba(255, 204, 51, 0.4);
    --text-white: #ffffff;
    --text-dim: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-slow: all 1s cubic-bezier(0.2, 1, 0.3, 1);
    --transition-medium: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-medium);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Outfit', sans-serif;
    background-color: var(--deep-navy);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/stardust.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: -1;
}

/* --- Custom Cursor & Sparkles --- */
.custom-cursor {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 15px #fff, 0 0 30px #ffcc33;
    transition: transform 0.1s ease;
}

.sparkle-particle {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: #ffcc33;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    filter: blur(1px);
    box-shadow: 0 0 10px #ffcc33;
}

a:hover~.custom-cursor,
button:hover~.custom-cursor,
.card-float:hover~.custom-cursor {
    transform: scale(2.5);
    background: #ffcc33;
}

h1,
h2,
h3 {
    font-weight: 700;
}

section {
    scroll-margin-top: 180px;
    padding-top: 80px;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 100px;
        padding-top: 60px;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition-medium);
    display: flex;
    align-items: center;
}

header.scrolled {
    background: var(--navy-darker);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-medium);
}

.logo img {
    height: 160px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo img {
        height: 70px;
    }
}

.header-socials {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-socials a {
    color: var(--text-white);
    font-size: 1.1rem;
    transition: var(--transition-medium);
}

.header-socials a:hover {
    color: var(--luxury-gold);
    transform: translateY(-3px);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition-medium);
    opacity: 1;
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid transparent;
}

nav ul li a:hover {
    color: var(--luxury-gold);
    opacity: 1;
    font-weight: 700;
    background: rgba(255, 204, 51, 0.08);
    border: 1px solid rgba(255, 204, 51, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Header Components --- */
.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-enquire {
    padding: 12px 28px;
    background: var(--whatsapp-yellow);
    color: var(--deep-navy);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-medium);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-enquire:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--gold-glow);
    background: #fff;
}

.btn-primary {
    background: var(--whatsapp-yellow);
    color: var(--deep-navy);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 204, 51, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #128C7E;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* --- Navigation Highlight --- */
nav ul li a.nav-highlight {
    color: var(--luxury-gold);
    opacity: 1;
    font-weight: 700;
    padding: 6px 18px;
    background: rgba(255, 204, 51, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 204, 51, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- LUXURY CINEMATIC HERO --- */
.hero-scroll-container {
    height: 100vh;
    background-color: #050505;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.hero-sticky {
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

/* Layer 1: Background */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 10;
}

.hero-bg-media {
    width: 100%;
    height: 100%;
    background: url('home.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.6) blur(2px);
    transform: scale(1.05);
    will-change: transform, filter;
}

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(5, 5, 5, 0.8) 100%);
    z-index: 11;
}

/* Layer 2: Floating Cards */
.floating-cards-layer {
    position: absolute;
    inset: 0;
    z-index: 20;
    /* Middle layer */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.card-float {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 440px;
    margin-top: -220px;
    /* Half height to center */
    margin-left: -160px;
    /* Half width to center */
    border-radius: 40px;
    overflow: visible;
    opacity: 0;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.4s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-style: preserve-3d;
}

.card-float:hover {
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    z-index: 50;
}

.card-float:hover .card-inner {
    transform: translateY(-20px) scale(1.05);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.85;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.95);
}

.card-content p {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Layer 3: Typography */
.hero-text-layer {
    position: absolute;
    inset: 0;
    z-index: 30;
    /* Top layer: Always above cards */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.text-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    will-change: transform, opacity;
}

.text-block.active {
    opacity: 1;
}

.main-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.5rem, 11vw, 11vw);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 0.82;
    letter-spacing: -0.04em;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
    margin-bottom: 5px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.25em;
    color: #ffffff;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 500;
    padding-left: 1.25em;
    opacity: 0;
    transform: translateY(20px);
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 100px;
    backdrop-filter: blur(20px);
    transition: all 0.5s ease;
    pointer-events: all;
    margin-top: 50px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
    background: #fff;
    color: #000;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Mouse Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
}

.scroll-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-dot {
    width: 8px;
    height: 8px;
    background: #FFCC33;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 204, 51, 0.8);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 2s infinite;
}

@keyframes mouseWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 4rem;
    }

    .tagline {
        letter-spacing: 0.3em;
        font-size: 0.8rem;
    }

    .card-float {
        width: 280px;
        height: 380px;
        margin-top: -190px;
        margin-left: -140px;
    }

    .card-content h3 {
        font-size: 2.2rem;
    }
}

/* --- PREMIUM STATS SECTION --- */

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 1 !important;
}

.stat-card {
    background: transparent !important;
    border: none !important;
    padding: 30px 20px;
    border-radius: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: none !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
}

.stat-card:hover {
    background: transparent !important;
    border-color: transparent;
    transform: translateY(-10px);
    box-shadow: none !important;
}

.stat-icon-lux {
    font-size: 2rem;
    color: #ffcc33 !important;
    -webkit-text-fill-color: #ffcc33 !important;
    margin-bottom: 30px;
    opacity: 1 !important;
    text-shadow: none;
}

.stat-main {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    line-height: 1;
    text-shadow: none !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
}

.stat-suffix {
    font-size: 2.2rem;
    color: #ffcc33 !important;
    -webkit-text-fill-color: #ffcc33 !important;
    font-weight: 700;
    margin-left: 5px;
    text-shadow: none !important;
    opacity: 1 !important;
}

.stat-sep {
    font-size: 2.2rem;
    color: #ffcc33 !important;
    -webkit-text-fill-color: #ffcc33 !important;
    font-weight: 700;
    margin: 0 5px;
    text-shadow: none !important;
    opacity: 1 !important;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 700;
    opacity: 1 !important;
}

/* --- PREMIUM ABOUT SECTION --- */
.about-premium {
    padding: 0 0 100px 0;
    background: transparent;
    margin-top: -1px;
    /* Overlap slightly to prevent sub-pixel gaps */
}

.about-flex-container {
    display: flex;
    align-items: center;
    gap: 120px;
}

.about-visual {
    flex: 1.1;
}

.image-wrapper-fancy {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.image-wrapper-fancy img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge-lux {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: #ffcc33;
    padding: 35px;
    border-radius: 35px;
    color: #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    line-height: 1.3;
}

.about-text-content {
    flex: 1;
    opacity: 1 !important;
}

.about-description {
    font-size: 1.15rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 1 !important;
}

.features-grid-lux {
    display: grid;
    gap: 40px;
    margin: 50px 0;
}

.feature-card-lux {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.f-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 204, 51, 0.1);
    border: 1px solid rgba(255, 204, 51, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffcc33;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.f-info h4 {
    font-size: 1.4rem;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    margin-bottom: 10px;
    font-weight: 700;
    opacity: 1 !important;
}

.f-info p {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-size: 1rem;
    line-height: 1.6;
    opacity: 1 !important;
}

.btn-outline-premium {
    display: inline-block;
    padding: 18px 45px;
    background: #ffcc33;
    border: 1px solid #ffcc33;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    border-radius: 100px;
    transition: all 0.4s ease;
}

.btn-outline-premium:hover {
    background: #e6b800;
    color: #111;
    border-color: #e6b800;
    transform: translateY(-3px);
}

/* --- PREMIUM DESTINATIONS SECTION --- */
.destinations-premium {
    padding: 140px 0;
    background: transparent;
}

.section-header-center {
    text-align: center;
    margin-bottom: 70px;
}

.travel-category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.travel-tab-btn {
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.travel-tab-btn:hover,
.travel-tab-btn.active {
    background: #ffcc33;
    color: #000;
    border-color: #ffcc33;
    box-shadow: 0 10px 25px rgba(255, 204, 51, 0.2);
}

.travel-tab-btn:hover,
.trave.flip-wa-btn:hover {
    background: #fff;
    color: #D4AF37 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.view-details-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 10px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2px;
}

.view-details-link:hover {
    color: #D4AF37;
    border-bottom-color: #D4AF37;
    padding-left: 5px;
}

.view-details-link i {
    font-size: 0.65rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-details-link:hover i {
    transform: translateX(3px);
}

.travel-destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.travel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 35px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.travel-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.travel-img-box {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.travel-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.travel-card:hover .travel-img-box img {
    transform: scale(1.1);
}

.travel-tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ffcc33;
    color: #000;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.travel-info {
    padding: 35px;
}

.travel-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.travel-top h3 {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
}

.travel-rating {
    font-weight: 700;
    color: #ffcc33;
    font-size: 0.95rem;
}

.travel-info p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 30px;
}

.travel-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.travel-duration {
    font-size: 0.9rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.travel-explore-btn {
    color: #ffcc33;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.travel-explore-btn:hover {
    gap: 15px;
}

/* --- PREMIUM GALLERY SECTION --- */
.gallery-premium {
    padding: 140px 0;
    background: transparent;
    overflow: hidden;
    /* Hide overflow for the slider */
}

.gallery-container-lux {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 30px;
    width: max-content;
    /* Allow tracks to be as wide as content */
    will-change: transform;
}

.gallery-box {
    position: relative;
    width: 450px;
    /* Consistent width for cinematic ribbon */
    height: 320px;
    border-radius: 35px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: grab;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-box:active {
    cursor: grabbing;
}

.gallery-box.tall {
    grid-row: span 2;
}

.gallery-box.wide {
    grid-column: span 2;
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.6s ease;
    backdrop-filter: blur(0px);
}

.gallery-box:hover .gallery-overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
}

.gallery-overlay h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1) 0.1s;
}

.gallery-box:hover .gallery-overlay h4,
.gallery-box:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Individual Floating Effect (Subtle Drift) */
@keyframes galleryFloat {

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

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.gallery-box {
    animation: galleryFloat 6s ease-in-out infinite;
}

.gallery-box:nth-child(even) {
    animation-delay: -3s;
}

.section-footer-center {
    text-align: center;
}

/* --- Packages --- */
.tab-btn {
    padding: 10px 30px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-white);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-medium);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--luxury-gold);
    color: var(--deep-navy);
    border-color: var(--luxury-gold);
}

/* --- PREMIUM PACKAGES SECTION --- */
.packages-premium {
    padding: 140px 0;
    background: transparent;
}

.package-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.package-card-lux {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.package-card-lux:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 204, 51, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.package-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.package-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
}

.package-card-lux:hover .package-media img {
    transform: scale(1.15);
}

.package-price-tag {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #ffcc33;
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(255, 204, 51, 0.3);
    z-index: 2;
}

.package-body {
    padding: 35px;
}

.package-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.package-meta i {
    color: #ffcc33;
    font-size: 0.9rem;
}

.package-body h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.package-body p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.package-action {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.view-itinerary {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-card-lux:hover .view-itinerary {
    color: #ffcc33;
    gap: 15px;
}

/* --- PREMIUM FOOTER --- */
.contact-footer {
    padding: 120px 0 60px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 100px;
}

.footer-info h4 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-info p,
.footer-info a {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-info a:hover {
    color: #ffcc33;
}

.footer-brand h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-top: 35px;
}

.social-links a {
    font-size: 1.3rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color: #ffcc33;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 0.9rem;
}

/* --- PREMIUM ITINERARY MODAL --- */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px;
}

.modal-content {
    background: #0a0a0a;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
}

.close-modal {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ffcc33;
}

/* --- Modal Content Classes --- */
.modal-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    line-height: 1.1;
    margin-bottom: 10px !important;
}

.modal-subtitle {
    color: #ffcc33;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 40px;
    font-weight: 700;
}

.itinerary-list {
    display: grid;
    gap: 20px;
    margin-bottom: 50px;
}

.itinerary-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.itinerary-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.item-day-tag {
    background: #ffcc33;
    color: #000;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    min-width: 85px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.2);
}

.item-details h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.item-details p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
}

.modal-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-stat-item {
    text-align: center;
}

.modal-stat-label {
    display: block;
    color: #ffffff;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.modal-stat-value {
    color: #ffcc33;
    font-weight: 800;
    font-size: 1.1rem;
}

.modal-book-btn {
    display: block;
    width: 100%;
    padding: 22px;
    background: var(--whatsapp-yellow);
    color: #000;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 100px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(255, 204, 51, 0.2);
}

.modal-book-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(255, 204, 51, 0.4);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--luxury-gold);
}

/* --- MOBILE NAVIGATION STYLES --- */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Laptops & Tablets (1200px and below) */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }

    .about-flex-container {
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .custom-cursor {
        display: none;
    }

    .main-title {
        font-size: clamp(3rem, 10vw, 10vw);
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 20px;
    }

    .travel-destination-grid,
    .package-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-cinematic {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {

    /* Header & Nav */
    .container {
        padding: 0 20px;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
        z-index: 1000;
    }

    header nav.active {
        right: 0;
    }

    header nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    header nav ul li a {
        font-size: 1.5rem;
    }

    .header-socials {
        display: none;
        /* Hide socials in main header on mobile */
    }

    /* Sections General */
    section:not(.hero-sticky) {
        padding: 80px 0 !important;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Hero */
    .hero-sticky {
        height: 100vh;
        min-height: 100vh;
        padding-top: 0;
    }

    /* Add frosted header background on mobile to prevent overlapping text from bleeding through */
    header {
        background: rgba(4, 13, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 10px 0;
    }

    .text-block {
        top: 22%;
    }

    .main-title {
        font-size: 2.8rem;
        line-height: 1.1;
        margin-bottom: 15px;
        text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
        padding-left: 0.3em;
        margin-top: 20px;
        opacity: 0.9;
    }

    .card-float {
        width: 280px;
        height: 380px;
        top: 62%;
        margin-top: -190px;
        margin-left: -140px;
    }


    /* Stats */
    .stats-grid-modern {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
        gap: 25px;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-suffix,
    .stat-sep {
        font-size: 1.8rem;
    }

    /* About */
    .about-flex-container {
        flex-direction: column;
        gap: 50px;
    }

    .about-visual {
        order: 2;
        width: 100%;
    }

    .image-wrapper-fancy {
        aspect-ratio: 1/1;
    }

    /* Travels & Packages */
    .travel-category-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .travel-destination-grid,
    .package-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-box {
        width: 300px;
        height: 220px;
        border-radius: 20px;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h4 {
        font-size: 1.25rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Modal */
    .modal-content {
        width: 100%;
        padding: 40px 20px;
        border-radius: 0;
        min-height: 100vh;
    }

    .modal-header h2 {
        font-size: 2rem !important;
    }

    .modal-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .itinerary-item {
        flex-direction: column;
        gap: 15px;
    }

    .item-day-tag {
        min-width: auto;
        width: 100%;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.8rem;
    }

    .text-block {
        top: 22%;
    }

    .card-float {
        width: 260px;
        height: 350px;
        top: 62%;
        margin-top: -175px;
        margin-left: -130px;
    }

    .section-title {
        font-size: 2rem;
    }

    .experience-badge-lux {
        padding: 20px;
        bottom: 20px;
        right: 20px;
    }

    .badge-number {
        font-size: 2.5rem;
    }
}

/* --- Inline Expandable Package Details --- */
.package-details-inline {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.2, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.02);
    margin-top: 0;
    border-radius: 0 0 40px 40px;
}

.package-card-lux.expanded .package-details-inline {
    max-height: 4000px;
    margin-top: 20px;
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.itinerary-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.step-num {
    min-width: 50px;
    height: 50px;
    background: #ffcc33;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.step-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-info p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Modal booking button style for inline */
.modal-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--whatsapp-yellow);
    color: var(--deep-navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(255, 204, 51, 0.3);
}

.modal-book-btn:hover {
    background: #fff;
    color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 204, 51, 0.5);
}

/* --- PREMIUM TRAVEL PACKAGES (FLIP CARDS) --- */
.packages-premium {
    padding: 100px 0;
    background-color: #040d1a;
}

.packages-premium .section-title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 10px;
}

.packages-premium .section-subheading {
    color: #D4AF37;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.flip-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .flip-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .flip-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .flip-card-front h3 {
        font-size: 1.2rem;
    }

    .flip-card-front p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .flip-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 30px;
    }

    .flip-card-front h3 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .flip-card-front p {
        font-size: 0.75rem;
    }

    .flip-card-overlay {
        padding: 15px 12px;
    }

    .flip-card-back {
        padding: 15px 10px;
    }

    .flip-card-back h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
        padding-bottom: 6px;
    }

    .flip-card-back-content p {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .flip-wa-btn {
        padding: 10px 8px;
        font-size: 0.65rem;
        border-radius: 20px;
    }
}

.flip-card {
    background-color: transparent;
    width: 100%;
    aspect-ratio: 3 / 4;
    perspective: 1500px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-radius: 18px;
}

/* Hover flip effect (desktop) */
@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg) scale(1.03) translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    }
}

/* Tap flip effect (mobile + JS toggle) */
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg) scale(1.03) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}


.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 18px;
    overflow: hidden;
    background-color: #071A2F;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.flip-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.flip-card-front h3 {
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 6px;
}

.flip-card-front p {
    font-size: 0.85rem;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.flip-card-back {
    transform: rotateY(180deg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    color: white;
}

.flip-card-back h4 {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #D4AF37;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 8px;
}

.flip-card-back-content {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 20px;
}

.flip-card-back-content::-webkit-scrollbar {
    width: 4px;
}

.flip-card-back-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.flip-card-back-content::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 5px;
}

.flip-card-back-content p {
    font-size: 0.8rem;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 8px;
    white-space: pre-line;
}

.flip-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--whatsapp-yellow);
    color: var(--deep-navy) !important;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 204, 51, 0.3);
    margin-top: auto;
    border: none;
    position: relative;
    z-index: 10;
}

.flip-wa-btn:hover {
    background: #fff;
    box-shadow: 0 8px 25px rgba(255, 204, 51, 0.5);
    transform: translateY(-2px);
    color: var(--deep-navy) !important;
}

.view-details-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0);
}

.view-details-link:hover {
    color: #D4AF37;
    border-bottom: 1px solid #D4AF37;
    padding-left: 5px;
}

.view-details-link i {
    font-size: 0.65rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.view-details-link:hover i {
    transform: translateX(4px);
}


/* --- TRAVELS (DESTINATIONS) SECTION --- */
.destinations-premium {
    padding: 100px 0;
    background-color: #040d1a;
}

.travel-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.travel-img-only {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    height: 450px;
    cursor: pointer;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.6s ease;
}

.travel-img-only:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
}

.travel-img-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1), filter 0.8s ease;
}

.travel-img-only:hover img {
    transform: scale(1.15);
    filter: brightness(0.7);
}

/* Gold Border Reveal */
.travel-img-only::before {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.6s ease, inset 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.travel-img-only:hover::before {
    opacity: 1;
    inset: 20px;
}

.travel-img-only::after {
    content: 'DISCOVER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    opacity: 0;
    z-index: 10;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.travel-img-only:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .travel-img-only {
        height: 300px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* =========================================================================
   APPLE-STYLE MOBILE PACKAGES CAROUSEL (Premium iOS Experience)
   ========================================================================= */

/* Hide by default on desktop/tablet */
.mobile-packages-slider {
    display: none;
}

@media (max-width: 768px) {

    /* Hide the grid on mobile */
    #home-packages-grid {
        display: none !important;
    }

    /* Show slider */
    .mobile-packages-slider {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        /* Full width bleed breakout */
        overflow: hidden;
        padding: 20px 0 40px 0;
        background: #0b1320;
        /* Dark Navy UI */
        position: relative;
    }

    /* Track Layout & Scroll Behavior */
    .mps-track {
        display: flex;
        width: 100%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-left: calc(50vw - 42.5vw);
        /* Center first card */
        padding-right: calc(50vw - 42.5vw);
        /* Center last card */
        gap: 20px;
        -webkit-overflow-scrolling: touch;
        /* Momentum */
        scrollbar-width: none;
        /* Firefox cross-browser hiding */
        /* Smooth interactions */
        scroll-behavior: smooth;
    }

    .mps-track::-webkit-scrollbar {
        display: none;
        /* Chrome hiding */
    }

    /* Individual Card Styles */
    .mps-card {
        flex: 0 0 92vw;
        /* 92% width */
        scroll-snap-align: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        overflow: hidden;
        transform: scale(0.95);
        opacity: 0.7;
        transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s ease-out, box-shadow 0.45s ease-out;
        will-change: transform, opacity;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    /* iOS smooth tap effect */
    .mps-card:active {
        transform: scale(0.97) !important;
    }

    /* Active Card Visuals */
    .mps-card.is-active {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        border-color: rgba(212, 175, 55, 0.2);
    }

    /* Media Wrapper */
    .mps-img {
        width: 100%;
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .mps-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    }

    .mps-card.is-active .mps-img img {
        transform: scale(1.05);
    }

    /* Content Area */
    .mps-content {
        padding: 24px 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mps-content h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 1.4rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1.2;
    }

    .mps-content p {
        font-size: 0.9rem;
        color: #ffffff;
        margin: 0;
        line-height: 1.4;
    }

    /* Footer / CTA Area */
    .mps-footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mps-price {
        font-size: 0.75rem;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mps-price span {
        display: block;
        color: #d4af37;
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0;
        margin-top: 2px;
    }

    .mps-btn {
        background: #111e33;
        color: #d4af37;
        font-size: 0.8rem;
        font-weight: 600;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 50px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.3s ease;
    }

    .mps-btn:active {
        background: #d4af37;
        color: #000;
        transform: scale(0.95);
    }

    /* Pagination Dots (Apple Style) */
    .mps-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 25px;
        align-items: center;
    }

    .mps-dot {
        width: 8px;
        height: 8px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        cursor: pointer;
    }

    .mps-dot.active {
        width: 24px;
        background: #d4af37;
    }
}