/*
Theme Name: Luna Riverside Hotel & Resort
Theme URI: https://luna-hotel.netlify.app
Author: AG Holding
Author URI: https://agholding.net
Description: A bespoke riverside hotel & resort theme for Luna Riverside, Kaghan Valley. Header & footer menus are managed from Appearance → Menus / the Customizer, while Rooms, Gallery, Facilities and Highlights are managed from the WordPress admin so non-technical staff can update the site with no code.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luna-hotel
Tags: hotel, resort, custom-menu, custom-logo, featured-images, full-width-template, two-columns
*/

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

/* --- Banyan Tree Inspired Global Styles --- */
:root {
    /* Muted Luxury Palette */
    --primary: #2a3a35;
    --primary-light: #3e564d;
    --primary-dark: #1e2b27;
    --accent: #d4c0a1;
    --accent-hover: #c4b091;
    
    --bg-light: #faf9f6;
    --bg-warm: #f2efe9;
    --white: #ffffff;
    
    --text-dark: #222222;
    --text-muted: #555555;
    --text-light: #f5f5f5;

    --font-heading: 'Cinzel', serif;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-sm: 0 4px 20px rgba(42, 58, 53, 0.06);
    --shadow-md: 0 12px 40px rgba(42, 58, 53, 0.1);
    --shadow-lg: 0 24px 60px rgba(42, 58, 53, 0.14);
    --radius: 2px;
    --section-gap: 8rem;
    --container-max: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-light);
    overflow-x: hidden;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    width: 100%;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 2px;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* --- Premium Site Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
    border-bottom: 1px solid rgba(212, 192, 161, 0.15);
    background: linear-gradient(180deg, rgba(20, 30, 27, 0.65) 0%, rgba(20, 30, 27, 0.2) 70%, transparent 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212, 192, 161, 0.2) 15%,
        var(--accent) 50%,
        rgba(212, 192, 161, 0.2) 85%,
        transparent 100%);
    opacity: 0.9;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 40%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 192, 161, 0.45), transparent);
}

header.scrolled {
    background: rgba(26, 38, 34, 0.97);
    border-bottom-color: rgba(212, 192, 161, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

header.scrolled .banyan-nav-container {
    height: 72px;
}

header.scrolled .nav-logo-center img {
    height: 48px;
}

.banyan-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    max-width: 1600px;
    margin: 0 auto;
    transition: height 0.4s ease;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    flex: 1;
    align-items: center;
}

.nav-right {
    justify-content: flex-end;
}

.nav-logo-center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 2rem;
}

.nav-logo-center::before,
.nav-logo-center::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
    opacity: 0.7;
}

.nav-logo-center::before {
    right: 100%;
    margin-right: 0.5rem;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.nav-logo-center::after {
    left: 100%;
    margin-left: 0.5rem;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.nav-logo-center img {
    height: 58px;
    transition: var(--transition);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
}

.nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding: 0.5rem 0;
    font-weight: 500;
    font-family: var(--font-body);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), rgba(212, 192, 161, 0.4));
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
    color: var(--accent);
}

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

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
    bottom: -6px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    height: 2px;
    width: 25px;
    background-color: var(--white);
    margin-bottom: 5px;
    transition: var(--transition);
}

/* --- Vertical Tab (Left side) --- */
.vertical-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: left top;
    background: linear-gradient(135deg, rgba(42, 58, 53, 0.92), rgba(30, 43, 39, 0.88));
    color: var(--accent);
    padding: 12px 28px;
    letter-spacing: 3.5px;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 999;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border: 1px solid rgba(212, 192, 161, 0.25);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.vertical-tab:hover {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    height: 58px;
    padding: 0 15px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border-radius: 50px;
    box-shadow:
        0 6px 24px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease,
                padding 0.4s ease,
                gap 0.4s ease;
    overflow: visible;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.whatsapp-float-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50px;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: whatsappPulse 2.5s ease-out infinite;
    pointer-events: none;
}

.whatsapp-float-ring--delay {
    animation-delay: 1.25s;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    fill: currentColor;
    position: relative;
    z-index: 1;
}

.whatsapp-float-label {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
    position: relative;
    z-index: 1;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 36px rgba(37, 211, 102, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.25);
    padding-right: 20px;
    gap: 10px;
}

.whatsapp-float:hover .whatsapp-float-label {
    max-width: 120px;
    opacity: 1;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        height: 54px;
        width: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-float-label {
        display: none;
    }

    .whatsapp-float:hover {
        padding-right: 0;
    }
}

