/* ============================================================
   FOREST MAZE — Shared Room Page Design System & Section Toolkit
   Used by: cave-house, independent-villa, jacuzzi-villa,
            tree-house, luxury-villa, bamboo-hut
   ============================================================ */

/* ---------- CSS Variables (White/Light Luxury Theme) ---------- */
:root {
    --gold-primary: #B8882A;
    --gold-light: #C8A96A;

    --bg-white: #FFFFFF;
    --bg-offwhite: #FBFBF9;
    --bg-light-gray: #F4F5F4;
    --bg-warm-light: #FDFCF8;

    --text-heading: #142016;
    --text-body: #4A544C;
    --text-light: #FFFFFF;

    --overlay-light: rgba(255, 255, 255, 0.85);
    --overlay-dark: rgba(20, 32, 22, 0.7);
}

/* ---------- Base Reset & Typography ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

body {
    background-color: var(--bg-white);
    color: var(--text-body);
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

@font-face {
    font-family: 'eaglehorizon';
    src: url(../fonts/EagleHorizonP.ttf);
}
@font-face {
    font-family: 'mileast';
    src: url(../fonts/Mileast.otf);
}

h1, h2, h3, .display-text {
    font-family: 'mileast';
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.1;
}

.heading-secondary {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.label-text {
    font-family: 'mileast';
    font-style: italic;
    letter-spacing: 0.25em;
    font-size: 12px;
    color: #a3a19d;
    font-weight: bold;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Custom Cursor & Fog ---------- */
#cursor-fog {
    position: fixed; top: 0; left: 0;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    filter: blur(25px);
    opacity: 0;
    transition: opacity 0.5s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    mix-blend-mode: screen;
}
body:hover #cursor-fog { opacity: 1; }

#custom-cursor {
    position: fixed; top: 0; left: 0;
    width: 8px; height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}
#custom-cursor.hover {
    width: 40px; height: 40px;
    background-color: rgba(184, 136, 42, 0.15);
    border: 1px solid var(--gold-primary);
}

/* ---------- Background / Reveal Animations ---------- */
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }
@keyframes subtleFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-40px) rotate(15deg); }
    100% { transform: translateY(20px) rotate(-10deg); }
}
@keyframes fog_effect {
    0% { opacity: 0; transform: scale(1); }
    50%, 75% { opacity: 0.5; }
    100% { transform: scale(3); opacity: 0; }
}

.reveal {
    opacity: 0; transform: translateY(50px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-img {
    opacity: 0; transform: scale(1.05);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-img.active { opacity: 1; transform: scale(1); }

.global-texture {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none; z-index: 9995;
    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.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05; mix-blend-mode: multiply;
}

.ornamental-divider { margin: 40px 0; width: 100px; height: 24px; position: relative; }
.ornamental-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; width: 100%; height: 1px;
    background: var(--gold-primary); transform: scaleX(0); transition: transform 1s ease 0.3s; transform-origin: left;
}
.ornamental-divider.active::before { transform: scaleX(1); }
.ornamental-divider::after {
    content: ''; position: absolute; top: 50%; left: 50px; width: 6px; height: 6px;
    background: var(--bg-white); border: 1px solid var(--gold-primary); transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: transform 0.5s ease 1s;
}
.ornamental-divider.active::after { transform: translate(-50%, -50%) rotate(45deg) scale(1); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 32px; border-radius: 50px;
    font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.15em;
    transition: color 0.4s ease, border-color 0.4s ease;
    position: relative; overflow: hidden; z-index: 1;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gold-primary); z-index: -1;
    transform: scaleX(0); transform-origin: right; transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-outline { border: 1px solid var(--gold-primary); color: var(--gold-primary); }
.btn-outline:hover { color: var(--bg-white); }

.btn-solid { background-color: var(--gold-primary); color: var(--bg-white); border: 1px solid var(--gold-primary); }
.btn-solid::before { background: var(--text-heading); }
.btn-solid:hover { color: var(--bg-white); border-color: var(--text-heading); }

.btn-view-more {
    background: transparent; border: none;
    font-family: 'Cinzel', serif; font-size: 14px; letter-spacing: 2px;
    color: var(--gold-primary); cursor: pointer; position: relative; padding: 5px 0;
    display: inline-flex; align-items: center; gap: 8px;
    text-transform: uppercase; transition: all 0.3s ease; margin-top: 10px;
}
.btn-view-more::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 1px;
    background-color: var(--gold-primary); transition: width 0.3s ease;
}
.btn-view-more:hover::after { width: 100%; }
.btn-view-more svg { transition: transform 0.3s ease; }
.btn-view-more.expanded svg { transform: rotate(180deg); }

/* ---------- Navigation ---------- */
nav {
    position: fixed; top: 0; width: 100%; padding: 24px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.nav-links a { font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.15em; transition: color 0.3s; color: var(--text-light); }

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 5%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
nav.scrolled .nav-links a { color: var(--text-heading); }
nav.scrolled .nav-links a:hover { color: var(--gold-primary); }
.nav-logo img { height: 48px; filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2)); transition: filter 0.3s; }
nav.scrolled .nav-logo img { filter: none; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none; position: absolute; background-color: var(--bg-white);
    min-width: 200px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1; top: 100%; left: 0; border-radius: 8px; padding: 10px 0;
    opacity: 0; transform: translateY(10px); transition: all 0.3s ease;
}
.dropdown:hover .dropdown-content { display: block; opacity: 1; transform: translateY(0); }
.dropdown-content a {
    color: var(--text-heading) !important; padding: 12px 20px; text-decoration: none; display: block;
    font-size: 11px; transition: all 0.3s;
}
.dropdown-content a:hover { background-color: var(--bg-offwhite); color: var(--gold-primary) !important; padding-left: 25px; }

