:root {
    --primary-color: #005F1E;
    /* Custom Green Accent */
    --hover-green: #004D18;
    --dark-bg: #f8f9fa;
    /* Changed to a light whitish layout */
    --card-bg: #ffffff;
    --card-hover: #f1f3f5;
    --text-main: #1a1a1a;
    --text-muted: #6c757d;
    --border-color: #e9ecef;
    --shadow-main: rgba(0, 0, 0, 0.08);
    /* new custom shadow */
    --whatsapp-color: #25D366;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
}

/* ============================================================
   HERO SECTION - Slider Theme
   ============================================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: #fff;
    background: #000;
}

.slider-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slider-bg-img.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

/* Slider Custom Transparent Nav */
.slider-top-nav {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5% 50px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
}

.slider-top-nav .logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.slider-top-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.slider-top-nav .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
}

.slider-top-nav .nav-links a:hover {
    color: var(--primary-color);
}

.slider-top-nav .user-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider-top-nav .user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #44444438;
    object-fit: cover;
}

.slider-top-nav .user-profile span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Main Content constraints */
.slider-main-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    margin-top: -30px;
    /* Offset to center better vertically */
}

/* Vertical Timeline Indicator */
.slider-timeline {
    position: absolute;
    left: 4%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.4);
    z-index: 1;
}

.slider-timeline .t-dot {
    position: relative;
    z-index: 2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transition: all 0.3s;
}

.slider-timeline .t-dot.active {
    background: transparent;
    box-shadow: 0 0 0 2px #fff;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-timeline .t-dot.active::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

/* Text Content Left */
.slider-text-info {
    max-width: 500px;
    margin-left: 60px;
    /* Make room for timeline */
}

.text-clip {
    overflow: hidden;
}

.slider-text-info .st-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.slider-text-info .st-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-text-info .st-explore-btn {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 5px;
    transition: color 0.3s, border-color 0.3s;
    letter-spacing: 1px;
}

.slider-text-info .st-explore-btn:hover {
    color: var(--primary-color);
}

/* Carousel Content Right */
.slider-carousel-wrapper {
    position: relative;
    max-width: 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sc-track {
    display: flex;
    gap: 20px;
    align-items: center;
}

.sc-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, opacity 0.4s ease-in-out;
    cursor: pointer;
}

.sc-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
}

.sc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sc-card.main-card {
    width: 280px;
    height: 380px;
    transform: scale(1.05);
    /* Highlight active */
}

.sc-card.sub-card {
    width: 240px;
    height: 320px;
    opacity: 0.9;
}

.sc-card.sub-card-2 {
    width: 240px;
    height: 320px;
    opacity: 0.8;
}

.sc-card-content {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    overflow: hidden;
}

.sc-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-m-dots {
    display: flex;
    gap: 5px;
    margin-top: 10px;
}

.sc-m-dots span {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.sc-m-dots span.active {
    background: #fff;
}

.sc-controls {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

/* Mobile dot indicator - hidden on desktop */
.mobile-slide-dots {
    display: none;
}

.sc-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sc-btn:hover {
    background: #fff;
}

@media (max-width: 1024px) {
    .slider-main-content {
        flex-direction: column;
        justify-content: center;
        gap: 50px;
        margin-top: 0;
    }

    .slider-text-info {
        margin-left: 0;
        text-align: center;
    }

    .slider-timeline {
        display: none;
    }

    .slider-top-nav .nav-links {
        display: none;
    }

    .slider-carousel-wrapper {
        align-items: center;
        max-width: 100%;
    }

    .sc-card.sub-card-2 {
        display: none;
    }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.hidden-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hidden-nav.scrolled {
    transform: translateY(0);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-desktop {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-desktop a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links-desktop a:hover {
    color: var(--primary-color);
}

.nav-brand img {
    height: 40px;
    object-fit: contain;
}

.search-icon,
#mobile-menu-btn {
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: transform 0.2s;
    display: none !important;
    /* Force hidden on desktop */
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    padding: 30px 20px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header img {
    height: 35px;
    object-fit: contain;
}

.close-menu-btn {
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    transition: color 0.3s;
}

.close-menu-btn:hover {
    color: var(--primary-color);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s;
}

.mobile-link:hover {
    color: var(--primary-color);
}

/* ============================================================
   INFINITE DESTINATION CAROUSEL
   ============================================================ */

.scroll-trigger-anim {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    pointer-events: none;
}

.scroll-trigger-anim.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dest-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: -45px auto 40px;
    z-index: 20;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.dest-carousel-strip {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    padding: 16px 0;
    position: relative;
}

/* Edge fade masks */
.dest-carousel-strip::before,
.dest-carousel-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.dest-carousel-strip::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), transparent);
}

.dest-carousel-strip::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), transparent);
}

