:root {
    /* Color Palette */
    --clr-blue-deep: #203a43;
    --clr-blue-mid: #203A43;
    --clr-blue-light: #2C5364;

    --clr-green-deep: #0e3b25;
    --clr-green-lush: #1a563b;
    /* Base Colors - Adjusted for Glassmorphism (No Pure Black) */
    --clr-bg-dark: #0a1115;
    /* Deep Charcoal */
    --clr-bg-layer: #0f1c24;
    /* Layered Navy */
    --clr-orange-safety: #6EAF6E;
    --clr-earth-gold: #c3a473;
    --clr-text-main: #f8f9fa;
    --clr-text-muted: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(20px);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Sizes */
    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Texture for Glassmorphism */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.bg-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(32, 58, 67, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(110, 175, 110, 0.08) 0%, transparent 40%);
    z-index: -2;
    pointer-events: none;
}

/* Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--clr-orange-safety);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--clr-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(110, 175, 110, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--clr-earth-gold);
    color: var(--clr-earth-gold);
}

.btn-secondary:hover {
    background-color: var(--clr-earth-gold);
    color: var(--clr-earth-dark);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Header */
#main-header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

#main-header.scrolled {
    background: rgba(9, 18, 22, 0.85);
    padding: 0 3rem;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 0.9;
    letter-spacing: 2px;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 3px;
}

.logo-accent {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    margin-top: 2px;
}

.logo-container span.logo-highlight {
    color: var(--clr-orange-safety);
    font-weight: 700;
    -webkit-text-fill-color: var(--clr-orange-safety);
    background: none;
}

.logo-container:hover .logo-text {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(110, 175, 110, 0.4);
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-text.footer-size .logo-main {
    font-size: 2.2rem;
}

.logo-text.footer-size .logo-accent {
    font-size: 1rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-orange-safety);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg,
.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-texture {
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 1;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%) scale(1.15);
    object-fit: cover;
    z-index: 0;
}



.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(9, 18, 22, 0.6) 0%, transparent 50%, rgba(9, 18, 22, 0.8) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    color: #fff;
    transform: perspective(1000px) rotateX(5deg);
}

.title-main {
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -6px;
    line-height: 0.8;
    display: block;
    text-shadow:
        0 10px 50px rgba(0, 0, 0, 1),
        0 20px 100px rgba(0, 0, 0, 0.6);
}

.title-accent {
    font-size: 2.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--clr-earth-gold);
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1);
    opacity: 0.9;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.scroll-indicator p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading);
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2px solid #fff;
    border-radius: 20px;
    position: relative;
}

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

@keyframes scroll {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

/* Transition Area Canvas Effect */
.transition-container {
    height: 80vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--clr-bg-dark);
    margin-top: -2px;
    /* Prevent gap */
}

.water-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#water-splash-canvas {
    width: 100%;
    height: 100%;
}

.transition-text h2 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

.logo-container span {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(to right, #fff, var(--clr-text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: font-size 0.3s ease;
}

@media (max-width: 480px) {
    .logo-container span {
        font-size: 1.1rem !important;
        /* Prevents overlap with login button */
    }

    .nav-actions .btn-outline {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Scrollytelling Map Section */
.scroll-map-section {
    position: relative;
    background-color: var(--clr-bg-dark);
}

.map-sticky-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.full-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) brightness(0.6) contrast(1.2);
}

.map-trail-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trail-path {
    stroke: var(--clr-orange-safety);
    stroke-width: 6;
    stroke-dasharray: 15, 15;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(110, 175, 110, 0.8));
}

.car-marker {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 15;
    /* Above path, below overlay titles */
    opacity: 0;
    /* Hidden until animated */
    transform-origin: center center;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.map-overlay-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    background: rgba(9, 18, 22, 0.85);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.map-overlay-title h2 {
    font-size: 4rem;
    color: var(--clr-earth-gold);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.map-overlay-title p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.map-scroll-down {
    margin-top: 2rem;
    font-size: 2.5rem;
    color: var(--clr-orange-safety);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(15px);
    }

    60% {
        transform: translateY(7px);
    }
}

.scroll-milestones {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.milestone {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    transform: translateY(50px);
    pointer-events: auto;
}

.m-rafting {
    top: 20%;
    left: 30%;
}

.m-trekking {
    top: 45%;
    left: 45%;
}

.m-camping {
    top: 70%;
    left: 60%;
}

@media (max-width: 1024px) {
    .m-rafting {
        left: 10%;
    }

    .m-trekking {
        left: 20%;
    }

    .m-camping {
        left: 30%;
    }
}

.m-point {
    width: 60px;
    height: 60px;
    background: var(--clr-blue-deep);
    border: 3px solid var(--clr-orange-safety);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 0 20px rgba(110, 175, 110, 0.4);
    position: relative;
}

.m-point::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--clr-orange-safety);
    animation: ripple 2s linear infinite;
}

.m-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    width: 320px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.m-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.m-card p {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Horizontal Auto-Slider Gallery */
.gallery-horizontal {
    position: relative;
    background-color: var(--clr-bg-dark);
    overflow: hidden;
    padding: 8rem 0;
}

.gallery-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gallery-title-sticky {
    margin: 0 auto 4rem auto;
    text-align: center;
    max-width: 800px;
}

.gallery-title-sticky h2 {
    font-size: 3.5rem;
    color: var(--clr-earth-gold);
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.gallery-title-sticky p {
    color: var(--clr-text-muted);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.gallery-container-track {
    display: flex;
    gap: 3rem;
    padding: 0 3rem;
    will-change: transform;
    cursor: grab;
}

.gallery-container-track:active {
    cursor: grabbing;
}

.gallery-item {
    flex-shrink: 0;
    width: 600px;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    color: #fff;
    transition: all 0.5s ease;
    z-index: 2;
}

.item-info h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--clr-orange-safety);
    letter-spacing: 1px;
}

.item-info p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 90%;
}