/* ============================================================
   TOOLKIT 1 — ROOM HERO
   ============================================================ */
.hero {
    position: relative; height: 115vh; overflow: hidden;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.room-hero { height: 88vh; }
.hero-parallax-wrap {
    position: absolute; top: -10vh; left: 0; width: 100%; height: 120vh;
    will-change: transform;
}
.hero-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; will-change: transform;
    animation: kenBurns 25s alternate infinite ease-in-out;
}
.floating-particles { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 4; pointer-events: none; }
.particle {
    position: absolute; width: 24px; height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23C8A96A" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2L15 9L22 12L15 15L12 22L9 15L2 12L9 9L12 2Z"/></svg>');
    opacity: 0.6; animation: float 8s ease-in-out infinite alternate;
}

.hero-content { position: relative; z-index: 10; padding: 0 20px; }
.hero-title {
    font-size: 60px; font-style: italic; margin: 24px 0; color: var(--text-light);
    animation: fadeUp 1s ease 0.5s forwards; opacity: 0; transform: translateY(30px);
}
.room-hero .hero-title { font-size: 68px; }
.hero-title i { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-desc {
    font-size: 18px; max-width: 560px; margin: 0 auto 40px; color: var(--bg-offwhite);
    animation: fadeUp 1s ease 0.8s forwards; opacity: 0; transform: translateY(30px);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-buttons { display: flex; gap: 20px; justify-content: center; animation: fadeUp 1s ease 1.1s forwards; opacity: 0; transform: translateY(30px); }
.hero-buttons .btn-outline { color: var(--text-light); border-color: var(--text-light); }
.hero-buttons .btn-outline:hover { background: var(--text-light); color: var(--text-heading); }
.hero-label { animation: fadeUp 1s ease 0.2s forwards; opacity: 0; }

/* Room rate badge */
.room-rate-badge {
    display: inline-flex; align-items: baseline; gap: 8px; justify-content: center;
    margin: 0 0 28px; padding: 10px 26px; border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    animation: fadeUp 1s ease 0.95s forwards; opacity: 0; transform: translateY(30px);
}
.room-rate-badge .rate-amount { font-family: 'mileast'; font-size: 22px; color: var(--gold-light); line-height: 1; }
.room-rate-badge .rate-unit {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

/* Spec pills row */
.room-spec-pills {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-top: 36px; animation: fadeUp 1s ease 1.4s forwards; opacity: 0; transform: translateY(30px);
}
.spec-pill {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-light); border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 11px 24px; border-radius: 50px;
}

/* Fog at hero bottom */
.hero .fog {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; pointer-events: none;
    display: flex; align-items: flex-end; justify-content: center;
}
.hero .fog img {
    position: absolute; bottom: 0; max-width: 100%;
    animation: fog_effect calc(3s * var(--i)) ease-in infinite;
}

/* ============================================================
   TOOLKIT 2 — STORY SPLIT (image collage + text)
   ============================================================ */
.story-split { padding: 140px 5%; background-color: var(--bg-white); position: relative; overflow: hidden; }
.story-split-inner {
    display: flex; align-items: center; gap: 80px; max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
}
.story-split.--reverse .story-split-inner { flex-direction: row-reverse;
@media (max-width: 768px) { flex-direction: column; }
}

.story-collage {
    width: 50%; position: relative; display: flex; gap: 20px; align-items: flex-end;
}
.collage-a {
    position: relative; width: 55%; height: var(--collage-a-height, 80vh);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.collage-b { position: relative; width: 45%; height: var(--collage-b-height, 70vh); }
.collage-a img, .collage-b img { width: 100%; height: 100%; object-fit: cover; }
.collage-shadow {
    position: absolute; bottom: 0; left: 0; width: 100%;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(323deg) brightness(102%) contrast(101%);
    pointer-events: none;
}

.story-content { width: 50%; }
.story-title { font-family: 'mileast'; font-size: 46px; font-weight: 500; margin: 16px 0 32px; color: var(--text-heading); line-height: 1.15; }
.story-title i { font-style: italic; color: var(--gold-primary); font-weight: 400; }
.story-text { font-size: 17px; color: var(--text-body); line-height: 1.8; margin-bottom: 20px; font-weight: 500; }

/* ============================================================
   TOOLKIT 3 — SIGNATURE SHOWCASE (shaped image + overlay)
   ============================================================ */
.signature-showcase-section { padding: 100px 5%; position: relative; overflow: hidden; }
.showcase-header { max-width: 800px; margin: 0 auto 60px; text-align: center; position: relative; z-index: 2; }
.showcase-title { font-family: 'mileast'; font-size: 46px; margin: 16px 0 0; line-height: 1.2; color: var(--text-heading); }
.showcase-title i { font-style: italic; color: var(--gold-primary); }

.signature-showcase {
    position: relative; width: 100%; max-width: 480px; margin: 0 auto; height: 680px;
    border-radius: var(--showcase-radius, 400px);
    padding: 16px; border: 1px solid var(--gold-primary);
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    transition: transform 0.8s ease;
}
.signature-showcase::before {
    content: ''; position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 1px dashed var(--gold-primary); border-radius: var(--showcase-radius, 400px);
    pointer-events: none; opacity: 0.6; z-index: 1;
}
.signature-showcase:hover { transform: translateY(-10px); }
.signature-showcase img {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--showcase-radius-inner, 384px);
    filter: brightness(0.85); transition: filter 0.8s ease; position: relative; z-index: 0;
}
.signature-showcase:hover img { filter: brightness(0.95); }
.signature-showcase.--circle { aspect-ratio: 1 / 1; height: auto; max-width: 520px; }
.signature-showcase.--arch {
    --showcase-radius: 240px 240px 0 0;
    --showcase-radius-inner: 224px 224px 0 0;
}

.showcase-overlay {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    z-index: 10; pointer-events: none;
}
.overlay-script {
    font-family: 'Playfair Display', serif; font-style: italic; font-size: 36px;
    color: #fff; text-shadow: 0 4px 15px rgba(0,0,0,0.4); margin-bottom: -10px; z-index: 2;
}
.overlay-serif {
    font-family: 'Cinzel', serif; font-size: 56px; letter-spacing: 0.15em;
    color: var(--gold-primary); text-shadow: 0 4px 20px rgba(0,0,0,0.6); font-weight: 500;
}

/* ============================================================
   TOOLKIT 4 — AMENITIES (MANDATORY WHITE BACKGROUND)
   ============================================================ */
.amenities-white {
    padding: 120px 5%;
    background-color: var(--bg-white);
    position: relative; z-index: 2;
}
.amenities-header { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.amenities-title { font-family: 'mileast'; font-size: 48px; margin: 16px 0 24px; line-height: 1.2; color: var(--text-heading); }
.amenities-title i { font-style: italic; color: var(--gold-primary); }
.amenities-intro { font-family: 'Jost', sans-serif; font-size: 17px; color: var(--text-body); line-height: 1.8; font-weight: 500; }

/* --icon-grid variant (reuses .comforts-grid / .comfort-item) */
.comforts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 25px; }
.amenities-grid { max-width: 1300px; margin: 0 auto; }
.comfort-item {
    display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px;
    padding: 24px 16px; background: rgba(184,136,42,0.05); border-radius: 20px;
    border: 1px solid rgba(184,136,42,0.12); transition: all 0.4s ease;
}
.comfort-item:hover { transform: translateY(-10px); background: rgba(184,136,42,0.1); box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.comfort-img-wrap {
    width: 80px; height: 80px; border-radius: 50%; padding: 4px; border: 1px dashed var(--gold-primary);
    position: relative; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.comfort-img-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.comfort-img-wrap svg { width: 32px; height: 32px; stroke: var(--gold-primary); fill: none; stroke-width: 1.5; }
.comfort-item span { font-family: 'Jost', sans-serif; font-size: 15px; color: var(--text-heading); line-height: 1.5; font-weight: 500; }

/* --checklist variant (reuses .fac-* luxury collage + checklist) */
.fac-content-split { display: flex; gap: 80px; align-items: center; max-width: 1400px; margin: 0 auto; }
.fac-left { width: 45%; position: relative; }
.fac-right { width: 55%; }

.fac-images-luxury { position: relative; height: 750px; width: 100%; }
.fac-lux-1 {
    position: absolute; top: 50px; left: 5%; width: 65%; height: 550px;
    border-radius: 300px 300px 0 0; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); z-index: 2;
}
.fac-lux-1::before {
    content: ''; position: absolute; top: 15px; left: 15px; right: 15px; bottom: 15px;
    border: 1px solid rgba(255,255,255,0.8); border-radius: 285px 285px 0 0; z-index: 3; pointer-events: none;
}
.fac-lux-2 {
    position: absolute; bottom: 20px; right: 0; width: 65%; height: 285px;
    border-radius: 0 200px 200px 0; overflow: hidden; box-shadow: -15px 20px 50px rgba(0,0,0,0.15);
    border: 12px solid var(--bg-white); z-index: 3;
}
.fac-lux-3 {
    position: absolute; top: 0; right: 10%; width: 35%; height: 220px;
    border-radius: 150px; overflow: hidden; box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 8px solid var(--bg-white); z-index: 4;
}
.fac-images-luxury img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s ease; }
.fac-images-luxury div:hover > img { transform: scale(1.08); }

.fac-badge {
    position: absolute; bottom: 150px; left: -20px; width: 140px; height: 140px;
    background: var(--gold-primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; text-align: center;
    color: var(--bg-white); font-family: 'Cinzel', serif; font-size: 13px; letter-spacing: 2px;
    z-index: 5; box-shadow: 0 10px 30px rgba(184,136,42,0.4); animation: rotateBadge 20s linear infinite;
}
.fac-badge-inner { position: absolute; width: 124px; height: 124px; border: 1px dashed rgba(255,255,255,0.6); border-radius: 50%; top: 8px; left: 8px; }
@keyframes rotateBadge { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.fac-outline {
    position: absolute; top: 20px; left: 0; width: 65%; height: 550px;
    border: 1px solid var(--gold-primary); border-radius: 300px 300px 0 0; z-index: 1;
}

.fac-list { list-style: none; padding: 0; margin: 0; column-count: 2; column-gap: 40px; }
.fac-list li {
    font-family: 'Jost', sans-serif; font-size: 16px; color: var(--text-heading); line-height: 1.5;
    margin-bottom: 25px; display: flex; align-items: flex-start; gap: 12px;
    break-inside: avoid; font-weight: 400; transition: transform 0.3s ease;
}
.fac-list li:hover { transform: translateX(5px); color: var(--gold-primary); }
.fac-check { color: var(--gold-primary); font-size: 16px; margin-top: 2px; }

/* --grouped variant (categorised amenity cards) */
.amenities-groups { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.amenity-group {
    background: var(--bg-offwhite); border: 1px solid rgba(184,136,42,0.15); border-radius: 20px;
    padding: 36px 28px; transition: all 0.4s ease;
}
.amenity-group:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); border-color: var(--gold-primary); }
.amenity-group-title {
    font-family: 'mileast'; font-size: 21px; color: var(--text-heading); margin-bottom: 20px;
    padding-bottom: 16px; border-bottom: 1px solid rgba(184,136,42,0.2);
}
.amenity-group-list li {
    font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-body); line-height: 1.6;
    margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px;
}

/* ============================================================
   TOOLKIT 5 — GALLERY MOSAIC
   ============================================================ */
.gallery-mosaic-section { padding: 120px 5%; background-color: var(--bg-light-gray); position: relative; overflow: hidden; }
.gallery-mosaic-section.--bg { background-size: cover; background-position: center; }
.gallery-mosaic-section.--bg .gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.85); z-index: 0;
}
.gallery-header { max-width: 800px; margin: 0 auto 60px; text-align: center; position: relative; z-index: 1; }
.gallery-title { font-family: 'mileast'; font-size: 48px; margin: 16px 0 0; line-height: 1.2; color: var(--text-heading); }
.gallery-title i { font-style: italic; color: var(--gold-primary); }