/* --- Hero Section — Premium --- */
.banyan-hero {
    height: 100vh;
    min-height: 640px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.banyan-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    z-index: 0;
    animation: heroKenBurns 22s ease-in-out infinite alternate;
}

/* --- Hero Image Slider (Homepage) --- */
.banyan-hero--slider .banyan-hero-bg {
    animation: none;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation: heroSlideKenBurns 4s ease-out forwards;
}

@keyframes heroSlideKenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.07);
    }
}

.hero-slider-controls {
    position: absolute;
    bottom: 6.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0.85rem;
    background: rgba(15, 22, 20, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 192, 161, 0.2);
    border-radius: 2px;
}

.hero-slider-dot {
    position: relative;
    width: 52px;
    height: 3px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.35);
}

.hero-slider-dot-fill {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), #e8d4b8);
    transform-origin: left center;
}

.hero-slider-dot.active .hero-slider-dot-fill {
    animation: heroDotProgress 4s linear forwards;
}

.hero-slider-dot.is-paused .hero-slider-dot-fill {
    animation-play-state: paused;
}

@keyframes heroDotProgress {
    from { width: 0; }
    to { width: 100%; }
}

.banyan-hero--slider .hero-scroll-hint {
    bottom: 6.5rem;
}

@media (max-width: 768px) {
    .hero-slider-controls {
        bottom: 9.5rem;
        gap: 0.5rem;
        padding: 0.4rem 0.65rem;
    }

    .hero-slider-dot {
        width: 36px;
    }
}

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.banyan-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(180deg,
            rgba(15, 22, 20, 0.75) 0%,
            rgba(15, 22, 20, 0.35) 35%,
            rgba(15, 22, 20, 0.45) 65%,
            rgba(15, 22, 20, 0.82) 100%),
        radial-gradient(ellipse 80% 60% at 50% 45%, transparent 0%, rgba(15, 22, 20, 0.4) 100%);
}

.banyan-hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.banyan-hero-frame {
    position: absolute;
    inset: clamp(1.5rem, 4vw, 3rem);
    z-index: 4;
    pointer-events: none;
    border: 1px solid rgba(212, 192, 161, 0.12);
}

.banyan-hero-frame::before,
.banyan-hero-frame::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border-color: rgba(212, 192, 161, 0.35);
    border-style: solid;
}

.banyan-hero-frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
}

.banyan-hero-frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0;
}

.banyan-hero-content {
    max-width: 920px;
    width: 100%;
    padding: clamp(7rem, 14vh, 9rem) clamp(1.25rem, 4vw, 2rem) clamp(8rem, 12vh, 10rem);
    z-index: 5;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.banyan-hero-content::before {
    content: '';
    position: absolute;
    inset: -2rem -3rem;
    background: radial-gradient(ellipse at center, rgba(15, 22, 20, 0.35) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Hero bottom bar — CTAs left, location right */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
    background: linear-gradient(to top, rgba(15, 22, 20, 0.72) 0%, rgba(15, 22, 20, 0.35) 70%, transparent 100%);
    border-top: 1px solid rgba(212, 192, 161, 0.12);
    animation: fadeUp 1s ease 0.8s both;
}

.hero-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Homepage location badge */
.hero-location {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 1;
    min-width: 0;
    margin-left: auto;
}

.hero-bottom-bar .hero-location {
    margin-left: auto;
}

.hero-location-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 192, 161, 0.55));
}

.hero-location-line:last-of-type {
    background: linear-gradient(90deg, rgba(212, 192, 161, 0.55), transparent);
}

.hero-location-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0;
    padding: 0.65rem 1.25rem;
    font-family: var(--font-body);
    font-size: clamp(0.62rem, 1.2vw, 0.76rem);
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 1.5;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(15, 22, 20, 0.55);
    border: 1px solid rgba(212, 192, 161, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    text-align: right;
}

.hero-location-text strong {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-location-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: var(--accent);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero-bottom-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .hero-bottom-actions {
        justify-content: center;
    }

    .hero-location {
        justify-content: center;
        margin-left: 0;
    }

    .hero-location-text {
        width: 100%;
        justify-content: center;
        text-align: center;
        letter-spacing: 2px;
        padding: 0.75rem 1rem;
        line-height: 1.65;
        flex-wrap: wrap;
        white-space: normal;
    }
}