.gallery-item:hover .item-info {
    padding-bottom: 3.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 80%, transparent 100%);
}

/* Night Safari Section */
.night-safari-section {
    position: relative;
    height: 100vh;
    background-color: #050a0c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.night-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, #000 80%);
    z-index: 2;
    pointer-events: none;
}

.night-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.eye-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.eye-glow {
    position: absolute;
    width: 8px;
    height: 4px;
    background: #ffdb15;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffdb15, 0 0 20px #ffdb15;
    opacity: 0;
}

.eye-glow::after {
    content: '';
    position: absolute;
    left: 15px;
    width: 8px;
    height: 4px;
    background: #ffdb15;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffdb15, 0 0 20px #ffdb15;
}

.eye-1 {
    top: 20%;
    left: 15%;
}

.eye-2 {
    top: 60%;
    left: 80%;
}

.eye-3 {
    top: 75%;
    left: 10%;
}

.night-text h2 {
    font-size: 4rem;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -1px;
}

.night-text p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 3rem;
}

/* Booking Section */
.booking-section {
    position: relative;
    padding: 10rem 4rem;
    background-color: #050a0c;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(230, 126, 34, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 40%);
    overflow: hidden;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 4rem;
}

.booking-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.booking-header p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
}

.booking-glass-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-orange-safety);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.2);
}

.btn-submit {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Safety Section */
.safety-section {
    position: relative;
    padding: 8rem 4rem;
    color: #fff;
}

.safety-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.safety-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 33, 41, 0.9) 0%, rgba(32, 58, 67, 0.7) 100%);
    z-index: 2;
}

.safety-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.safety-content .section-title {
    color: #fff;
    margin-bottom: 4rem;
}

.safety-badges-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.badge-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.badge-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.badge-icon {
    font-size: 3rem;
    color: var(--clr-orange-safety);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    height: 80px;
    width: 80px;
    line-height: 80px;
    background: rgba(110, 175, 110, 0.1);
    border-radius: 50%;
}

.badge-tick {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #00d287;
    color: #fff;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    line-height: 24px;
    border-radius: 50%;
    border: 2px solid var(--clr-bg-dark);
}

.badge-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.badge-card p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

/* Footer Section */
#main-footer {
    background: rgba(10, 17, 21, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 4rem 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--clr-orange-safety);
}

.footer-contact i {
    color: var(--clr-earth-gold);
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--clr-orange-safety);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

#back-to-top {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

#back-to-top:hover {
    background: var(--clr-orange-safety);
}