.gallery-mosaic {
    max-width: 1400px; margin: 0 auto; display: grid;
    grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 16px;
    position: relative; z-index: 1;
}
.gallery-mosaic.--compact { grid-template-columns: repeat(3, 1fr); }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; }
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1); }
.gallery-item::before {
    content: ''; position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    border: 1px solid var(--gold-primary); opacity: 0; transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); z-index: 2; pointer-events: none;
}
.gallery-item:hover::before { opacity: 1; transform: scale(1); }
.gallery-caption {
    position: absolute; bottom: 0; left: 0; width: 100%; padding: 16px 20px;
    background: linear-gradient(to top, rgba(20,32,22,0.8), transparent);
    color: #fff; font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0; transform: translateY(10px); transition: all 0.4s ease; z-index: 3;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

.gallery-mosaic .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-mosaic .gallery-item:nth-child(6) { grid-column: span 2; }
.gallery-mosaic.--compact .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ============================================================
   TOOLKIT 6 — POLICIES & INFO
   ============================================================ */
.policies-info { padding: 100px 5%; background-color: var(--bg-offwhite); position: relative; overflow: hidden; }
.policies-container { max-width: 1000px; margin: 0 auto; position: relative; z-index: 1; }
.policies-header { text-align: center; margin-bottom: 50px; }
.policies-title { font-family: 'mileast'; font-size: 44px; margin: 16px 0 0; line-height: 1.2; color: var(--text-heading); }
.policies-title i { font-style: italic; color: var(--gold-primary); }

.policy-card {
    background: var(--bg-white); border-radius: 24px; padding: 50px;
    border: 1px solid rgba(184,136,42,0.12); box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}
.policy-list li {
    font-family: 'Jost', sans-serif; font-size: 16px; color: var(--text-body); line-height: 1.7;
    margin-bottom: 18px; padding-left: 28px; position: relative;
}
.policy-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-primary); }
.policy-list li:last-child { margin-bottom: 0; }
.policy-list strong { color: var(--text-heading); font-weight: 500; }

