/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Color Palette */
    --color-bg-darkest: #070e0a; /* Ultra dark jungle green-charcoal */
    --color-bg-dark: #0c1712; /* Mid dark jungle */
    --color-jungle-mid: #152d21; /* Rich jungle green */
    --color-jungle-light: #2d5a43; /* Forest leaf green */
    --color-bronze: #c58b58; /* Warm volcanic bronze */
    --color-bronze-glow: #e2b389; /* Light bronze glow */
    --color-text-light: #f5f7f6; /* Off-white for crisp readability */
    --color-text-muted: #a8b9b0; /* Sage grey-green for details */
    --color-glass: rgba(12, 23, 18, 0.7);
    --border-glass: rgba(197, 139, 88, 0.15);
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Spacing & Transitions */
    --jungle-space: 4rem; /* More compact spacing to reduce scrolling */
    --transition-premium: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-darkest);
    color: var(--color-text-light);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Helpers */
h1, h2, h3, h4, .nav-brand {
    font-family: var(--font-serif);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-bronze), #a36b3c);
    color: #070e0a;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 139, 88, 0.4);
}

.btn-glow {
    position: relative;
    box-shadow: 0 0 15px rgba(197, 139, 88, 0.2);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(197, 139, 88, 0.6);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn-glow:hover::after {
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(245, 247, 246, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(245, 247, 246, 0.1);
    border-color: var(--color-bronze);
    transform: translateY(-3px);
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Floating Ambient Audio Control */
.audio-controls {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}

.audio-toggle-btn {
    background: rgba(7, 14, 10, 0.65);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: var(--color-text-light);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.audio-toggle-btn:hover {
    border-color: var(--color-bronze);
    background: rgba(197, 139, 88, 0.1);
    transform: scale(1.03);
}

/* Sound wave animation */
.sound-wave {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    height: 14px;
    width: 16px;
}

.sound-wave .bar {
    width: 2px;
    background-color: var(--color-text-muted);
    border-radius: 1px;
    height: 3px;
    transition: height 0.3s ease;
}

.audio-active .sound-wave .bar {
    background-color: var(--color-bronze);
    animation: bounce 0.8s ease infinite alternate;
}

.audio-active .sound-wave .bar:nth-child(1) { animation-delay: 0.1s; }
.audio-active .sound-wave .bar:nth-child(2) { animation-delay: 0.4s; }
.audio-active .sound-wave .bar:nth-child(3) { animation-delay: 0.2s; }
.audio-active .sound-wave .bar:nth-child(4) { animation-delay: 0.5s; }

@keyframes bounce {
    0% { height: 3px; }
    100% { height: 14px; }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 5rem;
    border-bottom: 1px solid rgba(197, 139, 88, 0.15);
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav {
    position: absolute;
    top: 2.5rem;
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.nav-brand {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    color: var(--color-text-light);
    border-bottom: 2px solid var(--color-bronze);
    padding-bottom: 0.2rem;
}

.nav-date {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--color-bronze);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
}

.hero-title .highlight {
    font-style: italic;
    color: var(--color-bronze);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 3rem;
}

/* Countdown Widget */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 0 auto 3rem auto;
    padding: 1.2rem 2.5rem;
    max-width: 480px;
    background: var(--color-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(15px);
}

.countdown-segment {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-bronze);
    font-family: var(--font-sans);
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 0.3rem;
}

.countdown-divider {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--border-glass);
    margin-bottom: 12px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.8;
}

.chevron-down {
    width: 20px;
    height: 20px;
    animation: floatDown 1.5s infinite alternate ease-in-out;
}

@keyframes floatDown {
    0% { transform: translateY(0); }
    100% { transform: translateY(8px); }
}

/* Logistics Section */
.logistics-section {
    padding: var(--jungle-space) 0;
    background-color: var(--color-bg-dark);
    position: relative;
    border-top: 1px solid rgba(197, 139, 88, 0.05);
}

.section-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-bronze);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 3.5rem;
    letter-spacing: -0.01em;
}

.section-subtitle-copy {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--color-text-muted);
    max-width: 750px;
    margin-bottom: 4rem;
}

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.logistics-card {
    background: rgba(7, 14, 10, 0.4);
    border: 1px solid rgba(245, 247, 246, 0.06);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: var(--transition-premium);
    backdrop-filter: blur(10px);
}