/* Responsive Overhaul */
@media (max-width: 1200px) {
    .title-main {
        font-size: 6.5rem;
        letter-spacing: -4px;
    }

    .gallery-item {
        width: 500px;
        height: 350px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .m-card {
        width: 280px;
    }
}

@media (max-width: 768px) {
    #main-header {
        top: 10px;
        left: 10px;
        right: 10px;
        padding: 0 1rem;
        height: 60px;
    }

    .nav-links {
        display: none;
        /* Desktop default hiding rule is handled elsewhere */
    }

    #main-header .logo-container img {
        height: 30px;
    }

    .title-main {
        font-size: 4.5rem;
        letter-spacing: -3px;
        line-height: 0.9;
    }

    .title-accent {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .gallery-container-track {
        padding: 0 1rem 0 10vw;
        gap: 2rem;
    }

    .gallery-item {
        width: 85vw;
        height: 280px;
    }

    .gallery-title-sticky {
        left: 1rem;
        top: 5%;
    }

    .gallery-title-sticky h2 {
        font-size: 2rem;
    }

    .night-text h2 {
        font-size: 2.5rem;
    }

    .night-content {
        padding: 2rem;
        width: 90%;
    }

    .booking-section {
        padding: 6rem 1.5rem;
    }

    .booking-header h2 {
        font-size: 2.5rem;
    }

    .booking-glass-card {
        padding: 2rem;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .safety-section {
        padding: 6rem 1.5rem;
    }

    .badge-card {
        padding: 2rem 1.5rem;
    }

    .safety-badges-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

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

    .title-accent {
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .gallery-item {
        height: 220px;
    }
}

/* Immersive River Rafting Section */
/* Activity Journey Design System */
.activity-section {
    position: relative;
    padding: 10rem 4rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: var(--clr-bg);
}

/* Atmospheric Skins */
.rafting-section {
    background: radial-gradient(circle at 10% 20%, rgba(32, 58, 67, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(110, 175, 110, 0.08) 0%, transparent 40%);
}

.safari-section {
    background: radial-gradient(circle at 10% 20%, rgba(20, 40, 20, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(107, 142, 35, 0.1) 0%, transparent 40%);
}

.paragliding-section {
    background: radial-gradient(circle at 10% 20%, rgba(50, 100, 150, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.kayaking-section {
    background: radial-gradient(circle at 10% 20%, rgba(0, 128, 128, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 165, 0, 0.08) 0%, transparent 40%);
}

.activity-lens-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    opacity: 0.8;
}

.activity-content-container {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.activity-header {
    max-width: 800px;
    text-align: center;
}

.activity-header h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: -2px;
}

.activity-header p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

.activity-journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 2rem;
    width: 100%;
    grid-template-areas:
        "s1 s2 f f"
        "s4 s5 f f"
        "s6 s6 s6 s6";
}

.journey-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.journey-card.stage-1 {
    grid-area: s1;
}

.journey-card.stage-2 {
    grid-area: s2;
}

.journey-card.featured {
    grid-area: f;
    padding: 0;
}

.journey-card.stage-4 {
    grid-area: s4;
}

.journey-card.stage-5 {
    grid-area: s5;
}

.journey-card.stage-6 {
    grid-area: s6;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 120px;
}

.journey-card.stage-6 .card-icon {
    margin-bottom: 0;
}

.journey-card.stage-6 .card-content {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.journey-card .card-icon {
    font-size: 3rem;
    color: var(--clr-orange-safety);
    margin-bottom: auto;
    opacity: 0.7;
    transition: all 0.5s ease;
    filter: drop-shadow(0 0 10px rgba(110, 175, 110, 0.2));
}

.journey-card .card-content h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    letter-spacing: 1px;
}

.journey-card .card-content p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    max-width: 90%;
}

.stage-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--clr-orange-safety);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    background: rgba(110, 175, 110, 0.08);
    border: 1px solid rgba(110, 175, 110, 0.2);
    border-radius: 6px;
}

/* Unified Hero Spotlight Redesign (Safety & Services) */
.safety-commitment-section .safety-grid,
.premium-services-container .safety-grid {
    gap: 6rem;
    /* More space for auras */
}

.safety-commitment-section .safety-card,
.premium-services-container .safety-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
}

.safety-section .safety-icon,
.safety-commitment-section .safety-icon,
.premium-services-container .safety-icon {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    z-index: 2;
}

.safety-commitment-section .bitmoji-icon,
.premium-services-container .bitmoji-icon {
    height: 250px;
    /* Larger focus */
    width: auto;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.safety-card:hover .bitmoji-icon {
    transform: translateY(-20px) scale(1.1);
}

/* Back Spotlight Aura */
.safety-card .card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at 50% 50%, rgba(110, 175, 110, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
    animation: auraPulse 4s infinite alternate ease-in-out;
}

/* Specific Aura Colors for Services */
.concierge-glow {
    background: radial-gradient(circle at 50% 50%, rgba(110, 175, 110, 0.25) 0%, transparent 70%) !important;
}

.transfer-glow {
    background: radial-gradient(circle at 50% 50%, rgba(32, 58, 67, 0.4) 0%, transparent 70%) !important;
}

.planner-glow {
    background: radial-gradient(circle at 50% 50%, rgba(195, 164, 115, 0.25) 0%, transparent 70%) !important;
}

@keyframes auraPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.3;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Floating Glass Label Strip */
.safety-label-strip {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-top: -30px;
    /* Overlap with hero */
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.safety-card:hover .safety-label-strip {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.safety-label-strip h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: var(--clr-orange-safety);
}

.safety-label-strip p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.6;
}

.guarantee-card,
.safety-card {
    position: relative;
    transition: all 0.5s ease;
}

.journey-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(110, 175, 110, 0.4);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.journey-card:hover .card-icon {
    transform: scale(1.2) rotate(-5deg);
    opacity: 1;
    color: #fff;
}

/* Featured Card Specifics */
.journey-card.featured .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    z-index: 2;
}

.journey-card.featured .ripple-container {
    width: 100%;
    height: 100%;
}

.journey-card.featured:hover .ripple-img {
    filter: url(#liquid-ripple);
    transform: scale(1.15);
}

/* Icons for Different Activities */
.safari-section .journey-card .card-icon {
    color: #8FBC8F;
}

/* Dark Sea Green */
.paragliding-section .journey-card .card-icon {
    color: #87CEEB;
}

/* Sky Blue */
.kayaking-section .journey-card .card-icon {
    color: #00CED1;
}

/* Dark Turquoise */

@media (max-width: 1200px) {
    .activity-journey-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "s1 s2"
            "f f"
            "s4 s5"
            "s6 s6";
    }
}

@media (max-width: 768px) {
    .activity-section {
        padding: 6rem 1.5rem;
    }

    .activity-journey-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "s1" "s2" "f" "s4" "s5" "s6";
        gap: 1.5rem;
    }

    .journey-card.stage-6 {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .journey-card.stage-6 .card-content {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Day in the Life Timeline Section */
.timeline-section {
    position: relative;
    padding: 10rem 2rem;
    background: var(--clr-bg);
    overflow: hidden;
    transition: background 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: background 1.5s ease;
}

.timeline-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-header {
    text-align: center;
    margin-bottom: 8rem;
}

.timeline-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -2px;
}

.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

/* The Central Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.timeline-line-progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    /* Controlled by JS */
    background: linear-gradient(to bottom, var(--clr-orange-safety), #ff4d00);
    box-shadow: 0 0 15px rgba(110, 175, 110, 0.5);
    transition: height 0.1s ease-out;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 4rem;
    margin-bottom: 6rem;
    opacity: 0;
    /* JS will animate this */
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    position: absolute;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: #111;
    border: 2px solid var(--clr-orange-safety);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.4s ease;
}

.timeline-item.left .timeline-dot {
    right: -8px;
}

.timeline-item.right .timeline-dot {
    left: -8px;
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.timeline-item:hover .timeline-content {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(110, 175, 110, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.timeline-item:hover .timeline-dot {
    background: var(--clr-orange-safety);
    transform: scale(1.4);
    box-shadow: 0 0 15px var(--clr-orange-safety);
}

.item-time {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--clr-orange-safety);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.item-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--clr-text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Atmospheric Micro-Animations */

/* 1. Mist (Awakening) */
.misty .mist-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: drift 10s infinite linear;
}

@keyframes drift {
    0% {
        transform: translateX(-10%);
    }

    50% {
        transform: translateX(10%);
    }

    100% {
        transform: translateX(-10%);
    }
}

/* 2. Falling Leaves (Wild Trek) */
.lush .leaves-container::before {
    content: "🍃";
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: fall 8s infinite ease-in-out;
}

@keyframes fall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.3;
    }

    80% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(300px) rotate(360deg);
        opacity: 0;
    }
}

/* 3. Campfire Glow (The Glow) */
.starlit .fire-glow {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(110, 175, 110, 0.2) 0%, transparent 70%);
    animation: flicker 2s infinite ease-in-out;
}