/* --accordion variant (reuses faq classes, with bg image) */
.policies-info.--accordion { padding: 120px 5%; background-size: cover; background-position: center; }
.policies-info.--accordion .accordion-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.9); z-index: 0; }
.faq-container { max-width: 1400px; margin: 0 auto; display: flex; gap: 80px; align-items: flex-start; position: relative; z-index: 1; }
.faq-left { width: 35%; position: sticky; top: 140px; }
.faq-right { width: 65%; }
.faq-title { font-family: 'mileast'; font-size: 44px; color: var(--text-heading); margin-bottom: 24px; line-height: 1.2; }
.faq-title i { color: var(--gold-primary); font-style: italic; }
.faq-intro { font-family: 'Jost', sans-serif; font-size: 16px; color: var(--text-body); line-height: 1.8; font-weight: 500; }
.faq-accent-line { width: 60px; height: 1px; background-color: var(--gold-primary); margin-bottom: 30px; }

.faq-item { padding: 30px 0; border-bottom: 1px solid rgba(184,136,42,0.2); cursor: pointer; transition: all 0.4s ease; }
.faq-item:first-child { border-top: 1px solid rgba(184,136,42,0.2); }
.faq-question {
    font-family: 'Cinzel', serif; font-size: 18px; color: var(--text-heading);
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    font-weight: 500; line-height: 1.4; transition: color 0.3s ease;
}
.faq-item:hover .faq-question, .faq-item.active .faq-question { color: var(--gold-primary); }
.faq-icon {
    position: relative; width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
    border: 1px solid rgba(184,136,42,0.3); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.faq-icon::before, .faq-icon::after {
    content: ''; position: absolute; background-color: var(--gold-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; }
.faq-item:hover .faq-icon { background-color: rgba(184,136,42,0.05); border-color: var(--gold-primary); }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-item.active .faq-icon { background-color: var(--gold-primary); border-color: var(--gold-primary); }
.faq-item.active .faq-icon::before { background-color: var(--bg-white); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer-inner {
    margin-top: 20px; padding-left: 20px; border-left: 2px solid var(--gold-primary);
    font-family: 'Jost', sans-serif; font-size: 16px; color: var(--text-body); line-height: 1.8;
    font-weight: 500; padding-bottom: 10px;
}

/* ============================================================
   TOOLKIT 7 — EXPERIENCES / ACTIVITIES / REVIEWS
   ============================================================ */
.experiences-reviews { padding: 120px 5%; background-color: var(--bg-white); position: relative; overflow: hidden; }
.exp-rev-header { max-width: 800px; margin: 0 auto 60px; text-align: center; position: relative; z-index: 1; }
.exp-rev-title { font-family: 'mileast'; font-size: 48px; margin: 16px 0 0; line-height: 1.2; color: var(--text-heading); }
.exp-rev-title i { font-style: italic; color: var(--gold-primary); }

/* --activities variant */
.experiences-reviews.--activities { background-size: cover; background-position: center; }
.experiences-reviews.--activities .exp-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255,255,255,0.55); z-index: 0;
}
.activities-grid {
    max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    position: relative; z-index: 1;
}
.activity-card {
    background: rgba(255,255,255,0.7); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.7); border-radius: 24px; padding: 40px 30px; text-align: center;
    transition: all 0.4s ease;
}
.activity-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.95); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.activity-icon { font-size: 42px; margin-bottom: 20px; }
.activity-card h3 { font-family: 'mileast'; font-size: 24px; color: var(--text-heading); margin-bottom: 12px; }
.activity-card p { font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-body); line-height: 1.6; font-weight: 500; }