@media (min-width: 769px) {
    .hero-location-text {
        white-space: nowrap;
    }
}

.hero-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 auto 1.75rem;
    font-weight: 500;
    font-family: var(--font-body);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(212, 192, 161, 0.3);
    background: rgba(15, 22, 20, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeUp 1s ease 0.2s both;
    text-align: center;
    line-height: 1.5;
    max-width: 90%;
}

.hero-highlight::before,
.hero-highlight::after {
    content: '';
    width: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
    opacity: 0.6;
    flex-shrink: 0;
}

.hero-highlight::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.banyan-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: clamp(2px, 0.8vw, 6px);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: none;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    animation: fadeUp 1s ease 0.4s both;
    text-wrap: balance;
    width: 100%;
    text-align: center;
}

.banyan-hero-title .title-accent {
    display: block;
    font-style: italic;
    color: var(--accent);
    font-weight: 300;
    letter-spacing: clamp(3px, 1vw, 8px);
    margin-top: 0.25rem;
    text-shadow: 0 2px 20px rgba(212, 192, 161, 0.25);
}

.banyan-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
    max-width: 320px;
    animation: fadeUp 1s ease 0.55s both;
}

.banyan-hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 192, 161, 0.5), transparent);
}

.banyan-hero-divider i {
    font-style: normal;
    color: var(--accent);
    font-size: 0.5rem;
    opacity: 0.8;
}

.banyan-hero-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.8vw, 1.12rem);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    line-height: 1.95;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeUp 1s ease 0.65s both;
    text-align: center;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    width: 100%;
    animation: fadeUp 1s ease 0.8s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #e8d4b8 50%, var(--accent-hover) 100%);
    background-size: 200% 100%;
    color: var(--primary-dark);
    border: 1px solid rgba(212, 192, 161, 0.8);
    box-shadow: 0 8px 28px rgba(212, 192, 161, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 3.5s ease-in-out infinite;
    z-index: 0;
}

.hero-btn > * {
    position: relative;
    z-index: 1;
}

@keyframes btnShimmer {
    0% { left: -100%; }
    40%, 100% { left: 150%; }
}

.hero-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(212, 192, 161, 0.5);
    color: var(--primary-dark);
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.hero-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.hero-btn-primary .hero-btn-icon {
    background: rgba(30, 43, 39, 0.2);
    color: var(--primary-dark);
}

.hero-btn-outline .hero-btn-icon {
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.58rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: fadeUp 1.2s ease 1.2s both;
    pointer-events: none;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Banyan Minimalist Link --- */
.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--white);
    transition: var(--transition);
}

.explore-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.explore-link:hover .explore-icon {
    background: var(--white);
    color: var(--primary);
}

.explore-link.dark {
    color: var(--text-dark);
}

.explore-link.dark .explore-icon {
    border-color: var(--text-dark);
}

.explore-link.dark:hover .explore-icon {
    background: var(--text-dark);
    color: var(--white);
}

/* --- Minimalist Content Sections --- */
.banyan-section {
    padding: var(--section-gap) 0;
}

.banyan-section.bg-light { background-color: var(--bg-light); }
.banyan-section.bg-warm { background-color: var(--bg-warm); }
.banyan-section.bg-dark { background-color: var(--primary); color: var(--white); }

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 400;
    letter-spacing: clamp(2px, 0.5vw, 5px);
    margin-bottom: 1.25rem;
    line-height: 1.25;
    text-transform: none;
    color: var(--primary);
}

.banyan-section.bg-dark .section-title {
    color: var(--white);
}

.centered-content .section-title::after,
.section-header .section-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), rgba(212, 192, 161, 0.2));
    margin: 1.25rem auto 0;
}

.split-text .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin-top: 1rem;
}

.section-subtitle {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
}

.section-subtitle::after {
    background: linear-gradient(90deg, var(--accent), transparent);
}

.split-text .section-subtitle,
.centered-content .section-subtitle,
.section-header .section-subtitle {
    display: inline-flex;
}

.banyan-section.bg-dark .section-title { color: var(--accent); }

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 3rem;
}

.banyan-section.bg-dark .section-text { color: rgba(255,255,255,0.8); }

/* --- Wide Cinematic Image Block --- */
.cinematic-image-block {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cinematic-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
}

.cinematic-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.cinematic-content .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    letter-spacing: 3px;
    text-transform: none;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* --- Clean Grid Layouts --- */