@keyframes flicker {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* 4. Stars (The Glow) */
.stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #eee, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, #ddd, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90% 10%, #fff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.1;
    animation: twinkle 4s infinite alternate;
}

@keyframes twinkle {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 0.4;
    }
}

/* Background Color States (Triggered by Scroll) */
.bg-dawn {
    background-color: #1a1a2e !important;
}

.bg-midday {
    background-color: #0d1b2a !important;
}

.bg-midnight {
    background-color: #000000 !important;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 1rem 0 1rem 60px;
        text-align: left !important;
    }

    .timeline-dot {
        left: 22px !important;
    }

    .timeline-header h2 {
        font-size: 2.5rem;
    }
}

/* Commitment to Safety & Lodges/Resorts Section */
.safety-commitment-section,
.trust-accommodation-section {
    padding: 10rem 0;
    background-color: var(--clr-bg-dark);
    position: relative;
    overflow: hidden;
}

.safety-commitment-section {
    padding-bottom: 0;
    /* Tighten gap before lodges */
}

.safety-container,
.trust-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 4rem;
}

.safety-header,
.stays-header {
    text-align: center;
    margin-bottom: 6rem;
}

.safety-header .section-badge,
.stays-header .section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(110, 175, 110, 0.1);
    border: 1px solid rgba(110, 175, 110, 0.3);
    color: var(--clr-orange-safety);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.safety-header h2,
.stays-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.safety-header p,
.stays-header p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Resort CTA Button & Snapshot Icon */
.resort-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.2rem;
    padding: 0.9rem 2.4rem;
    background: rgba(110, 175, 110, 0.08);
    border: 1px solid rgba(110, 175, 110, 0.25);
    border-radius: 50px;
    color: #6EAF6E;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 0 20px rgba(110, 175, 110, 0.05);
    animation: btnPulse 4s ease-in-out infinite;
}

.resort-cta-btn:hover {
    background: rgba(110, 175, 110, 0.25);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(110, 175, 110, 0.2);
    color: #fff;
    border-color: rgba(110, 175, 110, 0.6);
}

.snapshot-stack {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
}

.photo-stack-svg {
    width: 28px;
    height: 28px;
    overflow: visible;
}

.photo-bg,
.photo-mid,
.photo-front {
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

/* Fan-out Animation on Hover */
.resort-cta-btn:hover .photo-bg {
    transform: translate(-10px, -4px) rotate(-15deg);
    opacity: 0.7;
}

.resort-cta-btn:hover .photo-mid {
    transform: translate(-2px, -6px) rotate(-5deg);
    opacity: 0.85;
}

.resort-cta-btn:hover .photo-front {
    transform: translate(6px, -2px) rotate(12deg);
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(110, 175, 110, 0.05), 0 0 0 0 rgba(110, 175, 110, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(110, 175, 110, 0.15), 0 0 0 15px rgba(110, 175, 110, 0);
    }
}

/* Bento Grid */
.stays-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 2rem;
    margin-bottom: 10rem;
}

/* Lodge Explorer - Category Driven Stays */
.lodge-explorer-container {
    margin-top: 4rem;
}

.lodge-filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 5rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.lodge-filter-tab {
    padding: 1rem 2.5rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.lodge-filter-tab.active {
    background: var(--clr-orange-safety);
    color: #fff;
    box-shadow: 0 10px 20px rgba(110, 175, 110, 0.3);
}

.lodge-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1300px;
    margin: 3rem auto;
    width: 100%;
}

.lodge-card,
.lodge-showcase-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lodge-card {
    display: none;
    /* Controlled by JS filtering */
}

.lodge-showcase-card {
    display: block;
    /* Always visible */
}

.lodge-card.show {
    display: block;
    animation: lodgeFadeIn 0.6s forwards;
}