.dest-carousel-track {
    display: flex;
    gap: 10px;
    width: max-content;
    animation: carouselScroll 35s linear infinite;
}

.dest-carousel-strip:hover .dest-carousel-track {
    animation-play-state: paused;
}

.carousel-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(0, 95, 30, 0.06);
    border: 1px solid rgba(0, 95, 30, 0.1);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-item:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 95, 30, 0.3);
}

.carousel-item i {
    font-size: 0.75rem;
    color: var(--primary-color);
    transition: color 0.3s, transform 0.3s;
}

.carousel-item:hover i {
    color: #fff;
    transform: rotate(-20deg);
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* ============================================================
   MOBILE MICRO-ANIMATIONS
   ============================================================ */

/* Active/tap feedback for cards on touch devices */
@media (max-width: 768px) {

    .package-card:active,
    .proof-card:active,
    .why-item:active,
    .dest-card:active,
    .faq-item:active {
        transform: scale(0.97);
        transition: transform 0.15s ease;
    }

    .btn-solid:active,
    .btn-view-all:active,
    .btn-wa-footer:active,
    .st-explore-btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    /* Smoother scroll-reveal for mobile */
    .fade-in-anim {
        transform: translateY(20px) scale(0.98);
        filter: blur(6px);
    }

    .slide-up-anim {
        transform: perspective(600px) translateY(40px) rotateX(5deg);
    }

    /* Subtle float animation on section chips */
    .section-chip {
        animation: chipFloat 3s ease-in-out infinite;
    }

    @keyframes chipFloat {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-3px);
        }
    }

    /* Carousel responsive */
    .dest-carousel-wrapper {
        margin: -30px auto 25px;
        padding: 0 10px;
    }

    .dest-carousel-strip {
        border-radius: 40px;
        padding: 12px 0;
    }

    .carousel-item {
        padding: 8px 16px;
        font-size: 0.78rem;
        gap: 6px;
    }

    .carousel-item i {
        font-size: 0.65rem;
    }

    .dest-carousel-strip::before,
    .dest-carousel-strip::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .dest-carousel-wrapper {
        margin: -25px auto 18px;
    }

    .dest-carousel-strip {
        padding: 10px 0;
        border-radius: 30px;
    }

    .carousel-item {
        padding: 7px 14px;
        font-size: 0.72rem;
    }
}

/* ============================================================
   GLOBAL SECTION STYLES
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -1px;
}

.section-header h2 strong {
    font-weight: 800;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 1.15rem;
    max-width: 600px;
    margin-inline: auto;
    line-height: 1.6;
}

/* --- Section Chip Labels --- */
.section-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 95, 30, 0.08);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 95, 30, 0.15);
}

.section-chip i {
    font-size: 0.75rem;
}

/* --- Section CTA Row (View All buttons) --- */
.section-cta-row {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 14px 36px;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-view-all:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 95, 30, 0.25);
}

.btn-view-all i {
    transition: transform 0.3s;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* --- Decorative Background Blobs --- */
.section-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.blob-green-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 95, 30, 0.08);
    top: -100px;
    right: -100px;
}

.blob-green-2 {
    width: 350px;
    height: 350px;
    background: rgba(0, 95, 30, 0.06);
    bottom: -80px;
    left: -80px;
}

/* --- Stats Trust Bar --- */
.stats-trust-bar {
    padding: 70px 5%;
    background: linear-gradient(135deg, #003d14 0%, #005F1E 50%, #00802b 100%);
    position: relative;
    overflow: hidden;
}

.stats-trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.stat-number::after {
    content: '+';
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0.7;
}

.stat-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ============================================================
   TOP PACKAGES (Grid)
   ============================================================ */
.packages-section {
    padding: 100px 5% 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Smooth bottom fade into stats bar */
.packages-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(0, 95, 30, 0.03));
    pointer-events: none;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.package-card {
    background: #eef3ec;
    border-radius: 24px;
    padding: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 95, 30, 0.12);
    border-color: rgba(0, 95, 30, 0.15);
}