.banyan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.banyan-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}

.banyan-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.banyan-card-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.banyan-card:hover .banyan-card-img {
    transform: scale(1.05);
}

.banyan-card-content {
    padding: 2.5rem;
    text-align: center;
}

.banyan-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* --- Minimalist Footer --- */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 6rem 0 2rem;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* --- Utilities --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    background: var(--accent);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    border: 1px solid var(--accent);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: transparent;
    color: var(--accent);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

@media (max-width: 992px) {
    .nav-left, .nav-right {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .banyan-nav-container {
        justify-content: space-between;
    }
    .nav-logo-center {
        order: -1;
    }
    .banyan-hero-title { font-size: 2.5rem; letter-spacing: 5px; }
}

/* Keep Scroll modal styles from before but styled cleaner */
.scroll-modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0; top: 0; width: 100%; height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}
.scroll-modal-content {
    background-color: var(--bg-light);
    margin: 10% auto;
    padding: 3rem;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
}
.scroll-modal-close {
    position: absolute; top: 15px; right: 25px;
    color: #aaa; font-size: 28px; font-weight: bold; cursor: pointer;
}
.modal-header h3 { font-family: var(--font-heading); margin-bottom: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; background: transparent; font-family: var(--font-body);}

/* --- Enhanced Professional Components --- */
.section-subtitle.light { color: var(--accent); }
.banyan-section.bg-dark .section-subtitle { color: var(--accent); }

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-grid.reverse .split-image { order: 2; }
.split-grid.reverse .split-text { order: 1; }

.split-text { text-align: left; }
.split-text .section-title { text-align: left; margin-bottom: 1.5rem; }

.showcase-block {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.showcase-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.showcase-block:hover .showcase-img { transform: scale(1.06); }

.showcase-block::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

.banyan-hero.subpage {
    height: 68vh;
    min-height: 440px;
}

.banyan-hero.subpage .banyan-hero-bg {
    animation: none;
}

.banyan-hero.subpage .banyan-hero-content {
    padding-top: clamp(5rem, 10vh, 7rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.banyan-hero.subpage .banyan-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: clamp(2px, 0.6vw, 5px);
    line-height: 1.25;
    text-transform: none;
    animation: fadeUp 0.8s ease 0.35s both;
}

.banyan-hero.subpage .hero-highlight {
    animation: fadeUp 0.8s ease 0.2s both;
}

.banyan-hero.subpage .banyan-hero-text {
    animation: fadeUp 0.8s ease 0.5s both;
}

/* Image feature cards */
.banyan-card.has-img { overflow: hidden; }
.banyan-card.has-img .banyan-card-img {
    height: 260px;
    overflow: hidden;
    transition: transform 6s ease;
}
.banyan-card.has-img:hover .banyan-card-img { transform: scale(1.06); }
.banyan-card.has-img .banyan-card-content { text-align: left; padding: 2rem; }
.banyan-card.has-img .banyan-card-title { font-size: 1.2rem; }

/* Room image assignments — l4 suite, l3 deluxe, l2 standard */
.room-img--suite {
    background-image: url('images/l4.jpg');
}
.room-img--deluxe {
    background-image: url('images/l3.jpg');
}
.room-img--standard {
    background-image: url('images/l2.jpg');
}

/* Room cards */
.rooms-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 3.5rem;
    align-items: stretch;
}

.room-card {
    background: var(--white);
    border: 1px solid rgba(42, 58, 53, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    z-index: 2;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 192, 161, 0.35);
}

.room-card:hover::before {
    transform: scaleX(1);
}

.room-card-img {
    height: 300px;
    min-height: 280px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: background-size 8s ease;
}

.room-card:hover .room-card-img {
    background-size: 112%;
}

.room-card-tag {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(42, 58, 53, 0.92);
    color: var(--accent);
    padding: 0.45rem 1.1rem;
    font-size: 0.65rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 192, 161, 0.5);
    backdrop-filter: blur(6px);
}

.room-card-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(to top, rgba(42, 58, 53, 0.95), transparent);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.room-card-price-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--accent);
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.room-card-body {
    padding: 2rem 2rem 2.25rem;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
    color: var(--primary);
}

.room-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    flex: 1;
}