@keyframes lodgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lodge-card:hover,
.lodge-showcase-card:hover {
    transform: translateY(-20px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.lodge-img-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.lodge-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lodge-card:hover .lodge-img-wrapper img,
.lodge-showcase-card:hover .lodge-img-wrapper img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.lodge-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.lodge-content p {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lodge-amenities {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lodge-amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.lodge-amenity i {
    color: var(--clr-orange-safety);
}

@media (max-width: 1024px) {
    .lodge-grid-display {
        grid-template-columns: 1fr 1fr;
    }

    .lodge-filter-bar {
        width: 95%;
        flex-wrap: wrap;
        border-radius: 30px;
    }

    .lodge-filter-tab {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .lodge-grid-display {
        grid-template-columns: 1fr;
    }

    /* Mobile-First Swipe Bar */
    .lodge-filter-bar {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        padding: 1rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100vw;
        border-radius: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
    }

    .lodge-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .lodge-filter-tab {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.7rem;
        padding: 0.7rem 1.2rem;
    }
}

.bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.large-card {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.tall-card {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.wide-card {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    opacity: 1;
    transition: all 0.5s ease;
}

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

.bento-card:hover {
    border-color: var(--clr-orange-safety);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.bento-overlay h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.bento-overlay p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
    max-width: 80%;
    line-height: 1.5;
}

.amenities-tags {
    display: flex;
    gap: 1rem;
}

.amenities-tags span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--clr-orange-safety);
    border: 1px solid rgba(110, 175, 110, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    background: rgba(110, 175, 110, 0.05);
}

/* Guarantee & Safety Cards */
.guarantee-grid,
.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 8rem;
}

.guarantee-card,
.safety-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5rem 3rem;
    border-radius: 30px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow {
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    padding: 2px;
    background: conic-gradient(from 0deg, transparent, var(--clr-orange-safety), transparent, var(--clr-orange-safety), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.guarantee-card:hover,
.safety-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-15px);
}

.guarantee-card:hover .card-glow,
.safety-card:hover .card-glow {
    opacity: 0.6;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.guarantee-icon,
.safety-icon {
    font-size: 3.5rem;
    color: var(--clr-orange-safety);
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 15px rgba(110, 175, 110, 0.6));
    display: flex;
    justify-content: center;
    align-items: center;
}

.bitmoji-icon {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    animation: bitmojiFloat 4s ease-in-out infinite;
}

@keyframes bitmojiFloat {

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

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

.guarantee-card h3,
.safety-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.guarantee-card p,
.safety-card p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.8;
}

/* Squad & Services Stacking */
@media (max-width: 768px) {

    .safety-grid,
    .premium-squad-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 3rem;
    }

    .safety-card {
        padding: 3rem 2rem;
    }

    .bitmoji-icon {
        height: 130px;
    }
}

/* Wall of Joy */
.wall-of-joy-container {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.marquee-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 4rem;
}

.marquee-header h3 {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

.marquee-header p {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
}

.testimonial-marquee {
    display: flex;
    gap: 3rem;
    padding: 2rem 4rem;
    will-change: transform;
}

.review-card {
    flex-shrink: 0;
    width: 420px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.3s ease;
}

.review-card:hover {
    border-color: rgba(110, 175, 110, 0.5);
}

.stars {
    color: #ffcc00;
    margin-bottom: 2rem;
    font-size: 1rem;
    display: flex;
    gap: 5px;
}

.review-card p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-family: var(--font-body);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--clr-orange-safety);
}

.reviewer span {
    font-weight: 700;
    color: var(--clr-text-main);
}

@media (max-width: 1024px) {
    .trust-container {
        padding: 0 2rem;
    }

    .stays-bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .large-card,
    .tall-card,
    .wide-card {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonial slider handled in newer media query at the end of file */

/* Brand Logo Footer Sync - Replaced by Typography Logo */
/* ============================================================
   PARTNERED WITH — TRUST MARQUEE SECTION
   ============================================================ */
.partners-trust-section {
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(110, 175, 110, 0.04) 50%, transparent 100%);
}

.partners-trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 175, 110, 0.4), transparent);
}

.partners-trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 175, 110, 0.4), transparent);
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.partners-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    color: var(--clr-text-main);
    margin: 0.5rem 0;
}

.partners-header p {
    color: var(--clr-text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.partners-marquee-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    display: flex;
    justify-content: center;
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-wrap: wrap;
    gap: 1.5rem;
}

@keyframes partnersScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    margin: 0 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    cursor: default;
    flex-shrink: 0;
}

.partner-img {
    height: 64px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    transition: transform 0.35s ease;
}

@media (max-width: 768px) {
    .partner-logo-item {
        padding: 1.2rem 2rem;
        margin: 0 0.6rem;
    }

    .partner-img {
        height: 42px;
        max-width: 140px;
    }

    .partners-header h2 {
        font-size: 1.8rem;
    }
}

/* ── VISUAL-FIRST OVERHAUL ── */
.resort-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resort-card:hover {
    border-color: rgba(110, 175, 110, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(110, 175, 110, 0.1);
    transform: translateY(-6px);
}

.resort-img-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.resort-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resort-card:hover .resort-img-wrapper img {
    transform: scale(1.06);
}

.resort-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.resort-category-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--clr-green-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resort-desc {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.photo-toggle-overlay {
    position: relative;
    cursor: pointer;
}

.photo-toggle-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.toggle-dot {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: grayscale(1);
    opacity: 0.7;
}

.toggle-dot.active {
    border-color: var(--clr-green-accent);
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(110, 175, 110, 0.4);
}

.toggle-dot:hover {
    opacity: 1;
    filter: grayscale(0);
}

.resort-card .resort-name {
    display: none !important;
    /* Force hide the names */
}

.resort-card .resort-desc {
    margin-top: 0.5rem;
}

.resort-category-label {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--clr-green-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── IMMERSIVE INFINITE GALLERY ── */







/* ── ENQUIRY MODAL (GLOBAL) ── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 14, 0.95);
    backdrop-filter: blur(12px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 4rem;
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-box h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--clr-green-accent);
}

.modal-box p {
    color: var(--clr-text-muted);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.enquiry-form input,
.enquiry-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.2rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.enquiry-form input:focus {
    border-color: var(--clr-green-accent);
    outline: none;
}

.submit-enquiry-btn {
    background: var(--clr-green-accent);
    color: #0a1115;
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-weight: 900;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.submit-enquiry-btn:hover {
    box-shadow: 0 10px 30px rgba(110, 175, 110, 0.3);
    transform: translateY(-3px);
}

#success-msg {
    text-align: center;
    display: none;
}

#success-msg i {
    font-size: 4rem;
    color: var(--clr-green-accent);
    margin-bottom: 1.5rem;
}

#success-msg h2 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* ── PACKAGES & FACILITIES DASHBOARD (GLOBAL) ── */
.packages-section {
    padding: 10rem 2rem;
    background: var(--clr-bg-dark);
    position: relative;
    overflow: hidden;
}

.packages-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-intro {
    text-align: center;
    margin-bottom: 6rem;
}

.section-intro h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--clr-green-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-intro p {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ── FACILITIES GRID ── */
.facilities-wrapper {
    margin-bottom: 8rem;
}

.facilities-wrapper h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff;
    letter-spacing: 2px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.facility-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.facility-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--clr-green-accent);
    transform: translateY(-5px);
}

.facility-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(110, 175, 110, 0.3));
}