.pkg-img-wrap {
    position: relative;
    height: 240px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #dde5da;
}

.pkg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-price-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 16px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pkg-offer-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    color: #fff;
    text-align: center;
    padding: 30px 16px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Let the image container naturally mask the corner radius but making text look nicer */
.pkg-content {
    padding: 2px 6px 6px;
}

.pkg-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.pkg-title-modern {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-main);
}

.pkg-book-now {
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.pkg-book-now:hover {
    color: var(--primary-color);
}

.pkg-tags-modern {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-bottom: 4px;
}

.pkg-tags-modern span {
    background: rgba(255, 255, 255, 0.6);
    color: #3a5a3a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 95, 30, 0.08);
}

/* ============================================================
   EXPLORE BY DESTINATION (Horizontal Scroll)
   ============================================================ */
.dest-section {
    padding: 100px 0 80px;
    background: #f4f6f8;
    position: relative;
}

/* Smooth top fade from white */
.dest-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff, #f4f6f8);
    pointer-events: none;
    z-index: 1;
}

/* Smooth bottom fade back to white */
.dest-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #f4f6f8, #ffffff);
    pointer-events: none;
}

.dest-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 5%;
    scrollbar-width: none;
    /* Firefox */
}

.dest-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.dest-scroll-container {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.dest-card {
    position: relative;
    width: 260px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    color: #fff;
}

.dest-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.dest-overlay p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.dest-card:hover img {
    transform: scale(1.1);
}

/* ============================================================
   SOCIAL PROOF / REVIEWS
   ============================================================ */
.social-proof-section {
    padding: 100px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.proof-grid {
    display: grid;
    place-items: center;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.proof-card {
    background: #f8faf9;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s, border-color 0.4s;
}

.proof-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 95, 30, 0.1);
    border-color: rgba(0, 95, 30, 0.15);
}

.proof-user {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.proof-user img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.proof-user h4 {
    font-size: 0.95rem;
    color: var(--text-main);
}

.proof-user p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.proof-network {
    margin-left: auto;
    font-size: 1.4rem;
}

.ig-color {
    color: #E1306C;
}

.wa-color {
    color: #25D366;
}

.proof-main-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.proof-caption {
    padding: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* WhatsApp Chat style */
.wa-chat-body {
    background: #e5ddd5;
    /* Light WA bg */
    padding: 20px;
    height: 330px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    position: relative;
    line-height: 1.4;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.wa-msg.received {
    background: #ffffff;
    color: #111;
    align-self: flex-start;
    border-top-left-radius: 0;
}

.wa-msg.sent {
    background: #d9fdd3;
    color: #111;
    align-self: flex-end;
    border-top-right-radius: 0;
}

.wa-time {
    display: block;
    font-size: 0.7rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
}

/* ============================================================
   GALLERY (Masonry 2-col layout)
   ============================================================ */
.gallery-section {
    padding: 100px 5%;
    background: #f2f3f5;
    position: relative;
}

/* Smooth top fade from white */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #ffffff, #f2f3f5);
    pointer-events: none;
    z-index: 1;
}

/* Smooth bottom fade back to white */
.gallery-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #f2f3f5, #ffffff);
    pointer-events: none;
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 14px;
    max-width: 1100px;
    margin: 0 auto;
}

.masonry-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.masonry-item.tall {
    grid-row: span 2;
}

.masonry-item.wide {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .masonry-item.wide {
        grid-column: span 1;
    }
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.masonry-overlay h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
}

.hover-zoom:hover img {
    transform: scale(1.08);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us-section {
    padding: 120px 5%;
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-item {
    background: #f8faf9;
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00cc55);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 95, 30, 0.1);
    border-color: rgba(0, 95, 30, 0.12);
}

.why-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    color: var(--primary-color);
    background: rgba(0, 95, 30, 0.06);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    transition: background 0.3s, transform 0.3s;
}

.why-item:hover .why-icon {
    background: rgba(0, 95, 30, 0.12);
    transform: scale(1.05);
}

.why-grid h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.why-grid p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section {
    position: relative;
    padding: 120px 5%;
    background: linear-gradient(135deg, #002e10 0%, #005F1E 40%, #003d14 100%);
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.cta-floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    top: -80px;
    right: -80px;
    animation: floatBlob 8s ease-in-out infinite;
}

.cta-floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    bottom: -60px;
    left: -60px;
    animation: floatBlob 10s ease-in-out infinite reverse;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(20px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-10px, 15px) scale(0.95);
    }
}