/* --reviews variant */
.reviews-grid {
    max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    position: relative; z-index: 1;
}
.experiences-reviews.--single .reviews-grid { grid-template-columns: 1fr; max-width: 700px; }
.review-card {
    background: var(--bg-offwhite); border: 1px solid rgba(184,136,42,0.12); border-radius: 24px;
    padding: 40px; position: relative; transition: all 0.4s ease;
}
.review-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.review-quote { font-family: 'Playfair Display', serif; font-size: 60px; color: var(--gold-light); line-height: 1; margin-bottom: 10px; }
.review-text { font-family: 'Jost', sans-serif; font-style: italic; font-size: 15px; color: var(--text-body); line-height: 1.8; margin-bottom: 24px; font-weight: 500; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 48px; height: 48px; border-radius: 50%; background: var(--gold-primary); color: #fff;
    display: flex; align-items: center; justify-content: center; font-family: 'Cinzel', serif; font-size: 14px;
    flex-shrink: 0;
}
.review-name { font-family: 'Cinzel', serif; font-size: 13px; color: var(--text-heading); letter-spacing: 0.05em; margin-bottom: 4px; }
.review-stars { color: var(--gold-primary); font-size: 13px; }

/* ============================================================
   TOOLKIT 8 — IMMERSIVE CTA
   ============================================================ */