.room-price-row {
    margin: 0 0 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(42, 58, 53, 0.08);
    border-bottom: 1px solid rgba(42, 58, 53, 0.08);
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.room-price-row del {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.room-price-row strong {
    color: var(--primary);
    font-size: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    margin-top: auto;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-book:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.btn-book--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-book--outline:hover {
    background: var(--primary);
    color: var(--white);
}

.room-features {
    list-style: none;
    margin: 1rem 0;
}

.room-features li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding: 0.35rem 0 0.35rem 1.4rem;
    position: relative;
}

.room-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

.room-ideal {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
}

.room-ideal strong { color: var(--primary); }

/* Experience overlay cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    position: relative;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.experience-card:hover img { transform: scale(1.08); }

.experience-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,58,53,0.95) 0%, rgba(42,58,53,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--white);
    text-align: left;
}

.experience-card-overlay h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    letter-spacing: 2px;
}

.experience-card-overlay p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin: 0; }

/* Feature tags */
.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.feature-tag {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,192,161,0.3);
    color: var(--white);
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.banyan-section.bg-light .feature-tag,
.banyan-section.bg-warm .feature-tag {
    background: var(--white);
    border-color: rgba(42,58,53,0.15);
    color: var(--primary);
}

/* Facility grid */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.facility-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.facility-item:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.facility-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.facility-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
}

/* Gallery */
.gallery-section { padding: 8rem 0; background: var(--bg-warm); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    height: 240px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.gallery-item.tall { grid-row: span 2; height: 100%; min-height: 490px; }
.gallery-item.wide { grid-column: span 2; }

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(42,58,53,0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Promise box */
.promise-box {
    background: var(--primary);
    color: var(--white);
    padding: 2.5rem;
    margin-top: 2rem;
    border-left: 4px solid var(--accent);
    text-align: left;
}

.promise-box h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.promise-box p {
    color: rgba(255,255,255,0.9);
    font-style: italic;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.8;
}

/* Brand line */
.brand-line {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent);
    letter-spacing: 2px;
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid rgba(212,192,161,0.3);
    border-bottom: 1px solid rgba(212,192,161,0.3);
}

/* Enhanced footer */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    text-align: left;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
}
.footer-links a:hover { color: var(--accent); padding-left: 5px; }

.footer-contact-item {
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.footer-contact-item span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

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

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 3001;
    transition: var(--transition);
}

.lightbox-close:hover { color: var(--accent); }

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid rgba(212,192,161,0.2);
}

/* Route steps */
.route-steps {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto 0;
    counter-reset: route;
}

.route-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.route-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
}

.route-step p { margin: 0; color: var(--text-muted); }

/* Contact layout */
.contact-split {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-panel {
    background: var(--primary);
    color: var(--white);
    padding: 3rem;
    height: 100%;
}

.contact-info-panel h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.info-item { margin-bottom: 2rem; }
.info-item span {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.info-item p, .info-item a {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin: 0;
}

.info-item a:hover { color: var(--accent); }

/* Reveal animation */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(42,58,53,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav-overlay.open { display: flex; }

.mobile-nav-overlay .nav-link {
    font-size: 1.2rem;
    letter-spacing: 4px;
}

.scroll-modal.show { display: block; }

/* --- Room booking preview (contact page) --- */
.room-booking-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.room-preview-item {
    position: relative;
    height: 90px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    opacity: 0.75;
    transition: var(--transition);
    cursor: default;
}

.room-preview-item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 0.5rem;
    font-size: 0.55rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

/* Section alignment utilities */
.section-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 3.5rem;
}

.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.9rem; line-height: 1.75; }

.banyan-card {
    box-shadow: var(--shadow-sm);
}

.centered-content {
    max-width: 820px;
}

/* Nav alignment fix — merged into header block above */

@media (max-width: 992px) {
    .nav-logo-center::before,
    .nav-logo-center::after {
        display: none;
    }

    .nav-logo-center {
        padding: 0;
    }

    .banyan-hero-frame {
        inset: 1rem;
    }

    .hero-scroll-hint {
        display: none;
    }
}

@media (max-width: 1100px) {
    .rooms-showcase {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    .room-booking-preview { grid-template-columns: 1fr; }
    .room-preview-item { height: 120px; }
    .facility-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { grid-row: span 1; min-height: 240px; }
    .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 992px) {
    .split-grid, .split-grid.reverse { grid-template-columns: 1fr; gap: 3rem; }
    .split-grid.reverse .split-image, .split-grid.reverse .split-text { order: unset; }
    .split-text .section-title { text-align: center; }
    .split-text .section-title::after { margin: 1rem auto 0; }
    .split-text { text-align: center; }
    .experience-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; text-align: center; }
    .contact-split { grid-template-columns: 1fr; }
    .showcase-img { height: 350px; }
}

/* --- Premium hover & glow effects --- */
.banyan-card {
    position: relative;
}

.banyan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 30%, rgba(212, 192, 161, 0.12) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.banyan-card:hover::after {
    opacity: 1;
}

.banyan-hero-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: radial-gradient(ellipse 70% 50% at 50% 40%, rgba(212, 192, 161, 0.12) 0%, transparent 65%);
    animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.room-card,
.experience-card,
.showcase-block,
.gallery-item {
    will-change: transform;
}

.btn-book {
    position: relative;
    overflow: hidden;
}

.btn-book::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 192, 161, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-book:hover::after {
    width: 300px;
    height: 300px;
}

.explore-link .explore-icon {
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.explore-link:hover .explore-icon {
    transform: translateX(4px);
}

.cinematic-image-block {
    position: relative;
}

.cinematic-image-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.nav-logo-center img {
    transition: transform 0.5s ease, filter 0.5s ease;
}

header:not(.scrolled) .nav-logo-center:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 20px rgba(212, 192, 161, 0.35));
}