.logistics-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass);
    background: rgba(197, 139, 88, 0.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.logistics-card.highlight-card {
    background: linear-gradient(145deg, rgba(21, 45, 33, 0.4), rgba(7, 14, 10, 0.4));
    border: 1px solid var(--border-glass);
}

.logistics-card.highlight-card:hover {
    border-color: var(--color-bronze);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(197, 139, 88, 0.1);
    color: var(--color-bronze);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.logistics-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    font-family: var(--font-sans);
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.card-emphasis {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.card-detail {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Package & Bungalows Section */
.package-section {
    padding: var(--jungle-space) 0;
    background-color: var(--color-bg-darkest);
    border-top: 1px solid rgba(197, 139, 88, 0.05);
}

.includes-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    margin-top: 2rem;
}

.includes-tile {
    background: rgba(12, 23, 18, 0.4);
    border: 1px solid var(--border-glass);
    padding: 2.2rem 1.8rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
}

.includes-tile:hover {
    transform: translateY(-5px);
    border-color: var(--color-bronze);
    background: rgba(197, 139, 88, 0.02);
}

.tile-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(197, 139, 88, 0.1);
    padding-bottom: 0.8rem;
}

.tile-icon {
    font-size: 1.4rem;
}

.tile-header h3 {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin: 0;
    font-family: var(--font-serif);
}

.tile-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tile-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--color-text-muted);
}

.tile-list li strong {
    color: var(--color-text-light);
    font-weight: 500;
}

.tile-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-bronze);
    font-weight: 700;
    font-size: 0.85rem;
}

.accommodation-title {
    font-size: 1.8rem;
    font-family: var(--font-serif);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--color-text-light);
    letter-spacing: -0.01em;
}

.bungalow-options-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bungalow-option-card {
    background: rgba(12, 23, 18, 0.4);
    border: 1px solid rgba(245, 247, 246, 0.05);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
}

.bungalow-option-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.bungalow-option-card.recommended-option {
    border: 1px solid rgba(197, 139, 88, 0.4);
    background: linear-gradient(180deg, rgba(21, 45, 33, 0.2) 0%, rgba(7, 14, 10, 0.4) 100%);
}

.bungalow-option-card.recommended-option:hover {
    border-color: var(--color-bronze);
}

.option-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--color-bronze);
    color: #070e0a;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.bungalow-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.bungalow-option-card:hover .bungalow-img-wrapper img {
    transform: scale(1.05);
}