.facility-info h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.3rem;
}

.facility-info p {
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

/* ── PRICING TIER CARDS ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 8rem;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
}

/* Tier Accents */
.basic::before {
    background: #6EAF6E;
}

.standard::before {
    background: #3498db;
}

.premium::before {
    background: #9b59b6;
}

.luxury::before {
    background: #f87171;
}

.royal::before {
    background: #f1c40f;
}

.package-header {
    text-align: center;
}

.p-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.basic .p-badge {
    color: #6EAF6E;
    background: rgba(110, 175, 110, 0.1);
}

.standard .p-badge {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.premium .p-badge {
    color: #9b59b6;
    background: rgba(155, 89, 182, 0.1);
}

.luxury .p-badge {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.royal .p-badge {
    color: #f1c40f;
    background: rgba(241, 196, 15, 0.1);
}

.p-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
}

.p-price span {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.package-list li {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.package-list li i {
    color: var(--clr-green-accent);
    font-size: 0.8rem;
}

.p-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 800;
    transition: 0.3s;
    cursor: pointer;
}

.package-card:hover .p-cta {
    background: #fff;
    color: #0a1115;
}

/* ── SPECIALS & OFFERS ── */
.specials-banner {
    background: linear-gradient(135deg, rgba(110, 175, 110, 0.1), rgba(32, 58, 67, 0.1));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.specials-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex-grow: 1;
}

.special-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.special-item i {
    font-size: 2.5rem;
    color: var(--clr-green-accent);
}

.special-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.special-text p {
    font-size: 0.9rem;
    color: var(--clr-text-muted);
}

/* ── TAGLINE MARQUEE ── */
.marketing-taglines {
    margin-top: 10rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    opacity: 0.5;
}

.tagline-row {
    font-size: 5rem;
    font-weight: 900;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: infiniteScroll 40s linear infinite;
}

@media (max-width: 1024px) {
    .specials-banner {
        flex-direction: column;
        text-align: center;
    }

    .section-intro h2 {
        font-size: 3rem;
    }

    .tagline-row {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .specials-grid {
        grid-template-columns: 1fr;
    }

    /* ── MOBILE NAVBAR ── */
    #main-header {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        margin: 0;
        height: 70px;
        padding: 0 1.5rem;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: rgba(9, 18, 22, 1);
    }

    .login-btn {
        display: none;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #fff;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        /* Below the 70px header */
        left: 0;
        right: 0;
        background: rgba(10, 17, 21, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1000;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.open {
        display: flex !important;
    }

    /* ── ACTIVITY SECTIONS PHOTO FIT ── */
    #rafting,
    #safari,
    #kayaking {
        padding: 4rem 1.5rem;
    }

    .activity-section h2 {
        font-size: 2.2rem;
    }

    .journey-card.featured {
        grid-column: span 1;
        height: 350px;
    }

    .ripple-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ── SAFETY & CONCIERGE ── */
    .safety-header {
        text-align: center;
    }

    .safety-header h2 {
        font-size: 2rem;
    }

    .premium-services-container {
        padding: 4rem 1.5rem;
    }

    .premium-services-container h2 {
        font-size: 1.8rem;
    }

    .safety-card {
        margin: 0 0.5rem;
    }

    /* ── WALL OF JOY SLIDER (MOBILE REFINED) ── */
    .wall-of-joy-container {
        padding: 4rem 0;
        overflow: hidden;
        background: linear-gradient(to bottom, transparent, rgba(110, 175, 110, 0.04));
    }

    .marquee-header h3 {
        font-size: 2.2rem !important;
        /* Scaled down for mobile */
        letter-spacing: 2px !important;
    }

    .testimonial-slider-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        padding: 0;
    }

    .testimonial-marquee {
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
        overflow-x: scroll !important;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 4rem 1.5rem;
        /* More vertical space for shadows */
        animation: none !important;
        scrollbar-width: none;
        scroll-padding: 0 1.5rem;
        /* Forces snap point to respect padding */
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .testimonial-marquee::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        min-width: 85%;
        /* Slightly narrower for better "peek" and snap */
        scroll-snap-align: start;
        margin: 0;
        padding: 2.2rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--glass-border);
        border-radius: 24px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    }

    .slider-controls {
        display: flex;
        gap: 2rem;
        margin-top: 1rem;
        z-index: 10;
    }

    .slider-btn {
        position: static !important;
        transform: none !important;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(110, 175, 110, 0.15);
        border: 1px solid rgba(110, 175, 110, 0.3);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .slider-btn:active {
        transform: scale(0.9);
        background: rgba(110, 175, 110, 0.4);
    }

    /* ── HIDE SECTIONS REQUESTED BY USER ── */
    #activities {
        display: none !important;
    }

    .testimonials-section,
    .wall-of-joy-container {
        display: none !important;
    }

    /* ── SAFETY CARD ALIGNMENT (FORCED) ── */
    #safety-commitment .safety-card,
    .premium-services-container .safety-card {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    #safety-commitment .safety-icon,
    .premium-services-container .safety-icon {
        width: 100% !important;
        margin: 0 auto !important;
        position: static !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    #safety-commitment .bitmoji-icon,
    .premium-services-container .bitmoji-icon {
        height: 130px !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: block !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* ── LODGE.HTML CARD MOBILE RESIZE ── */
    .resorts-grid .resort-card.featured,
    .resort-card.featured.alt-layout {
        flex-direction: column !important;
        height: auto !important;
    }

    .resorts-grid .resort-card.featured .resort-img-wrapper {
        height: 250px !important;
        width: 100% !important;
        border-radius: 20px 20px 0 0 !important;
    }

    /* ── ENQUIRY MODAL FIXES ── */
    .modal-box {
        width: 95% !important;
        padding: 2.5rem 1.5rem !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }

    .modal-close {
        top: 10px !important;
        right: 15px !important;
        z-index: 100;
    }

    .input-grp input,
    .input-grp select {
        width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* ── ADVANCED WHATSAPP WIDGET ── */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    pointer-events: none;
}

/* ── CHAT BUBBLE POPUP ── */
.wa-chat-bubble {
    pointer-events: auto;
    background: #fff;
    border-radius: 16px 16px 0 16px;
    width: 300px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.wa-chat-bubble.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-chat-header {
    background: #1b4332;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-agent-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.wa-agent-avatar svg {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.wa-status-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #aaa;
    transition: background 0.3s;
}

.wa-status-dot.online {
    background: #44ff6a;
}

.wa-status-dot.offline {
    background: #aaa;
}

.wa-agent-info {
    flex: 1;
}

.wa-agent-info strong {
    color: #fff;
    font-size: 0.95rem;
    display: block;
    padding-top: 6px;
}

.wa-agent-status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

.wa-reply-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    display: block;
    margin-top: 2px;
}

.wa-close-bubble {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    flex-shrink: 0;
}

.wa-close-bubble:hover {
    background: rgba(255, 255, 255, 0.35);
}

.wa-chat-body {
    background: #e5ddd5;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100px;
}

.wa-message-in {
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px 10px 10px 2px;
    max-width: 85%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s ease;
}

.wa-message-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.wa-message-in p {
    color: #111;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0 0 4px;
}

.wa-message-in span {
    color: #999;
    font-size: 0.7rem;
    display: block;
    text-align: right;
}

.wa-chat-footer {
    padding: 12px 16px;
    background: #f0f0f0;
}

.wa-start-chat-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #6EAF6E;
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 20px rgba(110, 175, 110, 0.3);
}

.wa-start-chat-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(110, 175, 110, 0.5);
    color: white;
}

/* ── BOTTOM ROW: TOOLTIP + BUTTON ── */
.wa-bottom-row {
    display: flex;
    align-items: center; /* keep tooltip inline */
    gap: 12px;
    pointer-events: none;
    position: relative;
    z-index: 1000;
}

.help-fab-container {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    pointer-events: auto;
}

.help-fab-main {
    background: linear-gradient(135deg, #1f2933, #0a1115);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.3s;
    position: relative;
}
.help-fab-main::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid #6EAF6E;
    opacity: 0.6;
    animation: help-ping 2.5s cubic-bezier(0, 0, 0.2, 1) infinite;
    z-index: -1;
}
@keyframes help-ping {
    75%, 100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.help-fab-container.fab-open .help-fab-main {
    transform: rotate(15deg) scale(1.05);
    background: #6EAF6E;
    box-shadow: 0 10px 30px rgba(110, 175, 110, 0.4);
}
.help-fab-container.fab-open .help-fab-main::before {
    animation: none;
    opacity: 0;
}

@media (hover: hover) {
    .help-fab-container:hover .help-fab-main {
        transform: rotate(15deg) scale(1.05);
        background: #6EAF6E;
        box-shadow: 0 10px 30px rgba(110, 175, 110, 0.4);
    }
    .help-fab-container:hover .help-fab-main::before {
        animation: none;
        opacity: 0;
    }
}

.help-fab-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    align-items: stretch;
    background: rgba(15, 28, 36, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
    min-width: 190px;
}

.help-fab-container.fab-open .help-fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

@media (hover: hover) {
    .help-fab-container:hover .help-fab-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }
}

.help-fab-menu a {
    width: 100% !important;
    height: auto !important;
    padding: 14px 20px !important;
    border-radius: 16px !important;
    font-size: 0.95rem !important;
    font-family: var(--font-heading);
    font-weight: 700;
    gap: 12px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    box-shadow: none !important;
    position: relative;
    text-decoration: none;
}
.help-fab-menu a i {
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.help-fab-menu .call-float-btn {
    background: rgba(255, 107, 53, 0.1) !important;
    color: var(--clr-text-main) !important;
}
.help-fab-menu .call-float-btn i {
    color: var(--clr-orange-safety);
}
.help-fab-menu .call-float-btn:hover {
    background: var(--clr-orange-safety) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4) !important;
}
.help-fab-menu .call-float-btn:hover i { color: #fff; }

.help-fab-menu .wa-button {
    background: rgba(37, 211, 102, 0.1) !important;
    color: var(--clr-text-main) !important;
    animation: none !important;
}
.help-fab-menu .wa-button i {
    color: #25D366;
}
.help-fab-menu .wa-button:hover {
    background: #25D366 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
}
.help-fab-menu .wa-button:hover i { color: #fff; }

.wa-widget-tooltip {
    background: #fff;
    color: #111;
    padding: 10px 15px;
    border-radius: 10px 10px 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.wa-bottom-row:hover .wa-widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-button {
    pointer-events: auto;
    background: #6EAF6E;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(110, 175, 110, 0.4);
    text-decoration: none;
    position: relative;
    animation: pulse-wa 2.5s infinite;
    transition: transform 0.3s;
    cursor: pointer;
    border: none;
}

.wa-button:hover {
    transform: scale(1.1);
    animation: none;
    color: white;
}

.call-float-btn {
    pointer-events: auto;
    background: var(--clr-orange-safety);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border: none;
    animation: none;
}

.call-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
    color: white;
}

.wa-button.first-visit-wave {
    animation: wa-wave 0.6s ease 3;
}

.wa-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FF0000;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    animation: wa-badge-pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(110, 175, 110, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(110, 175, 110, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(110, 175, 110, 0);
    }
}

@keyframes wa-wave {
    0% {
        transform: rotate(0deg) scale(1);
    }

    25% {
        transform: rotate(-15deg) scale(1.15);
    }

    75% {
        transform: rotate(15deg) scale(1.15);
    }

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

@keyframes wa-badge-pop {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .wa-widget-container {
        bottom: 20px;
        right: 16px;
    }

    .wa-button {
        width: 56px;
        height: 56px;
        font-size: 1.8rem;
    }

    .wa-widget-tooltip {
        display: none;
    }

    .wa-chat-bubble {
        width: calc(100vw - 40px);
        max-width: 300px;
    }
}


.wa-widget-tooltip {
    background: #fff;
    color: #111;
    padding: 10px 15px;
    border-radius: 10px 10px 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-widget-container:hover .wa-widget-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.wa-button {
    pointer-events: auto;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    position: relative;
    animation: pulse-wa 2s infinite;
    transition: transform 0.3s;
}

.wa-button:hover {
    transform: scale(1.1);
    animation: none;
    color: white;
}

.wa-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #FF0000;
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .wa-widget-container {
        bottom: 20px;
        right: 20px;
    }

    .wa-button {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .wa-widget-tooltip {
        display: none;
    }
}

/* --- NEW PACKAGE CARD STYLES (IMAGE-LESS) --- */
.lodge-card.no-img {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
    overflow: hidden;
}

.lodge-card.no-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--cat-color, var(--clr-orange-safety));
}

.lodge-card.no-img .card-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cat-color, var(--clr-orange-safety));
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.lodge-card.no-img h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.package-price-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--cat-color, var(--clr-orange-safety));
}

.package-price-tag .price-label {
    display: block;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 0.2rem;
}

.package-price-tag .price-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    font-family: var(--font-heading);
}

.package-includes-list {
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.package-includes-list h4 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-includes-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-includes-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--clr-text-muted);
}

.package-includes-list li i {
    color: var(--cat-color, var(--clr-orange-safety));
    width: 20px;
    text-align: center;
}

.best-for-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clr-text-muted);
    margin-top: auto;
}