.section-cta {
    padding: 150px 5%; position: relative;
    background: url('../img/bg/wayanad.jpg') no-repeat center center;
    background-size: cover; background-attachment: fixed;
    text-align: center; display: flex; align-items: center; justify-content: center;
}
.section-cta::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(20,32,22,0.85) 0%, rgba(20,32,22,0.95) 100%); z-index: 1;
}
.cta-container { position: relative; z-index: 2; max-width: 900px; }
.cta-title { font-family: 'mileast'; font-size: 56px; color: var(--gold-primary); margin-bottom: 30px; line-height: 1.2; }
.cta-title i { font-style: italic; }
.cta-desc { font-family: 'Jost', sans-serif; font-size: 20px; color: var(--bg-white); line-height: 1.8; font-weight: 500; margin-bottom: 50px; opacity: 0.9; }
.btn-cta {
    display: inline-flex; align-items: center; justify-content: center; padding: 16px 40px;
    background-color: var(--gold-primary); color: #fff; font-family: 'Jost', sans-serif; font-size: 15px;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none; border-radius: 4px; transition: all 0.3s ease;
}
.btn-cta:hover { background-color: #fff; color: var(--text-heading); transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.3); }

/* ---------- Footer ---------- */
footer { background-color: var(--text-heading); color: var(--bg-light-gray); border-top: 1px solid var(--gold-primary); padding: 80px 5% 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { height: 56px; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-heading { font-family: 'Cinzel', serif; color: var(--gold-light); margin-bottom: 24px; font-size: 14px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--bg-light-gray); opacity: 0.8; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255, 0.1); font-size: 14px; opacity: 0.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .room-hero .hero-title { font-size: 52px; }
    .hero-desc { font-size: 16px; padding: 0 10px; }

    .story-split-inner { flex-direction: column; gap: 50px; }
    .story-collage, .story-content { width: 100%; }
    .collage-a, .collage-b { height: 50vh; }

    .signature-showcase { max-width: 420px; height: 560px; }

    .comforts-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .amenities-groups { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .fac-content-split { flex-direction: column; gap: 40px; }
    .fac-left, .fac-right { width: 100%; }
    .fac-images-luxury { height: 600px; margin-bottom: 20px; }
    .fac-lux-1 { width: 70%; height: 450px; left: 10%; }
    .fac-lux-2 { width: 55%; height: 300px; bottom: 50px; }
    .fac-lux-3 { width: 40%; height: 180px; top: 20px; }
    .fac-outline { left: 5%; width: 70%; height: 450px; }
    .fac-badge { bottom: 100px; left: 0; width: 110px; height: 110px; font-size: 11px; }
    .fac-badge-inner { width: 96px; height: 96px; top: 7px; left: 7px; }

    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
    .gallery-mosaic .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-mosaic .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

    .faq-container { flex-direction: column; gap: 40px; }
    .faq-left, .faq-right { width: 100%; position: relative; top: 0; }
    .faq-title { font-size: 38px; }

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

    .cta-title { font-size: 46px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn { display: none; }

    .room-hero .hero-title { font-size: 38px; }
    .hero-buttons { flex-wrap: wrap; gap: 12px; }
    .room-spec-pills { gap: 10px; }
    .spec-pill { font-size: 10px; padding: 9px 18px; }

    .story-split, .signature-showcase-section, .amenities-white,
    .gallery-mosaic-section, .policies-info, .experiences-reviews { padding: 70px 5%; }

    .collage-a, .collage-b { height: 38vh; }
    .story-title, .amenities-title, .gallery-title, .policies-title, .exp-rev-title, .showcase-title { font-size: 34px; }

    .signature-showcase { max-width: 300px; height: 420px; }

    .comforts-grid { grid-template-columns: 1fr; }
    .comfort-item { flex-direction: row; text-align: left; align-items: center; padding: 16px 20px; }
    .comfort-img-wrap { width: 56px; height: 56px; flex-shrink: 0; }

    .amenities-groups { grid-template-columns: 1fr; }

    .fac-list { column-count: 1; }
    .fac-images-luxury { height: 420px; }
    .fac-lux-1 { height: 320px; }
    .fac-lux-2 { height: 200px; }
    .fac-lux-3 { height: 130px; }
    .fac-outline { height: 320px; }

    .gallery-mosaic, .gallery-mosaic.--compact { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .gallery-mosaic .gallery-item:nth-child(n) { grid-column: span 1 !important; grid-row: span 1 !important; }

    .policy-card { padding: 30px; }
    .faq-question { font-size: 15px; }

    .activities-grid, .reviews-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 36px; }
    .cta-desc { font-size: 16px; }
}

@media (max-width: 1024px) {
    .section-cta { background-attachment: scroll; }
}

/* ============================================================
   FLOATING CALL & WHATSAPP BUTTONS
   ============================================================ */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.floating-btn {
    position: relative;
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation: floatInUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.6s backwards;
}
.floating-btn svg { width: 26px; height: 26px; position: relative; z-index: 2; }
.floating-btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 16px 36px rgba(0,0,0,0.32); }

.floating-btn::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%; background: inherit; opacity: 0.55; z-index: 1;
}
.floating-btn:hover::before{
    animation: floatingPulse 1.5s ease-out infinite;
}
 

@keyframes floatingPulse {
    0% { transform: scale(1); opacity: 0.55; }
    100% { transform: scale(1.9); opacity: 0; }
}
@keyframes floatInUp {
    from { opacity: 0; transform: translateY(40px) scale(0.7); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.floating-btn.--whatsapp { background: linear-gradient(135deg, #2fe072, #1ebe5d); }
.floating-btn.--call { background: linear-gradient(135deg, var(--gold-light), var(--gold-primary)); }

.floating-tooltip {
    position: absolute; right: calc(100% + 16px); top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--text-heading); color: #fff;
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.12em;
    padding: 9px 18px; border-radius: 50px; white-space: nowrap;
    opacity: 0; pointer-events: none; z-index: 3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-tooltip::after {
    content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
    border: 6px solid transparent; border-left-color: var(--text-heading);
}
.floating-btn:hover .floating-tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

@media (max-width: 768px) {
    .floating-actions { bottom: 18px; right: 16px; gap: 14px; }
    .floating-btn { width: 50px; height: 50px; }
    .floating-btn svg { width: 22px; height: 22px; }
    .floating-tooltip { display: none; }
}

/* Creative Route SVG */
.creative-route-svg {
    position: absolute; top: -50px; left: 0; width: 100%; height: calc(100% + 100px);
    pointer-events: none; z-index: 0;
}
.route-path {
    stroke-dasharray: 12, 18; stroke-dashoffset: 1000;
    animation: drawRoute 30s linear infinite; opacity: 0.3;
}
@keyframes drawRoute { to { stroke-dashoffset: 0; } }

/* Mobile Navigation Sliding CSS */
.menu-toggle { display: none; flex-direction: column; cursor: pointer; gap: 5px; z-index: 1001; }
.menu-toggle span { width: 25px; height: 2px; background: var(--text-light); transition: all 0.3s; }
nav.scrolled .menu-toggle span { background: var(--text-heading); }
.mobile-menu-close { display: none; position: absolute; top: 20px; right: 20px; font-size: 30px; color: var(--text-heading); cursor: pointer; z-index: 1002; }
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    /* Close button */
    .mobile-menu-close {
        display: flex !important; align-items: center; justify-content: center;
        position: absolute; top: 16px; right: 16px;
        width: 34px; height: 34px; border-radius: 50%;
        background: var(--bg-light-gray); font-size: 20px;
        color: var(--text-heading); z-index: 1002; border: none; line-height: 1;
    }

    /* Slide-in panel */
    .nav-links {
        position: fixed; top: 0; right: -110%; width: 280px; height: 100vh;
        background: var(--bg-white); flex-direction: column; align-items: stretch;
        padding: 68px 0 40px; box-shadow: -4px 0 28px rgba(20,32,22,0.2);
        transition: right 0.38s cubic-bezier(0.16,1,0.3,1);
        gap: 0; display: flex !important; z-index: 1000; overflow-y: auto;
    }
    .nav-links.active { right: 0; }

    /* Top-level links */
    .nav-links > a {
        color: var(--text-heading) !important;
        font-size: 14px; letter-spacing: 0.14em;
        padding: 16px 28px; display: block; width: 100%;
        border-bottom: 1px solid rgba(184,136,42,0.1);
    }

    /* Dropdown wrapper – block + full width so it sits in column flow */
    .nav-links .dropdown {
        display: block !important; width: 100%;
        border-bottom: 1px solid rgba(184,136,42,0.1);
    }
    .nav-links .dropdown > a {
        color: var(--text-heading) !important;
        font-size: 14px; letter-spacing: 0.14em;
        padding: 16px 28px; display: block; width: 100%;
    }

    /* Dropdown panel – position:static so "top:100%;left:0" from base has zero effect */
    .dropdown-content {
        position: static !important;
        top: auto !important; left: auto !important;
        transform: none !important; transition: none !important;
        box-shadow: none !important; border-radius: 0 !important;
        min-width: auto !important; z-index: auto !important;
        background: var(--bg-offwhite) !important;
        padding: 4px 0 10px 24px !important;
        border-left: 3px solid rgba(184,136,42,0.28);
        margin: 0 0 0 28px;
        display: none !important; opacity: 1 !important;
    }
    .dropdown-content.mobile-open { display: block !important; }
    .dropdown-content a {
        color: var(--text-body) !important;
        font-size: 13px !important; letter-spacing: 0.1em !important;
        padding: 10px 14px !important; display: block;
    }

    .nav-btn.desktop-only-btn { display: none; }

    /* Hide desktop cursor elements on touch devices */
    #custom-cursor, #cursor-fog { display: none !important; }

    /* Hamburger → X animation */
    .menu-toggle span { transition: transform 0.3s ease, opacity 0.3s ease; }
    .menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
}

/* ============================================================
   HERO SCROLL INDICATOR
   ============================================================ */
.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    z-index: 12; text-decoration: none;
}
.hero-scroll-label {
    font-family: 'Cinzel', serif; font-size: 9px; letter-spacing: 0.22em;
    color: rgba(255,255,255,0.55); text-transform: uppercase;
}
.hero-scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(200,169,106,0.9), transparent);
    animation: scrollLinePulse 2.4s ease-in-out infinite;
}
@keyframes scrollLinePulse {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.45); opacity: 0.35; }
}
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* ============================================================
   DECORATIVE CORNER TEXTURE (placed inside white-bg sections,
   image tag positioned absolute — same pattern as homepage)
   ============================================================ */