.bungalow-option-content {
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bungalow-option-content h4 {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.bungalow-specs {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bronze);
    margin-bottom: 1.2rem;
}

.bungalow-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-box {
    border-top: 1px solid rgba(245, 247, 246, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.price-original {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(245, 247, 246, 0.4);
    margin-bottom: 0.2rem;
}

.price-sale {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    color: var(--color-text-light);
    font-weight: 600;
    line-height: 1;
}

.price-sale .rate-label {
    font-size: 0.9rem;
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--color-text-muted);
    margin-left: 0.4rem;
}

.price-tax {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.4rem;
}

.total-cost-box {
    background: rgba(197, 139, 88, 0.06);
    border: 1px solid rgba(197, 139, 88, 0.15);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.recommended-option .total-cost-box {
    background: rgba(197, 139, 88, 0.12);
    border-color: rgba(197, 139, 88, 0.3);
}

.cost-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.cost-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-bronze);
    margin: 0.2rem 0;
}

.cost-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* Experience Sections (Morning Adrenaline & Afternoon Recovery) */
.experience-section {
    padding: var(--jungle-space) 0;
    background-color: var(--color-bg-darkest);
    border-bottom: 1px solid rgba(197, 139, 88, 0.05);
}

.experience-section.alt-layout {
    background-color: var(--color-bg-dark);
}

.experience-media {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    height: 300px; /* Limit height to prevent excessive scrolling */
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(245, 247, 246, 0.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

.image-wrapper img {
    width: 100%;
    height: 100%; /* Cover the container */
    display: block;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-wrapper:hover img {
    transform: scale(1.04);
}

.experience-content {
    padding-left: 2rem;
}

.alt-layout .experience-content {
    padding-left: 0;
    padding-right: 2rem;
}

/* Offset Collage Layout for Recovery Flow */
.collage-wrapper {
    position: relative;
    height: 300px; /* Reduced height to save space */
    width: 100%;
}

.collage-wrapper .main-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 240px; /* Reduced */
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(245, 247, 246, 0.08);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5);
}

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

.collage-wrapper:hover .main-img img {
    transform: scale(1.03);
}

.collage-wrapper .offset-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 170px; /* Reduced */
    z-index: 3;
    border: 4px solid var(--color-bg-dark); /* Frame effect */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

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

.collage-wrapper:hover .offset-img img {
    transform: scale(1.04);
}

.flow-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-bronze);
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.experience-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    line-height: 1.2;
    margin-bottom: 1.8rem;
    letter-spacing: -0.01em;
}

.experience-copy {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2.2rem;
}

.experience-bullets {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-bronze);
    box-shadow: 0 0 8px var(--color-bronze);
}

/* Spa Section */
.spa-section {
    position: relative;
    padding: var(--jungle-space) 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 80vh;
    border-bottom: 1px solid rgba(197, 139, 88, 0.05);
}

.spa-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.spa-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.spa-content {
    max-width: 650px;
    background: rgba(7, 14, 10, 0.75);
    border: 1px solid var(--border-glass);
    padding: 4rem 3.5rem;
    border-radius: 24px;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.spa-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.spa-copy {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 680px;
}

.spa-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-bronze);
}

.spa-icon {
    width: 24px;
    height: 24px;
}

/* Footer Section */
.footer-section {
    background-color: var(--color-bg-darkest);
    padding: var(--jungle-space) 0 4rem 0;
    position: relative;
    border-top: 1px solid rgba(197, 139, 88, 0.05);
}

.footer-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

.footer-wrap h2 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.footer-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.footer-detail-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bronze);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 247, 246, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

/* Reveal / Entrance Animations (Scroll-Driven) */
.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-reveal-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.animate-reveal-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.animate-reveal-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
}

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

/* Scroll Triggered Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers for scroll animations */
.logistics-card:nth-child(2) { transition-delay: 0.1s; }
.logistics-card:nth-child(3) { transition-delay: 0.2s; }
.logistics-card:nth-child(4) { transition-delay: 0.3s; }

.bungalow-option-card:nth-child(2) { transition-delay: 0.2s; }

/* Responsive Design */
@media (max-width: 1100px) {
    .includes-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    :root {
        --jungle-space: 5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .alt-layout .experience-content {
        padding-right: 0;
        order: -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .experience-content {
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .experience-bullets {
        align-items: center;
    }
    
    .collage-wrapper {
        height: 380px;
    }
    
    .collage-wrapper .main-img {
        width: 70%;
        height: 300px;
    }
    
    .collage-wrapper .offset-img {
        width: 55%;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-nav {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .bungalow-options-container {
        grid-template-columns: 1fr;
    }
    
    .includes-tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-container {
        padding: 1rem 1.5rem;
        gap: 0.8rem;
    }
    
    .countdown-segment {
        width: 50px;
    }
    
    .countdown-number {
        font-size: 1.4rem;
    }
    
    .audio-controls {
        top: auto;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .spa-content {
        padding: 3rem 1.8rem;
        text-align: center;
    }
    
    .spa-highlight {
        justify-content: center;
    }
}