.cta-eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -1px;
}

.cta-content h2 strong {
    font-weight: 700;
    color: #65e89d;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 600px;
    margin-inline: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-solid {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    transform: translateY(-3px);
}

.btn-wa-large {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    font-weight: 700;
}

.btn-wa-large:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    background: #f0fff4;
}

.btn-email {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-email:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   FAQS
   ============================================================ */
.faq-section {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    background: #f4f6f8;
}

.faq-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 60px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 40px var(--shadow-main);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.faq-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(0, 95, 30, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.faq-container>* {
    position: relative;
    z-index: 1;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(0, 95, 30, 0.15);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 95, 30, 0.08);
    border-left: 4px solid var(--primary-color);
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-panel {
    padding: 0 25px;
    background: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    color: var(--text-muted);
}

.faq-item.active .faq-panel {
    padding: 0 25px 25px 25px;
    max-height: 300px;
}

.faq-item.active .faq-btn i {
    transform: rotate(45deg);
    color: var(--primary-color);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #080808;
    color: #fff;
    padding: 80px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto 60px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
    filter: invert(0);
}

.footer-brand p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #eee;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    color: #888;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-wa-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--whatsapp-color);
    border: 1px solid var(--whatsapp-color);
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-wa-footer:hover {
    background: var(--whatsapp-color);
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-size: 0.9rem;
}

/* ============================================================
   COOL ANIMATIONS - Scroll Reveal System
   ============================================================ */

/* --- Blur-Fade Reveal (sections) --- */
.fade-in-anim {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(30px) scale(0.97);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-anim.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* --- Slide-Up with 3D perspective (cards, items) --- */
.slide-up-anim {
    opacity: 0;
    transform: perspective(800px) translateY(60px) rotateX(8deg);
    transform-origin: bottom center;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up-anim.visible {
    opacity: 1;
    transform: perspective(800px) translateY(0) rotateX(0deg);
}

/* --- Staggered children inside visible containers --- */
.fade-in-anim.visible .slide-up-anim:nth-child(1) {
    transition-delay: 0.05s;
}

.fade-in-anim.visible .slide-up-anim:nth-child(2) {
    transition-delay: 0.13s;
}

.fade-in-anim.visible .slide-up-anim:nth-child(3) {
    transition-delay: 0.21s;
}

.fade-in-anim.visible .slide-up-anim:nth-child(4) {
    transition-delay: 0.29s;
}

.fade-in-anim.visible .slide-up-anim:nth-child(5) {
    transition-delay: 0.37s;
}

.fade-in-anim.visible .slide-up-anim:nth-child(6) {
    transition-delay: 0.45s;
}

/* --- Slide-In From Left (for text / timeline elements) --- */
.slide-left-anim {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-left-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Slide-In From Right (for carousel) --- */
.slide-right-anim {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-right-anim.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- Scale Pop entrance --- */
.scale-pop-anim {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scale-pop-anim.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- Floating hover effect for cards --- */
@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.package-card:hover {
    box-shadow: 0 20px 50px rgba(0, 95, 30, 0.12);
}

.proof-card:hover {
    box-shadow: 0 20px 40px rgba(0, 95, 30, 0.1);
}

/* --- Subtle shimmer on section headers --- */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.section-header h2 strong {
    background: linear-gradient(90deg, var(--text-main), var(--primary-color), var(--text-main));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* --- Glowing pulse on active timeline dot --- */
@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px #fff, 0 0 8px rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 2px #fff, 0 0 20px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 95, 30, 0.3);
    }
}

/* --- Destination cards hover ripple --- */
.dest-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    box-shadow: inset 0 0 30px rgba(0, 95, 30, 0.4);
    z-index: 2;
    pointer-events: none;
}

.dest-card:hover::after {
    opacity: 1;
}

/* --- Why-Us icon bounce on hover --- */
@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(-5px);
    }

    70% {
        transform: translateY(-8px);
    }
}

.why-item:hover .why-icon {
    animation: iconBounce 0.6s ease;
    background: rgba(0, 95, 30, 0.25);
}

/* --- CTA section (custom styling applied inline above) --- */



/* --- Masonry item reveal --- */
.masonry-item {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item.visible {
    opacity: 1;
    transform: scale(1);
}

.masonry-item:nth-child(1) {
    transition-delay: 0.05s;
}

.masonry-item:nth-child(2) {
    transition-delay: 0.15s;
}

.masonry-item:nth-child(3) {
    transition-delay: 0.25s;
}

.masonry-item:nth-child(4) {
    transition-delay: 0.35s;
}

/* --- Smooth overlay on masonry hover --- */
.masonry-overlay {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
    transform: translateY(10px);
    opacity: 0.8;
}

.masonry-item:hover .masonry-overlay {
    transform: translateY(0);
    opacity: 1;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

/* ============================================================
   FOOTER / CTA
   ============================================================ */
footer {
    background-color: #030305;
    color: white;
    text-align: center;
    padding: 4rem 5% 2rem;
}

footer h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

footer p {
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .node.fg {
        opacity: 0.7;
        filter: blur(calc(var(--blur) * 0.8));
    }

    .node-center {
        width: clamp(100px, 20vmin, 150px);
        height: clamp(100px, 20vmin, 150px);
    }
}



/* ============================================================
   HERO SLIDER ANIMATION STATES (triggered on arrow click only)
   ============================================================ */

/* --- Text vertical marquee transitions --- */
.slider-text-info .st-title,
.slider-text-info .st-desc,
.slider-text-info .st-explore-btn {
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0, 0, 0.2, 1);
}

/* Exit: scroll up out of view */
.slider-text-info.anim-out .st-title,
.slider-text-info.anim-out .st-desc,
.slider-text-info.anim-out .st-explore-btn {
    transform: translateY(-110%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 1, 1);
}

.slider-text-info.anim-out .st-desc {
    transition-delay: 0.04s;
}

.slider-text-info.anim-out .st-explore-btn {
    transition-delay: 0.08s;
}

/* Snap to below (no transition, instant positioning) */
.slider-text-info.anim-enter .st-title,
.slider-text-info.anim-enter .st-desc,
.slider-text-info.anim-enter .st-explore-btn {
    transform: translateY(110%);
    transition: none !important;
}

/* Enter: transition from below to final position */
.slider-text-info.anim-in .st-title,
.slider-text-info.anim-in .st-desc,
.slider-text-info.anim-in .st-explore-btn {
    transform: translateY(0);
}

.slider-text-info.anim-in .st-desc {
    transition-delay: 0.06s;
}

.slider-text-info.anim-in .st-explore-btn {
    transition-delay: 0.12s;
}

/* --- Card conveyor transitions --- */
.sc-card {
    transition: transform 0.6s ease,
        opacity 0.6s ease,
        width 0.6s ease,
        height 0.6s ease;
}

.sc-card.slide-out {
    width: 0 !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
    overflow: hidden;
    pointer-events: none;
    margin-right: -20px;
    /* collapse the flex gap too */
}

.sc-card.slide-in {
    width: 0 !important;
    opacity: 0 !important;
    overflow: hidden;
}

.sc-card.slide-out-right {
    width: 0 !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
    overflow: hidden;
    pointer-events: none;
    margin-left: -20px;
}

.sc-card.slide-in-left {
    width: 0 !important;
    opacity: 0 !important;
    overflow: hidden;
}

/* --- Bookmark button on cards --- */
.sc-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.sc-bookmark {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.sc-bookmark:hover {
    color: #fff;
    transform: scale(1.2);
}

.sc-bookmark.bookmarked,
.sc-bookmark.bookmarked i {
    color: #ff4757;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE
   ============================================================ */

/* ---- TABLET (max 1024px) ---- */
@media (max-width: 1024px) {

    /* Scrolled Navbar */
    .hidden-nav {
        padding: 12px 20px;
    }

    .nav-right,
    .nav-links-desktop {
        gap: 15px;
    }

    .nav-links-desktop a {
        font-size: 0.82rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Packages */
    .packages-section {
        padding: 80px 5% 60px;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }

    /* Destinations */
    .dest-section {
        padding: 80px 0 60px;
    }

    /* Social Proof */
    .social-proof-section {
        padding: 80px 5%;
    }

    .proof-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Gallery */
    .gallery-section {
        padding: 80px 5%;
    }

    .masonry-gallery {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    /* Why Us */
    .why-us-section {
        padding: 80px 5%;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA */
    .cta-section {
        padding: 80px 5%;
    }

    .cta-content h2 {
        font-size: 2.6rem;
    }

    /* FAQ */
    .faq-section {
        padding: 80px 5%;
    }

    /* Footer */
    .site-footer {
        padding: 60px 5% 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* ---- MOBILE (max 768px) ---- */
@media (max-width: 768px) {

    /* Hero Slider - Mobile */
    .hero-slider {
        min-height: 100vh;
        height: 100vh;
    }

    .slider-top-nav {
        padding: 20px 5% 30px;
    }

    .slider-top-nav .logo img {
        height: 32px;
    }

    .slider-top-nav .nav-links {
        display: none;
    }

    .slider-top-nav .user-profile span {
        display: none;
    }

    .slider-top-nav .user-avatar {
        width: 30px;
        height: 30px;
    }

    .slider-main-content {
        padding: 0 5%;
        flex-direction: column;
        justify-content: center;
        gap: 25px;
        margin-top: 0;
    }

    .slider-timeline {
        display: none;
    }

    .slider-text-info {
        max-width: 100%;
        margin-left: 0;
        text-align: center;
    }

    /* FIX: text-shadow clipping - allow overflow on text-clip */
    .text-clip {
        overflow: visible;
    }

    .slider-text-info .st-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
        margin-bottom: 12px;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }

    /* FIX: Consistent desc height to prevent layout shift */
    .slider-text-info .st-desc {
        font-size: 0.82rem;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 3.9em;
    }

    .slider-text-info .st-explore-btn {
        font-size: 0.95rem;
        justify-content: center;
    }

    .slider-carousel-wrapper {
        max-width: 100%;
        align-items: center;
        overflow: hidden;
    }

    .sc-track {
        gap: 0;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 10px 0;
        width: 100%;
    }

    .sc-track::-webkit-scrollbar {
        display: none;
    }

    .sc-card,
    .sc-card.main-card,
    .sc-card.sub-card,
    .sc-card.sub-card-2 {
        display: block !important;
        min-width: 220px;
        width: 220px;
        height: 280px;
        transform: scale(1) !important;
        opacity: 1 !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        margin: 0 8px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .sc-card.slide-out,
    .sc-card.slide-out-right,
    .sc-card.slide-in,
    .sc-card.slide-in-left {
        display: block !important;
        min-width: 220px;
        width: 220px !important;
        height: 280px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        margin: 0 8px;
        pointer-events: auto;
    }

    .sc-controls {
        display: none !important;
    }

    /* Mobile Dot Indicator */
    .mobile-slide-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
        padding: 6px 0;
    }

    .mobile-slide-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .mobile-slide-dots .dot.active {
        width: 24px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.95);
    }

    /* Scrolled Navbar - Mobile */
    .hidden-nav {
        padding: 10px 15px;
    }

    .nav-links-desktop {
        display: none;
    }

    #mobile-menu-btn {
        display: block !important;
        /* Show hamburger menu on mobile */
    }

    .nav-brand img {
        height: 32px;
    }

    /* Search Filter Widget */
    .search-filter-wrapper {
        margin: -40px auto 25px;
        padding: 0 15px;
    }

    .search-filter-box {
        border-radius: 14px;
    }

    .filter-tabs span {
        padding: 12px 16px;
        font-size: 0.82rem;
    }

    .filter-controls {
        flex-direction: column;
        gap: 6px;
        padding: 10px 12px;
    }

    .filter-dropdown {
        width: 100%;
        padding: 10px 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .btn-explore {
        width: 100%;
        padding: 12px;
        margin-top: 4px;
        font-size: 0.9rem;
    }

    /* Global Section Styles */
    .section-header {
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .section-chip {
        font-size: 0.72rem;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    /* Section CTA Row */
    .section-cta-row {
        margin-top: 30px;
    }

    .btn-view-all {
        font-size: 0.85rem;
        padding: 10px 24px;
    }

    /* Stats Trust Bar */
    .stats-trust-bar {
        padding: 40px 5%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .stat-item p {
        font-size: 0.82rem;
    }

    /* ---- PACKAGES (smaller cards, proper edges) ---- */
    .packages-section {
        padding: 50px 4% 40px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 400px;
        margin: 0 auto;
    }

    .package-card {
        border-radius: 16px;
        padding: 10px;
    }

    .pkg-img-wrap {
        height: 170px;
        border-radius: 12px;
        margin-bottom: 14px;
    }

    .pkg-content {
        padding: 0 4px 4px;
    }

    .pkg-title-modern {
        font-size: 1rem;
    }

    .pkg-tags-modern {
        gap: 5px;
    }

    .pkg-tags-modern span {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .pkg-price-tag {
        font-size: 0.85rem;
        padding: 5px 12px;
    }

    .pkg-book-now {
        font-size: 0.82rem;
    }

    .pkg-offer-banner {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    /* Destinations */
    .dest-section {
        padding: 50px 0 40px;
    }

    .dest-card {
        min-width: 160px;
        height: 200px;
        border-radius: 14px;
    }

    .dest-overlay h3 {
        font-size: 1rem;
    }

    .dest-overlay p {
        font-size: 0.75rem;
    }

    /* ---- TESTIMONIALS (horizontal scroll, compact) ---- */
    .social-proof-section {
        padding: 50px 4% 40px;
    }

    .proof-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 5px;
    }

    .proof-grid::-webkit-scrollbar {
        display: none;
    }

    .proof-card {
        min-width: auto;
        max-width: none;
        width: 100%;
        border-radius: 14px;
    }

    .proof-main-img {
        height: 180px;
    }

    .proof-caption p {
        font-size: 0.85rem;
    }

    .wa-chat-body {
        height: 220px;
        padding: 14px;
        gap: 10px;
    }

    .wa-msg {
        font-size: 0.82rem;
        padding: 8px 10px;
    }

    /* Gallery */
    .gallery-section {
        padding: 50px 4% 40px;
    }

    .masonry-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 8px;
    }

    .masonry-item {
        border-radius: 8px;
    }

    .masonry-item.wide {
        grid-column: span 1;
    }

    .masonry-item.tall {
        grid-row: span 1;
    }

    .masonry-overlay h4 {
        font-size: 0.9rem;
    }

    /* ---- WHY US (compact 2-col) ---- */
    .why-us-section {
        padding: 50px 4% 40px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-item {
        padding: 16px 14px;
        border-radius: 14px;
    }

    .why-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .why-grid h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .why-grid p {
        font-size: 0.78rem;
        line-height: 1.4;
    }

    /* CTA */
    .cta-section {
        padding: 60px 5%;
    }

    .cta-eyebrow {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-solid {
        padding: 13px 28px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* ---- FAQ (tighter proportions) ---- */
    .faq-section {
        padding: 50px 4% 40px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-accordion {
        gap: 8px;
    }

    .faq-item {
        border-radius: 10px;
    }

    .faq-btn {
        padding: 14px 16px;
        font-size: 0.88rem;
        gap: 8px;
    }

    .faq-btn i {
        font-size: 0.75rem;
    }

    .faq-panel p {
        font-size: 0.82rem;
        line-height: 1.5;
    }

    .faq-item.active .faq-panel {
        padding: 0 16px 16px 16px;
    }

    /* ---- FOOTER (compact mobile redesign) ---- */
    .site-footer {
        padding: 30px 5% 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand img {
        height: 30px;
    }

    .footer-brand p {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .social-links a {
        margin-right: 0;
        font-size: 1.1rem;
    }

    /* Merge footer link columns into inline rows */
    .footer-links {
        margin-bottom: 14px;
    }

    .footer-links h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-links ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 16px;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 0.82rem;
    }

    /* Contact info compact */
    .footer-contact {
        margin-bottom: 12px;
    }

    .footer-contact h4 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-contact p {
        font-size: 0.82rem;
        justify-content: center;
        margin-bottom: 6px;
    }

    .btn-wa-footer {
        font-size: 0.82rem;
        padding: 6px 16px;
    }

    .footer-bottom {
        padding-top: 12px;
        font-size: 0.78rem;
    }

    footer h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Decorative blobs: scale down on mobile */
    .section-blob {
        opacity: 0.25;
    }

    .blob-green-1 {
        width: 200px;
        height: 200px;
    }

    .blob-green-2 {
        width: 160px;
        height: 160px;
    }

    /* CTA floating shapes */
    .cta-floating-shape.shape-1 {
        width: 150px;
        height: 150px;
    }

    .cta-floating-shape.shape-2 {
        width: 100px;
        height: 100px;
    }
}

/* ---- SMALL MOBILE (max 480px) ---- */
@media (max-width: 480px) {

    /* Hero */
    .hero-slider {
        min-height: 100svh;
    }

    .slider-top-nav {
        padding: 15px 4%;
    }

    .slider-top-nav .logo img {
        height: 26px;
    }

    .slider-text-info .st-title {
        font-size: clamp(2rem, 13vw, 2.8rem);
        letter-spacing: 1px;
    }

    .slider-text-info .st-desc {
        font-size: 0.78rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
        min-height: 3.5em;
    }

    .sc-card.main-card {
        width: 150px;
        height: 210px;
        border-radius: 12px;
    }

    .sc-card.sub-card {
        width: 110px;
        height: 170px;
        border-radius: 10px;
    }

    .sc-card-title {
        font-size: 0.75rem;
    }

    .sc-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }

    .section-header p {
        font-size: 0.82rem;
    }

    .section-chip {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    /* Search Filter */
    .search-filter-wrapper {
        margin: -30px auto 18px;
    }

    .filter-tabs span {
        padding: 10px 12px;
        font-size: 0.75rem;
    }

    /* Stats */
    .stats-trust-bar {
        padding: 30px 4%;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 10px;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* Packages — even smaller */
    .packages-section {
        padding: 40px 4% 30px;
    }

    .packages-grid {
        max-width: 340px;
        gap: 14px;
    }

    .package-card {
        padding: 8px;
        border-radius: 14px;
    }

    .pkg-img-wrap {
        height: 150px;
        border-radius: 10px;
    }

    /* Testimonials */
    .social-proof-section {
        padding: 40px 4% 30px;
    }

    .proof-card {
        min-width: 260px;
        max-width: 300px;
    }

    .proof-main-img {
        height: 150px;
    }

    .wa-chat-body {
        height: 190px;
        padding: 10px;
    }

    /* Gallery */
    .gallery-section {
        padding: 40px 4% 100px;
    }

    .masonry-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .masonry-item.tall {
        grid-row: span 1;
    }

    /* Why Us — even more compact */
    .why-us-section {
        padding: 40px 4% 30px;
    }

    .why-grid {
        gap: 8px;
    }

    .why-item {
        padding: 14px 12px;
    }

    .why-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .why-grid h4 {
        font-size: 0.85rem;
    }

    .why-grid p {
        font-size: 0.72rem;
    }

    /* CTA */
    .cta-section {
        padding: 50px 4%;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .btn-solid {
        padding: 11px 20px;
        font-size: 0.85rem;
    }

    /* FAQ — tighter */
    .faq-section {
        padding: 40px 4% 30px;
    }

    .faq-btn {
        padding: 12px 14px;
        font-size: 0.82rem;
    }

    .faq-panel p {
        font-size: 0.78rem;
    }

    /* Footer — ultra compact */
    .site-footer {
        padding: 24px 4% 12px;
    }

    .footer-grid {
        margin-bottom: 14px;
    }

    .footer-brand {
        margin-bottom: 14px;
    }

    .footer-brand img {
        height: 26px;
    }

    .footer-brand p {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    /* Hide second link column on very small screens */
    .footer-links:nth-child(3) {
        display: none;
    }

    .footer-contact {
        margin-bottom: 8px;
    }

    footer h2 {
        font-size: 1.3rem;
    }

    .footer-bottom {
        font-size: 0.72rem;
        padding-top: 10px;
    }

    /* Hide blobs on very small screens */
    .section-blob {
        display: none;
    }
}