.corner-deco {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
    width: 26%;
}
.corner-deco.--br { right: -2%; bottom: -2%; }
.corner-deco.--bl { left: -2%; bottom: -2%; transform: scaleX(-1); }
.corner-deco.--tr { right: -2%; top: -2%; opacity: 0.2; width: 18%; }
.corner-deco.--tl { left: -2%; top: -2%; opacity: 0.2; width: 18%; transform: scaleX(-1); }
@media (max-width: 768px) {
    .corner-deco { width: 44%; opacity: 0.18; }
    .corner-deco.--tr, .corner-deco.--tl { width: 30%; }
}

/* ============================================================
   SHARED ENQUIRY / CONTACT FORM
   ============================================================ */
.contact-form { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; position: relative; z-index: 2; }
.form-row { display: flex; gap: 20px; }
.form-group { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.12em;
    color: var(--text-heading); text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%; box-sizing: border-box; padding: 16px 20px; border-radius: 12px;
    border: 1px solid rgba(184,136,42,0.25); background: var(--bg-offwhite);
    font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-heading);
    outline: none; transition: border-color 0.3s ease; appearance: none;
}
.form-group select { cursor: pointer; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold-primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
@media (max-width: 768px) { .form-row { flex-direction: column; } }

/* ============================================================
   BOOKING BAR (placed right after the hero on every page)
   ============================================================ */
.booking-bar-section {
    position: relative;
    z-index: 50;
    display: flex;
    justify-content: center;
    margin-top: -45px;
    padding: 0 5%;
}
.booking-bar {
    background: var(--bg-white);
    border: 1px solid rgba(184,136,42,0.18);
    border-radius: 16px;
    box-shadow: 0 30px 70px rgba(20,32,22,0.18);
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 1100px;
    width: 100%;
    flex-wrap: wrap;
}
.bb-field {
    flex: 1;
    min-width: 140px;
    position: relative;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--bg-offwhite);
    border: 1px solid rgba(184,136,42,0.15);
}
.bb-field label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 4px;
}
.bb-field input[type="date"] {
    width: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
    cursor: pointer;
}
.bb-field.bb-trigger { cursor: pointer; }
.bb-value {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-heading);
    user-select: none;
    white-space: nowrap;
}
.bb-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: var(--bg-white);
    border-radius: 14px;
    border: 1px solid rgba(184,136,42,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    padding: 18px 20px;
    z-index: 60;
}
.bb-dropdown.show { display: block; }
.bb-counter-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 0; border-bottom: 1px solid var(--bg-light-gray);
}
.bb-counter-row:last-of-type { border-bottom: none; }
.bb-counter-name { font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text-heading); font-weight: 500; }
.bb-counter-sub { font-family: 'Jost', sans-serif; font-size: 11px; color: var(--text-body); margin-top: 1px; }
.bb-counter-btns { display: flex; align-items: center; gap: 10px; }
.bb-counter-btn {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid var(--gold-primary); background: transparent; color: var(--gold-primary);
    font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center;
    line-height: 1; transition: all 0.2s ease;
}
.bb-counter-btn:hover { background: var(--gold-primary); color: #fff; }
.bb-counter-value { font-family: 'Cinzel', serif; font-size: 14px; min-width: 20px; text-align: center; color: var(--text-heading); }
.bb-done {
    width: 100%; margin-top: 12px; padding: 11px;
    background: var(--gold-primary); color: #fff; border: none; border-radius: 8px;
    font-family: 'Cinzel', serif; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.3s ease;
}
.bb-done:hover { background: var(--text-heading); }
.bb-submit {
    flex-shrink: 0;
    padding: 16px 36px;
    background: var(--gold-primary); color: #fff; border: none; border-radius: 10px;
    font-family: 'Cinzel', serif; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease;
    white-space: nowrap;
}
.bb-submit:hover { background: var(--text-heading); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

@media (max-width: 900px) {
    .booking-bar-section { margin-top: -32px; }
    .booking-bar { padding: 18px 20px; gap: 12px; }
    .bb-field { min-width: 110px; }
}
@media (max-width: 640px) {
    .booking-bar-section { margin-top: -28px; padding: 0 4%; }
    .booking-bar { flex-direction: column; align-items: stretch; border-radius: 18px; }
    .bb-field { width: 100%; }
    .bb-dropdown { left: 0; right: 0; min-width: auto; }
    .bb-submit { width: 100%; padding: 15px; }
}

/* ============================================================
   EXTRA-SMALL SCREEN REFINEMENTS
   ============================================================ */
@media (max-width: 380px) {
    .room-hero .hero-title { font-size: 32px; }
    .hero-desc { font-size: 14px; }
    .spec-pill { font-size: 9px; padding: 8px 14px; }
    .story-title, .amenities-title, .gallery-title, .policies-title, .exp-rev-title, .showcase-title { font-size: 28px; }
    .btn { padding: 12px 24px; font-size: 11px; }
}