.section-header,
.centered-content {
    animation: none;
}

.reveal-up.active .section-title {
    animation: titleReveal 0.9s ease both;
}

@keyframes titleReveal {
    from {
        letter-spacing: 8px;
        opacity: 0.7;
    }
    to {
        letter-spacing: clamp(2px, 0.5vw, 5px);
        opacity: 1;
    }
}

/* --- Contact / Booking form (moved from inline page styles) --- */
.booking-form-box {
    background: var(--white);
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}
.form-field { margin-bottom: 1.5rem; text-align: left; }
.form-field label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212,192,161,0.2);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .form-row-2 { grid-template-columns: 1fr; } .booking-form-box { padding: 2rem; } }

/* --- Contact Form 7 inside the booking box --- */
.booking-form-box .wpcf7-form p { margin-bottom: 0; }
.booking-form-box .wpcf7-form .btn,
.booking-form-box .wpcf7-form input.btn,
.booking-form-box .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
}
.booking-form-box .wpcf7-spinner { margin: 0 auto; display: block; }
.booking-form-box .wpcf7-response-output {
    margin: 1rem 0 0;
    border-width: 1px;
    font-size: 0.9rem;
}
.booking-form-box .wpcf7-not-valid-tip { font-size: 0.78rem; }

/* --- Homepage brand video band --- */
.cinematic-video-block {
    width: 100%;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1e2b27;
}
.cinematic-video-block .cinematic-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.cinematic-video-block .cinematic-overlay { z-index: 1; }
.cinematic-video-block .cinematic-content { z-index: 2; }

/* --- Room card play button --- */
.room-video-btn {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(212, 192, 161, 0.7);
    background: rgba(42, 58, 53, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.room-video-btn:hover {
    background: var(--accent);
    transform: scale(1.08);
}
.room-video-tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 15px;
    border-color: transparent transparent transparent var(--accent);
    margin-left: 3px;
}
.room-video-btn:hover .room-video-tri {
    border-left-color: var(--primary-dark);
}

/* --- Video popup --- */
.video-modal .lightbox-content {
    width: min(960px, 92vw);
    max-height: 86vh;
}
.video-modal #luna-video-player {
    width: 100%;
    max-height: 86vh;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* --- Location map embed --- */
.luna-map-frame {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    box-shadow: var(--shadow-md);
}

/* --- Contact Form 7 inside the scroll popup --- */
.scroll-modal-content .wpcf7-form .form-row-2 { grid-template-columns: 1fr; }
.scroll-modal-content .wpcf7-form .form-field label { text-align: left; }
.scroll-modal-content .wpcf7-form input[type="text"],
.scroll-modal-content .wpcf7-form input[type="tel"],
.scroll-modal-content .wpcf7-form input[type="email"],
.scroll-modal-content .wpcf7-form input[type="date"],
.scroll-modal-content .wpcf7-form select,
.scroll-modal-content .wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    font-family: var(--font-body);
    margin-bottom: 1rem;
}
.scroll-modal-content .wpcf7-form .btn,
.scroll-modal-content .wpcf7-form input[type="submit"] {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
}
.scroll-modal-content .wpcf7-response-output { margin: 0.5rem 0 0; font-size: 0.85rem; }