/* Category Colors */
.cat-budget {
    --cat-color: #6EAF6E;
}

.cat-midrange {
    --cat-color: #2C5364;
}

.cat-group {
    --cat-color: #f39c12;
}

.cat-premium {
    --cat-color: #c3a473;
}

.cat-activity {
    --cat-color: #00cec9;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.package-rating .stars {
    color: #f1c40f;
    font-size: 0.9rem;
}

.package-rating .score {
    font-weight: 800;
    color: #fff;
}

@media (max-width: 768px) {
    .lodge-card.no-img {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .lodge-card.no-img h3 {
        font-size: 1.6rem;
    }
}

/* Package Categories Premium UI */
.packages-section {
    padding: 6rem 0;
    background: radial-gradient(circle at center point, var(--clr-bg-dark) 0%, #050a0d 100%);
}

.package-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    overflow-x: auto;
    padding: 1rem;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.package-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.package-filter-bar {
    display: inline-flex;
    gap: 0.5rem;
    background: rgba(15, 25, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255,255,255,0.02);
}

.package-filter-tab {
    background: transparent;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    letter-spacing: 1px;
}

.package-filter-tab:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.package-filter-tab.active {
    background: linear-gradient(135deg, var(--clr-orange-safety) 0%, #4a8b4a 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(110, 175, 110, 0.4);
    transform: translateY(-2px);
}

.package-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.package-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    display: none; /* hidden by default, toggled via JS */
    flex-direction: column;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.package-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.package-card:hover {
    border-color: rgba(110, 175, 110, 0.5);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(110, 175, 110, 0.05);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.package-card .package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.package-card .package-header h3 {
    font-size: 1.6rem;
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.package-card:hover .package-header h3 {
    background: linear-gradient(to right, #ffffff, var(--clr-earth-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package-card .package-rating {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #f1c40f;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(241, 196, 15, 0.1);
}

.package-card .package-type {
    color: var(--clr-earth-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0.9;
}

.package-card .package-price {
    font-size: 2.2rem;
    color: var(--clr-orange-safety);
    font-weight: 800;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    text-shadow: 0 2px 10px rgba(110, 175, 110, 0.2);
}

.package-card .package-price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: none;
}

.package-card .package-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.package-card .package-details li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    line-height: 1.5;
}

.package-card .package-details li i {
    color: var(--clr-orange-safety);
    margin-top: 0.25rem;
    font-size: 1rem;
    filter: drop-shadow(0 0 5px rgba(110, 175, 110, 0.5));
}

.package-card .package-details li strong {
    color: #fff;
    margin-right: 0.4rem;
    font-weight: 600;
}

/* Packages Mobile Responsiveness */
.packages-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.packages-section-title {
    font-size: 3.5rem;
    color: var(--clr-earth-gold);
    letter-spacing: 4px;
    margin: 0.5rem 0;
}

.packages-section-subtitle {
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3.5rem 0;
    }
    
    .packages-section-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .packages-section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .package-filter-wrapper {
        justify-content: flex-start;
        padding: 0.5rem 1.5rem;
        margin-bottom: 2.5rem;
    }

    .package-filter-tab {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .package-grid-display {
        grid-template-columns: 1fr; /* Force 1 column on mobile */
        gap: 1.5rem;
        padding: 0;
    }

    .package-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .package-card .package-header h3 {
        font-size: 1.3rem;
    }

    .package-card .package-price {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .package-card .package-details li {
        font-size: 0.85rem;
        gap: 0.7rem;
    }
}