/* K1959 Studio Suites Style Sheet */

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Color Palette */
    --bg-dark: #0a0a0b;
    --bg-card: rgba(18, 18, 20, 0.75);
    --bg-glass: rgba(15, 15, 17, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-light: rgba(255, 255, 255, 0.15);
    
    /* Suite Accents */
    --accent-suite-1: #dfba6b; /* Warm Oak & Amber Glow (Warm Gold) */
    --accent-suite-1-rgb: 223, 186, 107;
    --accent-suite-2: #8da4b4; /* Moody Slate & Globe Orbs (Cool Slate Blue) */
    --accent-suite-2-rgb: 141, 164, 180;
    
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-dark: #121212;
    
    /* Typography */
    --font-header: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

/* --- Layout Container --- */
.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
    scroll-behavior: smooth;
}

/* --- Hero Section (100vh split landing) --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

/* Subtle dark vignette overlay over the hero split image panels for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 6, 8, 0.15) 0%, rgba(6, 6, 8, 0.55) 100%);
    z-index: 5; /* Pinned above photos (z-index 1) and below main-header/booking widget (z-index 900) */
    pointer-events: none;
}

/* --- Central Branding & Booking Widget Wrapper --- */
.center-content-wrapper {
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 48px);
    max-width: 380px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: auto; /* changed from none to auto to make all children clickable */
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

@media (min-width: 768px) {
    .center-content-wrapper {
        max-width: 650px; /* wider on desktop so buttons are not squashed */
    }
}

.hero-section.has-expanded-panel .center-content-wrapper {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-section.has-expanded-panel .booking-platforms-container {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-section.has-expanded-panel .scroll-indicator {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.main-header, .booking-widget-container {
    pointer-events: auto;
    width: 100%;
}

.main-header {
    margin-bottom: 24px;
    text-align: center;
}

.logo-container {
    display: inline-block;
    padding: 0;
    background: none;
}

.logo-title {
    font-family: var(--font-header);
    font-size: 5.2rem; /* Scaled up ~20% larger */
    font-weight: 500; /* refined luxury serif weight */
    letter-spacing: 0.5rem; /* unified spacing */
    margin-right: -0.5rem;
    color: var(--text-primary);
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.logo-subtitle {
    display: block;
    font-size: 1.7rem; /* 50% larger */
    letter-spacing: 0.75rem;
    margin-right: -0.75rem;
    margin-top: 2px; /* closer to main header */
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
}

/* --- Suites Wrapper (Mobile First) --- */
.suites-wrapper {
    display: flex;
    flex-direction: row; /* Left & Right columns to suit portrait photos */
    width: 100%;
    height: 100%;
    overflow: hidden; /* Disable scrolling, fit exactly to screen split */
}

.suite-panel {
    position: relative;
    flex: 1; /* 50% width each */
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), padding 0.6s ease;
    will-change: flex;
}

.suite-panel.suite-one {
    background: linear-gradient(135deg, #161009 0%, #080503 100%);
}

.suite-panel.suite-two {
    background: linear-gradient(135deg, #0f1319 0%, #06080a 100%);
}

.suite-panel:first-child, .suite-panel:last-child {
    justify-content: flex-end; /* Push content to bottom */
    align-items: center; /* Center horizontally inside narrow column on mobile */
    padding: 32px 12px 160px 12px; /* Bottom padding pushes text above photo watermarks */
    transition: opacity 0.4s ease, visibility 0.4s ease, padding 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expanded / Collapsed mobile styles */
.suite-panel.expanded {
    flex: 12; /* expands to cover page */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.suite-panel.expanded .panel-background {
    position: fixed;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    top: 0;
    left: 0;
}

.suite-panel.collapsed {
    flex: 0; /* shrinks to hide */
    padding: 0;
    pointer-events: none;
}

.suite-panel.collapsed .panel-content,
.suite-panel.collapsed .panel-arrow-btn,
.suite-panel.collapsed .panel-footer-brand {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Tap to return pill indicator removed - replaced by floating close-full-view-btn */
.suite-panel::before {
    display: none !important;
}

.panel-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1), background-image 1.5s ease-in-out, opacity 1.2s ease-in-out;
    opacity: 0; /* Hidden initially, faded in by JS */
}

.panel-background.loaded {
    opacity: 1;
}

/* Overall dark overlay with bottom transition gradient to fit rooms section background */
.panel-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.35) 0%, 
        rgba(6, 6, 8, 0.35) 60%, 
        rgba(6, 6, 8, 0.85) 85%, 
        #060608 100%
    );
    z-index: 2;
    transition: background-color 0.5s ease;
}

.panel-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    text-align: center; /* Center text on mobile */
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items on mobile */
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.suite-title {
    font-family: var(--font-header);
    font-size: 0.95rem; /* neat, compact size when closed (50/50 split) */
    font-weight: 500;
    letter-spacing: 0.08rem;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.5s ease;
}

.suite-tagline {
    font-size: 0.5rem; /* compact tagline size when closed */
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0px; /* no bottom margin needed since button is removed */
    transition: font-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Expanded mobile text adjustments */
.suite-panel.expanded .suite-title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
}

.suite-panel.expanded .suite-tagline {
    font-size: 0.8rem;
}

.suite-one .suite-title {
    color: var(--accent-suite-1);
}

.suite-two .suite-title {
    color: var(--accent-suite-2);
}

.panel-footer-brand {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.55rem;
    letter-spacing: 0.3rem;
    color: rgba(255, 255, 255, 0.2);
    z-index: 2;
    display: block;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator span {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-indicator:hover span {
    color: var(--text-primary);
}

.scroll-indicator-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
    transition: var(--transition-fast);
}

.scroll-indicator-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

.scroll-indicator:hover .scroll-indicator-mouse {
    border-color: var(--text-primary);
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        top: 4px;
        height: 2px;
    }
    30% {
        opacity: 1;
        height: 6px;
    }
    100% {
        opacity: 0;
        top: 20px;
        height: 2px;
    }
}

/* --- Panel Background Navigation Arrows --- */
.panel-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 10, 11, 0.3);
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(8px);
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.panel-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.panel-arrow-btn.prev {
    left: 12px;
}

.panel-arrow-btn.next {
    right: 12px;
}

/* --- Buttons --- */
.btn {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    background: rgba(10, 10, 11, 0.4);
    border: 1px solid var(--border-glass-light);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--text-primary);
    color: var(--text-dark);
    border-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.suite-one .btn-outline:hover {
    background: var(--accent-suite-1);
    border-color: var(--accent-suite-1);
    color: var(--text-dark);
    box-shadow: 0 8px 20px rgba(var(--accent-suite-1-rgb), 0.2);
}

.suite-two .btn-outline:hover {
    background: var(--accent-suite-2);
    border-color: var(--accent-suite-2);
    color: var(--text-dark);
    box-shadow: 0 8px 20px rgba(var(--accent-suite-2-rgb), 0.2);
}

.btn-primary {
    background: var(--text-primary);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.btn-search {
    background: var(--text-primary);
    color: var(--text-dark);
    border-radius: 50px;
    padding: 12px 24px;
    width: 100%;
}

.btn-search:hover {
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.btn-search .arrow-icon {
    margin-left: 10px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-search:hover .arrow-icon {
    transform: translateX(4px);
}

/* --- Floating Booking Widget (Mobile First) --- */
.booking-widget-container {
    position: relative;
    width: 100%;
    z-index: 1;
    transition: var(--transition-smooth);
}

.booking-widget-glass {
    background: rgba(10, 10, 11, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 14px 20px;
    backdrop-filter: blur(30px) saturate(1.25);
    -webkit-backdrop-filter: blur(30px) saturate(1.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transition: var(--transition-smooth);
}

.booking-widget-glass:hover {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.input-group label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    color: var(--text-secondary);
}

.date-input-wrapper {
    position: relative;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
}

.date-display-val {
    display: block;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 550;
    color: var(--text-primary);
    pointer-events: none; /* click pass-through */
    transition: var(--transition-fast);
}

.date-input-wrapper input[type="date"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

/* Overlay custom icon representation but native date input handles the picker */
.calendar-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    opacity: 0.5;
    pointer-events: none;
}

/* Hide native date icon to keep it clean */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.booking-form .divider {
    display: none; /* Mobile stacks, no vertical line needed */
}


/* --- Detail Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px 10px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0f0f12;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    position: relative;
    margin: auto;
    overflow: hidden;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 100;
}

.modal-close:hover {
    background: var(--text-primary);
    color: var(--text-dark);
}

.modal-body {
    display: flex;
    flex-direction: column-reverse; /* Put photos on top on mobile, info below */
}

.modal-info {
    padding: 32px 24px;
}

.modal-title {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.2rem;
    margin-bottom: 4px;
}

#modal-suite-1 .modal-title { color: var(--accent-suite-1); }
#modal-suite-2 .modal-title { color: var(--accent-suite-2); }

.modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.modal-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border-glass-light) 0%, rgba(255,255,255,0) 100%);
    margin-bottom: 20px;
}

.modal-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.section-title {
    font-family: var(--font-header);
    font-size: 1rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.amenities-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.amenity-icon {
    font-size: 1rem;
}

.book-suite-btn {
    width: 100%;
}

#modal-suite-1 .book-suite-btn {
    background: var(--accent-suite-1);
    color: var(--text-dark);
}
#modal-suite-1 .book-suite-btn:hover {
    box-shadow: 0 10px 25px rgba(var(--accent-suite-1-rgb), 0.3);
}

#modal-suite-2 .book-suite-btn {
    background: var(--accent-suite-2);
    color: var(--text-dark);
}
#modal-suite-2 .book-suite-btn:hover {
    box-shadow: 0 10px 25px rgba(var(--accent-suite-2-rgb), 0.3);
}


/* --- Touch-friendly Gallery Carousel --- */
.modal-gallery {
    position: relative;
    background: #08080a;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px; /* fixed height on mobile */
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(10, 10, 11, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.carousel-nav:hover {
    background: var(--text-primary);
    color: var(--text-dark);
}

.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }

.carousel-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 10, 11, 0.7);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 0.05rem;
    font-weight: 500;
    z-index: 10;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: #0f0f12;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--text-primary);
    transform: scale(1.3);
}

#modal-suite-1 .carousel-dot.active { background: var(--accent-suite-1); }
#modal-suite-2 .carousel-dot.active { background: var(--accent-suite-2); }


/* --- Booking Confirmation Dialog --- */
.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5,5,5,0.7);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    padding: 20px;
}

.dialog-overlay.active {
    opacity: 1;
    visibility: visible;
}

.dialog-card {
    background: #121215;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.dialog-overlay.active .dialog-card {
    transform: scale(1);
}

.dialog-card h3 {
    font-family: var(--font-header);
    font-size: 1.25rem;
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
}

.dialog-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.dialog-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dialog-buttons .btn {
    width: 100%;
}


/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Rooms Detail Section (Mobile First) --- */
.rooms-detail-section {
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    z-index: 10;
    position: relative;
    overflow: hidden;
}

/* Faint architectural grid overlay */
.rooms-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.007) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 2; /* Sits on top of the glowing orbs */
    opacity: 0.8;
}

/* Organic subtle noise texture overlay to eliminate gradient banding */
.rooms-detail-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.015; /* Faint texture */
    pointer-events: none;
    z-index: 3; /* Above grid, below cards */
}

/* Glowing background orbs for depth and atmosphere */
.bg-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1; /* Below grid and cards */
    filter: blur(120px);
    opacity: 0.45;
    will-change: transform, opacity;
}

.orb-amber {
    top: 5%;
    left: -150px;
    background: radial-gradient(circle, rgba(var(--accent-suite-1-rgb), 0.22) 0%, transparent 70%);
    animation: pulseOrb1 15s ease-in-out infinite alternate;
}

.orb-slate {
    bottom: 5%;
    right: -150px;
    background: radial-gradient(circle, rgba(var(--accent-suite-2-rgb), 0.22) 0%, transparent 70%);
    animation: pulseOrb2 18s ease-in-out infinite alternate;
}

@keyframes pulseOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(80px, 40px) scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: translate(-30px, 80px) scale(0.9);
        opacity: 0.3;
    }
}

@keyframes pulseOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-60px, -50px) scale(0.85);
        opacity: 0.3;
    }
    100% {
        transform: translate(40px, -90px) scale(1.1);
        opacity: 0.5;
    }
}

/* Room Detail Card Base (Editorial Frameless) */
.room-detail-card {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: relative;
    z-index: 5;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.room-details-content .rooms-section-header {
    text-align: center;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-title-main {
    font-family: var(--font-header);
    font-size: 1.5rem;
    letter-spacing: 0.15rem;
    color: var(--text-primary);
}

.room-details-content .rooms-section-header .accent-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-suite-1), transparent);
    margin: 10px auto 0 auto;
}

/* Image Slider wrapper designed with aspect ratio for portrait photos */
.room-slider-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    max-height: 480px;
    overflow: hidden;
    background: transparent;
    border: none;
    box-shadow: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
}

.room-detail-card:hover .room-slider-wrapper {
    transform: translateY(-4px);
}

.room-slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.room-slider-slide {
    min-width: 85%;
    width: 85%;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: transparent !important;
    padding: 0 6px;
    box-sizing: border-box;
}

.room-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-in-out;
    opacity: 0; /* Hidden until onload triggers loaded class */
    cursor: zoom-in;
}

.room-slider-slide img.loaded {
    opacity: 1;
}

.room-slider-wrapper:hover .room-slider-slide img {
    transform: scale(1.04);
}


/* ── LIGHTBOX FULLSCREEN OVERLAY ───────────────────────────── */
#lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: lightboxFadeIn 0.25s ease;
}

#lightbox-overlay.active {
    display: flex;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

#lightbox-img {
    max-width: 100vw;
    max-height: 100dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
    animation: lightboxImgIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-drag: none;
    /* Slightly inset from screen edges */
    padding: 48px 16px 60px;
    box-sizing: border-box;
}

@keyframes lightboxImgIn {
    from { transform: scale(0.9); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

#lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
    z-index: 100001;
}

#lightbox-close:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: scale(1.1);
}

#lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: 0.12rem;
    color: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

#lightbox-prev,
#lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.25s ease;
    backdrop-filter: blur(8px);
    z-index: 100001;
}

#lightbox-prev { left: 16px; }
#lightbox-next { right: 16px; }

#lightbox-prev:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) scale(1.08); }
#lightbox-next:hover { background: rgba(255,255,255,0.18); transform: translateY(-50%) scale(1.08); }

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 11, 0.65);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.slider-arrow:hover {
    background: var(--text-primary);
    color: var(--text-dark);
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

#detail-suite-one .slider-arrow:hover {
    border-color: var(--accent-suite-1);
    box-shadow: 0 0 15px rgba(var(--accent-suite-1-rgb), 0.3);
}

#detail-suite-two .slider-arrow:hover {
    border-color: var(--accent-suite-2);
    box-shadow: 0 0 15px rgba(var(--accent-suite-2-rgb), 0.3);
}

.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10, 10, 11, 0.75);
    border: 1px solid var(--border-glass);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    z-index: 10;
}

/* Room Details Content */
.room-details-content {
    padding: 36px 0;
}

.room-detail-title {
    font-family: var(--font-header);
    font-size: 1.6rem;
    letter-spacing: 0.15rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.suite-one-color {
    background: linear-gradient(135deg, #dfba6b 0%, #f7e2af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suite-two-color {
    background: linear-gradient(135deg, #8da4b4 0%, #c1d3df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.room-detail-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.room-detail-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.specs-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.room-specs-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.room-specs-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-icon {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.room-specs-list li:hover .spec-icon {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.book-room-btn {
    width: 100%;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

#detail-suite-one .book-room-btn {
    border-color: rgba(223, 186, 107, 0.3);
}

#detail-suite-one .book-room-btn:hover {
    background: var(--accent-suite-1);
    color: var(--text-dark);
    border-color: var(--accent-suite-1);
    box-shadow: 0 8px 25px rgba(var(--accent-suite-1-rgb), 0.25);
    transform: translateY(-2px);
}

#detail-suite-two .book-room-btn {
    border-color: rgba(141, 164, 180, 0.3);
}

#detail-suite-two .book-room-btn:hover {
    background: var(--accent-suite-2);
    color: var(--text-dark);
    border-color: var(--accent-suite-2);
    box-shadow: 0 8px 25px rgba(var(--accent-suite-2-rgb), 0.25);
    transform: translateY(-2px);
}


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

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}


/* --- RESPONSIVE STYLES (Desktop Refinement) --- */
@media (min-width: 768px) {
    /* Layout split-screen */
    .suites-wrapper {
        flex-direction: row;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
    }
    
    .suite-panel {
        flex: 1;
        height: 100vh;
        height: 100dvh;
    }

    .suite-panel:first-child, .suite-panel:last-child {
        padding: 60px 48px 180px 48px; /* Bottom padding pushes text above photo watermarks */
        justify-content: flex-end; /* Align bottom-left on desktop */
        align-items: flex-start;
    }
    /* Hover panel animations removed to prevent buggy hover flickering on desktop */

    .panel-footer-brand {
        display: block; /* Show footer brand text on desktop */
    }
    
    .panel-content {
        margin: 0;
        align-items: flex-start; /* Align left on desktop */
        text-align: left; /* Left align text on desktop */
    }

    .suite-title {
        font-size: 3.2rem;
        letter-spacing: 0.3rem;
        margin-bottom: 8px;
    }

    .suite-tagline {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .btn {
        font-size: 0.75rem;
        letter-spacing: 0.15rem;
        padding: 14px 28px;
    }
    
    .panel-arrow-btn {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .panel-arrow-btn.prev {
        left: 24px;
    }
    .panel-arrow-btn.next {
        right: 24px;
    }

    /* Center Branding & Booking Widget (Desktop layout) */
    .center-content-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 900px;
    }

    .main-header {
        margin-bottom: 32px;
    }

    .logo-title {
        font-size: 4.6rem;
        letter-spacing: 0.5rem;
        margin-right: -0.5rem;
    }

    .logo-subtitle {
        font-size: 0.95rem;
        letter-spacing: 0.65rem;
        margin-right: -0.65rem;
        margin-top: 10px;
    }
    
    .booking-widget-glass {
        border-radius: 100px;
        padding: 12px 16px 12px 48px;
    }
    
    .booking-form {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }
    
    .booking-form .divider {
        display: block;
        width: 1px;
        height: 36px;
        background: rgba(255, 255, 255, 0.12);
        margin: 0 40px;
    }
    
    .input-group {
        gap: 2px;
    }
    
    .date-input-wrapper {
        height: 32px;
    }

    .date-display-val {
        padding: 4px 0 0 0;
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .calendar-icon {
        display: none;
    }
    
    .btn-search {
        width: auto;
        padding: 16px 40px;
    }

    /* Rooms Detail Section Desktop Styles */
    .rooms-detail-section {
        padding: 60px 48px;
        gap: 65px;
    }

    .section-title-main {
        font-size: 2rem;
    }

    .room-details-content .rooms-section-header {
        text-align: left;
        margin-bottom: 24px;
    }

    .room-details-content .rooms-section-header .accent-line {
        margin: 8px 0 0 0;
        width: 40px;
        background: var(--accent-suite-1);
    }

    .room-detail-card {
        flex-direction: row;
        height: 520px; /* Constrain height to fit elegantly */
        min-height: auto;
    }

    #detail-suite-two {
        flex-direction: row-reverse;
    }

    .room-slider-wrapper {
        flex: 1.1;
        height: 100%;
    }

    .room-details-content {
        flex: 0.9;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 0;
    }

    #detail-suite-one .room-details-content {
        padding-left: 60px;
    }

    #detail-suite-two .room-details-content {
        padding-right: 60px;
    }

    .room-detail-title {
        font-size: 1.4rem;
    }

    .room-detail-tagline {
        margin-bottom: 12px;
    }

    .room-detail-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .specs-title {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .room-specs-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 20px;
        margin-bottom: 20px;
    }

    .room-specs-list li {
        font-size: 0.8rem;
    }

    .book-room-btn {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    /* Further spacing tweaks for larger monitors */
    .suite-title {
        font-size: 4rem;
    }
}

/* --- Dedicated Suite Details & Calendar Page Styles --- */

.detail-page-body {
    background-color: #060608;
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-y: auto;
}

.detail-page-container {
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: rgba(10, 10, 11, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.back-link:hover {
    color: var(--text-primary);
    transform: translateX(-4px);
}

.back-arrow {
    font-size: 1rem;
}

.header-logo-mini {
    font-family: var(--font-header);
    letter-spacing: 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-right: -0.4rem;
    color: var(--text-primary);
}

.room-showcase-section {
    max-width: 1280px;
    margin: 40px auto 0 auto;
    padding: 0 24px;
}

.room-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.showcase-visuals {
    width: 100%;
}

.grand-slider {
    height: 400px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.showcase-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.room-intro-card {
    background: rgba(15, 15, 17, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.suite-page-title {
    font-family: var(--font-header);
    font-size: 2.2rem;
    letter-spacing: 0.2rem;
    font-weight: 700;
    margin-top: 4px;
    margin-bottom: 2px;
}

.suite-page-tagline {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.accent-line-left {
    width: 60px;
    height: 1px;
    margin-bottom: 24px;
}

.suite-one-theme .accent-line-left {
    background: var(--accent-suite-1);
}

.suite-two-theme .accent-line-left {
    background: var(--accent-suite-2);
}

.room-page-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.detail-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15rem;
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
}

.room-specs-grid {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.room-specs-grid li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Calendar Widget Styles */
.calendar-widget-card {
    background: rgba(15, 15, 17, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 32px 24px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.calendar-instructions {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.5;
}

.calendar-widget-container {
    width: 100%;
    background: rgba(10, 10, 11, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 24px;
}

.calendar-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.calendar-nav-btn:hover {
    background: var(--text-primary);
    color: var(--text-dark);
}

.calendar-title-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    color: var(--text-primary);
}

.calendar-weekdays-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 8px;
    opacity: 0.8;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    row-gap: 6px;
}

.calendar-day-cell {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.calendar-day-cell:hover:not(.disabled) {
    background: rgba(255, 255, 255, 0.08);
}

.calendar-day-cell.disabled {
    color: var(--text-secondary);
    opacity: 0.25;
    pointer-events: none;
}

.calendar-day-cell.empty {
    pointer-events: none;
}

/* Theme highlighted checkin/checkout dates */
.suite-one-theme .calendar-day-cell.selected {
    background: var(--accent-suite-1) !important;
    color: var(--text-dark) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(223, 186, 107, 0.3);
}

.suite-two-theme .calendar-day-cell.selected {
    background: var(--accent-suite-2) !important;
    color: var(--text-dark) !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(141, 164, 180, 0.3);
}

/* In Range highlights */
.suite-one-theme .calendar-day-cell.in-range {
    background: rgba(223, 186, 107, 0.18);
    color: var(--accent-suite-1);
    border-radius: 0;
}

.suite-two-theme .calendar-day-cell.in-range {
    background: rgba(141, 164, 180, 0.18);
    color: var(--accent-suite-2);
    border-radius: 0;
}

/* Give selection terminals rounded bounds */
.calendar-day-cell.selected-start {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}

.calendar-day-cell.selected-end {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}

/* Date Selection Output Layout */
.selected-range-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 16px;
}

.range-date-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.range-date-box .box-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    color: var(--text-secondary);
}

.range-date-box .box-val {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.range-arrow {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.2);
}

.nights-count-badge {
    align-self: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 24px;
    text-align: center;
}

.suite-one-theme .nights-count-badge {
    color: var(--accent-suite-1);
    border-color: rgba(223, 186, 107, 0.15);
}

.suite-two-theme .nights-count-badge {
    color: var(--accent-suite-2);
    border-color: rgba(141, 164, 180, 0.15);
}

.book-now-btn {
    width: 100%;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-size: 0.75rem !important;
}

.suite-one-theme .book-now-btn {
    background: var(--accent-suite-1) !important;
    color: var(--text-dark) !important;
}

.suite-one-theme .book-now-btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(223, 186, 107, 0.35);
    transform: translateY(-2px);
}

.suite-two-theme .book-now-btn {
    background: var(--accent-suite-2) !important;
    color: var(--text-dark) !important;
}

.suite-two-theme .book-now-btn:hover:not(:disabled) {
    box-shadow: 0 8px 25px rgba(141, 164, 180, 0.35);
    transform: translateY(-2px);
}

.book-now-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.3) !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Simulated Booked Days style */
.calendar-day-cell.booked {
    position: relative;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.calendar-day-cell.booked::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(-45deg);
}

/* RESPONSIVE LAYOUT FOR DETAILS PAGE */
@media (min-width: 768px) {
    .room-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .room-showcase-grid {
        flex-direction: row;
        align-items: flex-start;
    }

    .showcase-visuals {
        flex: 2; /* 67% width */
        position: sticky;
        top: 100px;
    }

    .showcase-details {
        flex: 1; /* 33% width */
    }

    .grand-slider {
        height: calc(100vh - 120px);
        min-height: 550px;
        max-height: none;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    /* Render 3 portrait columns side-by-side */
    .grand-slider .room-slider-slide {
        min-width: 33.3333%;
        width: 33.3333%;
        height: 100%;
        padding: 0 8px;
        box-sizing: border-box;
        background: transparent !important;
    }

    .grand-slider .room-slider-slide img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* Mobile detailed card filter based on active panel expansion */
@media (max-width: 767px) {
    .suite-one-expanded #detail-suite-two {
        display: none !important;
    }
    .suite-two-expanded #detail-suite-one {
        display: none !important;
    }
    .suite-one-expanded .rooms-detail-section,
    .suite-two-expanded .rooms-detail-section {
        display: none !important;
    }
}

/* Floating Close Full View Button */
.close-full-view-btn {
    display: none; /* Hidden by default */
}

@media (max-width: 767px) {
    .page-container.suite-one-expanded .close-full-view-btn,
    .page-container.suite-two-expanded .close-full-view-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        background: rgba(10, 10, 11, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: var(--text-primary);
        padding: 16px 28px;
        border-radius: 40px;
        font-family: var(--font-body);
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.12rem;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        text-transform: uppercase;
    }

    .page-container.suite-one-expanded .close-full-view-btn:hover,
    .page-container.suite-two-expanded .close-full-view-btn:hover {
        background: var(--text-primary);
        color: var(--text-dark);
        border-color: var(--text-primary);
        transform: translate(-50%, -2px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    }
    
    .page-container.suite-one-expanded .close-full-view-btn:active,
    .page-container.suite-two-expanded .close-full-view-btn:active {
        transform: translate(-50%, 0);
    }
}

/* --- Floating Theme Switcher UI --- */
.theme-switcher-container {
    position: fixed;
    top: 24px;
    left: 24px;
    z-index: 10000;
}

.theme-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 11, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: uppercase;
}

.theme-switcher-toggle:hover {
    background: var(--text-primary);
    color: var(--text-dark);
    border-color: var(--text-primary);
}

.theme-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: rgba(10, 10, 11, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 190px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-switcher-container.active .theme-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.theme-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: all 0.2s ease;
}

.theme-option:hover, .theme-option.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.theme-color-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.classic-dot { background: #dfba6b; }
.botanical-dot { background: #2ec4b6; }
.nordic-dot { background: #a47e30; }



/* --- Theme 2: Botanical Forest --- */
body.theme-botanical {
    /* Rich deep forest green — clearly different from Classic's near-black */
    --bg-dark: #0b1f16;
    --bg-card: rgba(14, 36, 26, 0.85);
    --bg-glass: rgba(10, 28, 20, 0.7);
    --border-glass: rgba(46, 196, 182, 0.1);
    --border-glass-light: rgba(46, 196, 182, 0.2);
    
    /* Vivid botanical accents */
    --accent-suite-1: #00e5c3; /* Bright cyan-mint */
    --accent-suite-1-rgb: 0, 229, 195;
    --accent-suite-2: #7ed957; /* Vivid lime green */
    --accent-suite-2-rgb: 126, 217, 87;
    
    --text-primary: #d4f0e8;
    --text-secondary: #7ab5a4;
    
    /* Override body background directly */
    background-color: #0b1f16 !important;
}

/* Visible green tint on the body itself */
body.theme-botanical {
    background-color: #0b1f16;
}

body.theme-botanical .suite-panel.suite-one {
    background: linear-gradient(160deg, #071a10 0%, #0d2919 100%);
}

body.theme-botanical .suite-panel.suite-two {
    background: linear-gradient(160deg, #091507 0%, #0a2012 100%);
}

/* Green gradient vignette on hero panels — dark forest feel */
body.theme-botanical .panel-background::after {
    background: linear-gradient(to bottom,
        rgba(5, 20, 12, 0.25) 0%,
        rgba(7, 25, 14, 0.4) 60%,
        rgba(7, 25, 14, 0.9) 85%,
        #071a10 100%
    );
}

body.theme-botanical .suite-one .suite-title { color: #00e5c3; }
body.theme-botanical .suite-two .suite-title { color: #7ed957; }
body.theme-botanical .suite-one-color {
    background: linear-gradient(135deg, #00e5c3 0%, #a7f3ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.theme-botanical .suite-two-color {
    background: linear-gradient(135deg, #7ed957 0%, #c6f4a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.theme-botanical .orb-amber {
    background: radial-gradient(circle, rgba(0, 229, 195, 0.22) 0%, transparent 70%);
}
body.theme-botanical .orb-slate {
    background: radial-gradient(circle, rgba(126, 217, 87, 0.22) 0%, transparent 70%);
}

body.theme-botanical .rooms-detail-section {
    background: #091a11;
}

body.theme-botanical .room-showcase-section {
    background: transparent;
}

/* Spec icon cells */
body.theme-botanical .spec-icon {
    background: rgba(0, 229, 195, 0.08);
    border-color: rgba(0, 229, 195, 0.15);
}

body.theme-botanical .slider-arrow {
    background: rgba(7, 25, 14, 0.7);
    color: #00e5c3;
    border: 1px solid rgba(0, 229, 195, 0.2);
}

body.theme-botanical .slider-arrow:hover {
    background: rgba(0, 229, 195, 0.2);
    color: #00e5c3;
}

body.theme-botanical .slider-counter {
    background: rgba(7, 25, 14, 0.8);
    color: #7ab5a4;
    border: 1px solid rgba(0, 229, 195, 0.15);
}

body.theme-botanical .section-subtitle {
    color: #00e5c3;
    border-color: rgba(0, 229, 195, 0.25);
}

body.theme-botanical .detail-header {
    background: rgba(11, 31, 22, 0.85);
    border-bottom: 1px solid rgba(0, 229, 195, 0.1);
}

body.theme-botanical .back-link {
    color: #7ab5a4;
}

body.theme-botanical .back-link:hover {
    color: #00e5c3;
}

body.theme-botanical .header-logo-mini {
    color: #d4f0e8;
}

body.theme-botanical .calendar-widget-card {
    background: rgba(10, 28, 20, 0.8);
    border: 1px solid rgba(0, 229, 195, 0.12);
}

body.theme-botanical .calendar-widget-container {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 229, 195, 0.08);
}

body.theme-botanical .calendar-nav-btn {
    border: 1px solid rgba(0, 229, 195, 0.15);
    background: rgba(0, 229, 195, 0.04);
    color: #d4f0e8;
}

body.theme-botanical .calendar-nav-btn:hover {
    background: rgba(0, 229, 195, 0.15);
    color: #00e5c3;
}

body.theme-botanical .calendar-title-text {
    color: #d4f0e8;
}

body.theme-botanical .calendar-day-cell {
    color: #d4f0e8;
}

body.theme-botanical .calendar-day-cell.disabled {
    color: #3a6655;
}

body.theme-botanical .selected-range-bar {
    background: rgba(0, 229, 195, 0.04);
    border: 1px solid rgba(0, 229, 195, 0.1);
}

body.theme-botanical .range-date-box .box-label {
    color: #7ab5a4;
}

body.theme-botanical .range-date-box .box-val {
    color: #d4f0e8;
}

body.theme-botanical .dialog-card {
    background: #0e2419;
    border: 1px solid rgba(0, 229, 195, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 60px rgba(0, 229, 195, 0.05);
}

body.theme-botanical .dialog-card h3 {
    color: #00e5c3;
}

body.theme-botanical .dialog-card p {
    color: #7ab5a4;
}


/* --- Theme 3: Nordic Linen (Full Light Mode) --- */
body.theme-nordic {
    /* Warm off-white linen — clearly light, clearly different */
    --bg-dark: #f2ede4;
    --bg-card: rgba(237, 231, 218, 0.9);
    --bg-glass: rgba(248, 244, 237, 0.85);
    --border-glass: rgba(28, 28, 30, 0.1);
    --border-glass-light: rgba(28, 28, 30, 0.18);
    
    /* Brass + slate — visible on light bg */
    --accent-suite-1: #96690f; /* Deep antique brass */
    --accent-suite-1-rgb: 150, 105, 15;
    --accent-suite-2: #3d5463; /* Deep slate */
    --accent-suite-2-rgb: 61, 84, 99;
    
    --text-primary: #1a1a1c;
    --text-secondary: #5a5a60;
    --text-dark: #f2ede4;
    
    background-color: #f2ede4 !important;
}

/* Suite panel backgrounds in Nordic — editorial light washes */
body.theme-nordic .suite-panel.suite-one {
    background: linear-gradient(160deg, #e8dcc8 0%, #ddd0b8 100%) !important;
}

body.theme-nordic .suite-panel.suite-two {
    background: linear-gradient(160deg, #cdd5db 0%, #bec8d0 100%) !important;
}

/* Override the dark photo gradient to use a light warm wash */
body.theme-nordic .panel-background::after {
    background: linear-gradient(to bottom,
        rgba(242, 237, 228, 0.1) 0%,
        rgba(235, 228, 215, 0.4) 60%,
        rgba(235, 228, 215, 0.88) 85%,
        #ebe4d7 100%
    );
}

body.theme-nordic .suite-one .suite-title { color: #96690f; }
body.theme-nordic .suite-two .suite-title { color: #3d5463; }
body.theme-nordic .suite-one-color {
    background: linear-gradient(135deg, #96690f 0%, #b8881f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.theme-nordic .suite-two-color {
    background: linear-gradient(135deg, #3d5463 0%, #5a7485 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
body.theme-nordic .rooms-detail-section {
    background: #ece7de;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
body.theme-nordic .rooms-detail-section::before {
    background-image: linear-gradient(rgba(0, 0, 0, 0.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(0, 0, 0, 0.025) 1px, transparent 1px);
}
body.theme-nordic .orb-amber {
    background: radial-gradient(circle, rgba(150, 105, 15, 0.15) 0%, transparent 70%);
}
body.theme-nordic .orb-slate {
    background: radial-gradient(circle, rgba(61, 84, 99, 0.15) 0%, transparent 70%);
}
body.theme-nordic .room-slider-slide {
    background: #d9d0c2;
}
body.theme-nordic .slider-arrow {
    background: rgba(242, 237, 228, 0.88);
    color: #1a1a1c;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
body.theme-nordic .slider-arrow:hover {
    background: #1a1a1c;
    color: #f2ede4;
}
body.theme-nordic .slider-counter {
    background: rgba(242, 237, 228, 0.9);
    color: #1a1a1c;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
body.theme-nordic .scroll-indicator span {
    color: rgba(26, 26, 28, 0.55);
}
body.theme-nordic .scroll-indicator-mouse {
    border-color: rgba(26, 26, 28, 0.35);
}
body.theme-nordic .scroll-indicator-mouse::before {
    background: #1a1a1c;
}
body.theme-nordic .panel-footer-brand {
    color: rgba(26, 26, 28, 0.18);
}
body.theme-nordic .close-full-view-btn {
    background: rgba(242, 237, 228, 0.95);
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: #1a1a1c;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
}
body.theme-nordic .close-full-view-btn:hover {
    background: #1a1a1c;
    color: #f2ede4;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}

/* Central K1959 logo in Nordic hero — dark text on light panels */
body.theme-nordic .logo-title {
    color: #1a1a1c !important;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5) !important;
}
body.theme-nordic .logo-subtitle {
    color: rgba(26, 26, 28, 0.45) !important;
}

/* Nordic hero vignette overlay — lighter */
body.theme-nordic .hero-section::before {
    background: radial-gradient(circle at center, rgba(235, 228, 215, 0.05) 0%, rgba(235, 228, 215, 0.3) 100%);
}

/* Section subtitle tag */
body.theme-nordic .section-subtitle {
    color: #96690f;
    border-color: rgba(150, 105, 15, 0.3);
}

/* Spec icons */
body.theme-nordic .spec-icon {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
body.theme-nordic .room-specs-list li:hover .spec-icon,
body.theme-nordic .room-specs-grid li:hover .spec-icon {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.12);
}

/* Detail header */
body.theme-nordic .detail-header {
    background: rgba(242, 237, 228, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
body.theme-nordic .back-link {
    color: #5a5a60;
}
body.theme-nordic .back-link:hover {
    color: #1a1a1c;
}
body.theme-nordic .header-logo-mini {
    color: #1a1a1c;
}

/* Calendar */
body.theme-nordic .calendar-widget-card {
    background: rgba(248, 244, 237, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.07);
}
body.theme-nordic .calendar-widget-container {
    background: rgba(0, 0, 0, 0.025);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
body.theme-nordic .calendar-nav-btn {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
    color: #1a1a1c;
}
body.theme-nordic .calendar-nav-btn:hover {
    background: #1a1a1c;
    color: #f2ede4;
}
body.theme-nordic .calendar-title-text {
    color: #1a1a1c;
}
body.theme-nordic .calendar-day-cell {
    color: #1a1a1c;
}
body.theme-nordic .calendar-day-cell:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.06);
}
body.theme-nordic .calendar-day-cell.disabled {
    color: #9a9a9f;
}
body.theme-nordic .calendar-day-cell.booked {
    color: rgba(0, 0, 0, 0.18);
}
body.theme-nordic .calendar-day-cell.booked::after {
    background: rgba(0, 0, 0, 0.2);
}
body.theme-nordic .selected-range-bar {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
body.theme-nordic .range-date-box .box-label {
    color: #5a5a60;
}
body.theme-nordic .range-date-box .box-val {
    color: #1a1a1c;
}
body.theme-nordic .range-arrow {
    color: rgba(0, 0, 0, 0.2);
}
body.theme-nordic .nights-count-badge {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.07);
    color: #1a1a1c;
}

/* Inquiry button in Nordic */
body.theme-nordic .book-now-btn,
body.theme-nordic .book-now-btn:disabled {
    background: #1a1a1c;
    color: #f2ede4;
}

body.theme-nordic .book-now-btn:hover:not(:disabled) {
    background: #96690f;
    box-shadow: 3px 3px 0 rgba(150, 105, 15, 0.25);
}

/* Dialog box */
body.theme-nordic .dialog-card {
    background: #f2ede4;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
}
body.theme-nordic .dialog-card h3 {
    color: #1a1a1c;
}
body.theme-nordic .dialog-card p {
    color: #5a5a60;
}
body.theme-nordic .dialog-buttons .btn-outline {
    border-color: rgba(0, 0, 0, 0.18);
    color: #1a1a1c;
}
body.theme-nordic .dialog-buttons .btn-outline:hover {
    background: #1a1a1c;
    color: #f2ede4;
}
body.theme-nordic .dialog-buttons .btn-primary {
    background: #1a1a1c;
    color: #f2ede4;
}

/* Dropdown in Nordic */
body.theme-nordic .theme-menu-dropdown {
    background: rgba(248, 244, 237, 0.98);
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.07);
}
body.theme-nordic .theme-option {
    color: #5a5a60;
}
body.theme-nordic .theme-option:hover,
body.theme-nordic .theme-option.active {
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1c;
}

body.theme-nordic .calendar-nav-btn:hover {
    background: #1c1c1e;
    color: #fcfbf7;
}
body.theme-nordic .calendar-title-text {
    color: #1c1c1e;
}
body.theme-nordic .calendar-day-cell {
    color: #1c1c1e;
}
body.theme-nordic .calendar-day-cell:hover:not(.disabled) {
    background: rgba(0, 0, 0, 0.05);
}
body.theme-nordic .calendar-day-cell.disabled {
    color: #6e6e73;
}
body.theme-nordic .calendar-day-cell.booked {
    color: rgba(0, 0, 0, 0.15);
}
body.theme-nordic .calendar-day-cell.booked::after {
    background: rgba(0, 0, 0, 0.2);
}
body.theme-nordic .selected-range-bar {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
body.theme-nordic .range-date-box .box-label {
    color: #6e6e73;
}
body.theme-nordic .range-date-box .box-val {
    color: #1c1c1e;
}
body.theme-nordic .range-arrow {
    color: rgba(0, 0, 0, 0.2);
}
body.theme-nordic .nights-count-badge {
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
body.theme-nordic .dialog-card {
    background: #fcfbf7;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
body.theme-nordic .dialog-card h3 {
    color: #1c1c1e;
}
body.theme-nordic .dialog-card p {
    color: #6e6e73;
}
body.theme-nordic .dialog-buttons .btn-outline {
    border-color: rgba(0, 0, 0, 0.15);
    color: #1c1c1e;
}
body.theme-nordic .dialog-buttons .btn-outline:hover {
    background: #1c1c1e;
    color: #fcfbf7;
}
body.theme-nordic .dialog-buttons .btn-primary {
    background: #1c1c1e;
    color: #fcfbf7;
}

/* Dropdown styling updates in Light Mode */
body.theme-nordic .theme-menu-dropdown {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
body.theme-nordic .theme-option {
    color: #6e6e73;
}
body.theme-nordic .theme-option:hover,
body.theme-nordic .theme-option.active {
    background: rgba(0, 0, 0, 0.04);
    color: #1c1c1e;
}

/* Suite panel backgrounds – light wash in nordic */
body.theme-nordic .suite-panel.suite-one {
    background: linear-gradient(135deg, #f5ede0 0%, #ede3d3 100%) !important;
}

body.theme-nordic .suite-panel.suite-two {
    background: linear-gradient(135deg, #e8eaed 0%, #dde0e5 100%) !important;
}

/* Detail header – editorial bottom line */
body.theme-nordic .detail-header {
    border-bottom: 1px solid rgba(28, 28, 30, 0.08) !important;
}

body.theme-nordic .back-link {
    color: #1c1c1e !important;
    border: 1.5px solid rgba(28, 28, 30, 0.15) !important;
    border-radius: 4px !important;
    box-shadow: 2px 2px 0 rgba(28, 28, 30, 0.05) !important;
}

body.theme-nordic .back-link:hover {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    box-shadow: 3px 3px 0 rgba(28, 28, 30, 0.12) !important;
    transform: translate(-1px, -1px) !important;
}


/* =============================================================
   DEEP VISUAL PERSONALITY OVERRIDES
   Beyond color — each theme has a completely different *shape*,
   *texture*, *shadow style*, and *typographic attitude*.
   ============================================================= */


/* ── CLASSIC AMBER & OAK (default) ───────────────────────────
   Luxury hotel: pill shapes, deep velvet dark, amber blur glow.
   This is the default — no extra class needed.                 */

body .btn { border-radius: 30px; }
body .dialog-card { border-radius: 24px; }
body .booking-widget-glass { border-radius: 24px; }


/* ── BOTANICAL FOREST ─────────────────────────────────────────
   Organic & alive: very rounded blob shapes, bounce animations,
   emerald glow halos, heavy font weight, grain texture feel.   */

body.theme-botanical .btn {
    border-radius: 18px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04rem !important;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

body.theme-botanical .btn-outline:hover {
    background: rgba(46, 196, 182, 0.1) !important;
    border-color: rgba(46, 196, 182, 0.55) !important;
    color: #2ec4b6 !important;
    box-shadow: 0 0 24px rgba(46,196,182,0.25), 0 8px 20px rgba(0,0,0,0.3) !important;
    transform: translateY(-4px) scale(1.02) !important;
}

body.theme-botanical .btn-primary {
    background: linear-gradient(135deg, #2ec4b6, #1a9e93) !important;
    color: #020f0d !important;
    border-radius: 18px !important;
    box-shadow: 0 4px 18px rgba(46,196,182,0.35) !important;
}

body.theme-botanical .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(46,196,182,0.5) !important;
    transform: translateY(-4px) scale(1.02) !important;
}

body.theme-botanical .booking-widget-glass {
    border-radius: 30px !important;
}

body.theme-botanical .room-intro-card {
    border-radius: 26px !important;
    border-color: rgba(46, 196, 182, 0.08) !important;
}

body.theme-botanical .calendar-widget-card {
    border-radius: 26px !important;
}

body.theme-botanical .dialog-card {
    border-radius: 30px !important;
}

body.theme-botanical .panel-arrow-btn {
    border-radius: 14px !important;
    border: 1px solid rgba(46,196,182,0.2) !important;
}

body.theme-botanical .panel-arrow-btn:hover {
    background: rgba(46,196,182,0.15) !important;
    border-color: rgba(46,196,182,0.4) !important;
    color: #2ec4b6 !important;
}

body.theme-botanical .logo-title {
    text-shadow: 0 0 35px rgba(46, 196, 182, 0.25) !important;
}

body.theme-botanical .logo-subtitle {
    color: rgba(46, 196, 182, 0.5) !important;
}

body.theme-botanical .scroll-indicator-mouse {
    border-color: rgba(46, 196, 182, 0.45) !important;
    border-radius: 12px !important;
}

body.theme-botanical .scroll-indicator-mouse::before {
    background: #2ec4b6 !important;
}

body.theme-botanical .close-full-view-btn {
    border-radius: 16px !important;
    border-color: rgba(46, 196, 182, 0.45) !important;
    color: #2ec4b6 !important;
}

body.theme-botanical .accent-line-left {
    background: linear-gradient(90deg, #2ec4b6, transparent) !important;
}

body.theme-botanical .room-specs-grid li {
    border-radius: 12px !important;
    border-color: rgba(46, 196, 182, 0.08) !important;
}

body.theme-botanical .book-room-btn {
    border-radius: 18px !important;
    border-color: rgba(46, 196, 182, 0.4) !important;
    color: #2ec4b6 !important;
}

body.theme-botanical .book-room-btn:hover {
    background: rgba(46,196,182,0.1) !important;
    border-color: #2ec4b6 !important;
    box-shadow: 0 0 28px rgba(46,196,182,0.22) !important;
}

body.theme-botanical .calendar-day-cell.selected,
body.theme-botanical .calendar-day-cell.selected-start,
body.theme-botanical .calendar-day-cell.selected-end {
    background: linear-gradient(135deg, #2ec4b6, #1a9e93) !important;
    color: #020f0d !important;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(46,196,182,0.4) !important;
}

body.theme-botanical .calendar-day-cell.in-range {
    background: rgba(46, 196, 182, 0.1) !important;
    color: #2ec4b6 !important;
}

body.theme-botanical .calendar-day-cell:hover:not(.disabled) {
    border-radius: 10px !important;
    background: rgba(46, 196, 182, 0.07) !important;
}

body.theme-botanical .theme-switcher-toggle {
    background: rgba(5, 15, 12, 0.85) !important;
    border-color: rgba(46, 196, 182, 0.25) !important;
}

body.theme-botanical .theme-switcher-toggle:hover {
    background: rgba(46, 196, 182, 0.15) !important;
    color: #2ec4b6 !important;
    border-color: rgba(46, 196, 182, 0.5) !important;
}

body.theme-botanical .theme-menu-dropdown {
    border-radius: 20px !important;
}

body.theme-botanical .theme-option {
    border-radius: 12px !important;
}


/* ── NORDIC LINEN & SLATE ─────────────────────────────────────
   Minimalist Scandinavian editorial: SHARP 4px corners max,
   fine grid-line texture, crisp offset shadows (no blur),
   tight tracking, bold uppercase, brass accents.               */

body.theme-nordic {
    background-image:
        linear-gradient(rgba(28, 28, 30, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 28, 30, 0.05) 1px, transparent 1px) !important;
    background-size: 36px 36px !important;
}

body.theme-nordic .btn {
    border-radius: 4px !important;
    letter-spacing: 0.2rem !important;
    font-weight: 700 !important;
}

body.theme-nordic .btn-outline {
    background: transparent !important;
    border: 1.5px solid rgba(28, 28, 30, 0.3) !important;
    color: #1c1c1e !important;
    box-shadow: 2px 2px 0 rgba(28, 28, 30, 0.08) !important;
    transition: all 0.15s ease !important;
    backdrop-filter: none !important;
}

body.theme-nordic .btn-outline:hover {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    border-color: #1c1c1e !important;
    transform: translate(-2px, -2px) !important;
    box-shadow: 4px 4px 0 rgba(28, 28, 30, 0.2) !important;
}

body.theme-nordic .btn-primary {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    border-radius: 4px !important;
    border: 1.5px solid #1c1c1e !important;
    box-shadow: 2px 2px 0 rgba(28, 28, 30, 0.18) !important;
    transition: all 0.15s ease !important;
}

body.theme-nordic .btn-primary:hover {
    background: #a47e30 !important;
    border-color: #a47e30 !important;
    color: #fcfbf7 !important;
    transform: translate(-2px, -2px) !important;
    box-shadow: 4px 4px 0 rgba(164, 126, 48, 0.3) !important;
}

body.theme-nordic .booking-widget-glass {
    border-radius: 4px !important;
    box-shadow: 5px 5px 0 rgba(28, 28, 30, 0.07) !important;
}

body.theme-nordic .room-intro-card {
    border-radius: 4px !important;
    box-shadow: 4px 4px 0 rgba(28, 28, 30, 0.04) !important;
}

body.theme-nordic .calendar-widget-card {
    border-radius: 4px !important;
    box-shadow: 4px 4px 0 rgba(28, 28, 30, 0.05) !important;
}

body.theme-nordic .dialog-card {
    border-radius: 4px !important;
    box-shadow: 6px 6px 0 rgba(28, 28, 30, 0.1) !important;
}

body.theme-nordic .panel-arrow-btn {
    border-radius: 4px !important;
    background: rgba(252, 251, 247, 0.8) !important;
    border: 1px solid rgba(28, 28, 30, 0.2) !important;
    color: #1c1c1e !important;
}

body.theme-nordic .panel-arrow-btn:hover {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    border-color: #1c1c1e !important;
}

body.theme-nordic .logo-title {
    letter-spacing: 0.55rem !important;
    font-weight: 700 !important;
    text-shadow: none !important;
}

body.theme-nordic .logo-subtitle {
    letter-spacing: 0.75rem !important;
    font-weight: 700 !important;
}

body.theme-nordic .scroll-indicator span {
    color: rgba(28, 28, 30, 0.45) !important;
    letter-spacing: 0.25rem !important;
}

body.theme-nordic .scroll-indicator-mouse {
    border-color: rgba(28, 28, 30, 0.3) !important;
    border-radius: 3px !important;
}

body.theme-nordic .scroll-indicator-mouse::before {
    background: #1c1c1e !important;
}

body.theme-nordic .close-full-view-btn {
    border-radius: 4px !important;
    font-weight: 700 !important;
    letter-spacing: 0.18rem !important;
}

body.theme-nordic .accent-line-left {
    background: linear-gradient(90deg, #a47e30, transparent) !important;
    height: 1.5px !important;
}

body.theme-nordic .room-specs-grid li {
    border-radius: 3px !important;
    box-shadow: 1px 1px 0 rgba(28, 28, 30, 0.04) !important;
}

body.theme-nordic .book-room-btn {
    border-radius: 4px !important;
}

body.theme-nordic .book-room-btn:hover {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    border-color: #1c1c1e !important;
    box-shadow: 3px 3px 0 rgba(28, 28, 30, 0.15) !important;
    transform: translate(-2px, -2px) !important;
}

body.theme-nordic .calendar-day-cell.selected,
body.theme-nordic .calendar-day-cell.selected-start,
body.theme-nordic .calendar-day-cell.selected-end {
    background: #a47e30 !important;
    color: #fcfbf7 !important;
    border-radius: 3px !important;
    box-shadow: 2px 2px 0 rgba(164, 126, 48, 0.25) !important;
}

body.theme-nordic .calendar-day-cell.in-range {
    background: rgba(164, 126, 48, 0.08) !important;
    color: #a47e30 !important;
    border-radius: 2px !important;
}

body.theme-nordic .calendar-day-cell:hover:not(.disabled) {
    border-radius: 3px !important;
    background: rgba(28, 28, 30, 0.05) !important;
}

body.theme-nordic .theme-switcher-toggle {
    border-radius: 4px !important;
    box-shadow: 2px 2px 0 rgba(28, 28, 30, 0.07) !important;
}

body.theme-nordic .theme-switcher-toggle:hover {
    background: #1c1c1e !important;
    color: #fcfbf7 !important;
    border-color: #1c1c1e !important;
}

body.theme-nordic .theme-menu-dropdown {
    border-radius: 4px !important;
}

body.theme-nordic .theme-option {
    border-radius: 2px !important;
}

/* ──────────────────────────────────────────────────────────────
   LANDING PAGE REDESIGN STYLES
   ────────────────────────────────────────────────────────────── */

/* Top Right Google Review Badge */
.google-review-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 11, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.google-review-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.review-star {
    color: #dfba6b;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Location Indicator */
.hero-location-badge {
    font-size: 1.05rem; /* Scaled up ~20% larger */
    font-weight: 700;
    letter-spacing: 0.22rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    pointer-events: auto; /* enable clicks */
}

.pin-icon {
    font-size: 1.25rem;
}

/* Value Proposition */
.hero-value-prop {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 390px;
    margin-bottom: 24px;
    font-weight: 400;
    pointer-events: auto; /* enable selection */
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    margin-bottom: 20px;
    pointer-events: auto; /* enable clicks */
}

.hero-cta-buttons .btn {
    flex: 1;
    font-size: 0.65rem;
    padding: 12px 16px;
    border-radius: 8px; /* sleeker, slightly squared pill */
}

@media (max-width: 767px) {
    .hero-cta-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        min-width: 0;
        height: 54px;
        padding: 8px;
        font-size: 0.6rem;
        letter-spacing: 0.075rem;
        line-height: 1.35;
        box-sizing: border-box;
        text-align: center;
    }

    .hero-cta-buttons .btn-cal-icon {
        display: none;
    }
}

.cta-check-availability {
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.cta-check-availability:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-2px);
}

.cta-view-suites {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-weight: 600;
    box-shadow: none;
}

.cta-view-suites:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

.btn-cal-icon {
    font-size: 0.75rem;
}

/* WhatsApp Direct Booking Info */
.hero-direct-booking {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    pointer-events: auto; /* enable clicks */
}

.booking-prompt {
    color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-fast);
}

.whatsapp-btn-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.whatsapp-inline-icon {
    color: #25d366;
    display: flex;
    align-items: center;
}

.whatsapp-text-highlight {
    color: #25d366;
    font-weight: 700;
}

/* Bottom Slide Navigation */
.hero-suite-navigation {
    position: absolute;
    bottom: 95px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none; /* hide on desktop by default */
    align-items: center;
    gap: 20px;
    background: rgba(10, 10, 11, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 30px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    width: max-content;
    max-width: 95%;
}

@media (max-width: 767px) {
    .hero-suite-navigation {
        display: flex; /* only show on mobile */
    }
}

.suite-nav-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12rem;
    cursor: pointer;
    transition: var(--transition-fast);
    outline: none;
    white-space: nowrap; /* Prevents broken multi-line wrapping */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: switcherHighlight 2.5s ease-in-out infinite;
}

@keyframes switcherHighlight {
    0%, 100% {
        color: rgba(255, 255, 255, 0.65);
        opacity: 0.8;
    }
    50% {
        color: #ffffff;
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }
}

.suite-nav-btn:hover {
    color: #ffffff;
}

.nav-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
    user-select: none;
}

/* Arrow bounce animations to act as a "click me/interactive" cue */
.nav-arrow-left {
    display: inline-block;
    margin-right: 4px;
    animation: navArrowBounceLeft 1.5s ease-in-out infinite;
}

.nav-arrow-right {
    display: inline-block;
    margin-left: 4px;
    animation: navArrowBounceRight 1.5s ease-in-out infinite;
}

@keyframes navArrowBounceLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
}

@keyframes navArrowBounceRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Floating WhatsApp Button */
/* Floating Contact Widget CSS */
.floating-contact-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.floating-contact-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(10, 10, 11, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.floating-contact-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
    background: rgba(20, 20, 22, 0.95);
}

.floating-contact-toggle svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.floating-contact-container.active .floating-contact-toggle {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.floating-contact-container.active .floating-contact-toggle svg {
    transform: rotate(90deg);
}

.contact-menu-dropdown {
    position: absolute;
    bottom: 72px;
    right: 0;
    background: rgba(10, 10, 11, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 175px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-contact-container.active .contact-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 12px 16px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.contact-item svg {
    flex-shrink: 0;
}

/* Nordic Light Theme overrides for contact buttons */
body.theme-nordic .floating-contact-toggle {
    background: rgba(248, 244, 237, 0.85);
    border-color: rgba(28, 28, 30, 0.15);
    color: #1a1a1c;
    box-shadow: 0 8px 30px rgba(28, 28, 30, 0.15);
}

body.theme-nordic .floating-contact-toggle:hover {
    background: #ffffff;
    color: #1a1a1c;
    border-color: #1a1a1c;
}

body.theme-nordic .floating-contact-container.active .floating-contact-toggle {
    background: #1a1a1c;
    color: #f2ede4;
    border-color: #1a1a1c;
}

body.theme-nordic .contact-menu-dropdown {
    background: rgba(248, 244, 237, 0.95);
    border-color: rgba(28, 28, 30, 0.1);
    box-shadow: 0 15px 35px rgba(28, 28, 30, 0.15);
}

body.theme-nordic .contact-item {
    background: rgba(28, 28, 30, 0.03);
    border-color: rgba(28, 28, 30, 0.05);
    color: rgba(28, 28, 30, 0.7);
}

body.theme-nordic .contact-item:hover {
    background: rgba(28, 28, 30, 0.06);
    color: #1a1a1c;
    border-color: rgba(28, 28, 30, 0.15);
}


/* Adjust split-panel text placement & visibility to not clash with center-content */
.hero-section .suite-panel .panel-content {
    position: absolute;
    bottom: 250px; /* pushed higher to avoid clashing with center booking CTAs */
    z-index: 10;
    transition: var(--transition-smooth);
}

.hero-section .suite-panel.suite-one .panel-content {
    left: 24px;
    align-items: flex-start;
    text-align: left;
}

.hero-section .suite-panel.suite-two .panel-content {
    right: 24px;
    align-items: flex-end;
    text-align: right;
}

@media (min-width: 768px) {
    .hero-section .suite-panel.suite-one .panel-content {
        left: 60px;
    }
    .hero-section .suite-panel.suite-two .panel-content {
        right: 60px;
    }
}

@media (max-width: 767px) {
    /* Stacked/aligned styling on mobile for split panels */
    .hero-section .suite-panel.suite-one .panel-content {
        left: 50%;
        transform: translateX(-50%);
        align-items: center;
        text-align: center;
        bottom: 155px; /* pushed lower to fit below Viber/IG buttons and above switcher */
    }
    
    .hero-section .suite-panel.suite-two .panel-content {
        right: 50%;
        transform: translateX(50%);
        align-items: center;
        text-align: center;
        bottom: 155px; /* pushed lower to fit below Viber/IG buttons and above switcher */
    }

    .hero-section.has-expanded-panel .hero-suite-navigation {
        display: none;
    }

    /* Hide decorative footer brands on mobile to prevent overlapping */
    .panel-footer-brand {
        display: none !important;
    }
}

/* Botanical Theme Adjustments */
body.theme-botanical .platform-link.google-reviews {
    border-color: rgba(0, 229, 195, 0.2);
}

body.theme-botanical .review-star {
    color: #7ed957;
}

body.theme-botanical .hero-suite-navigation {
    border-color: rgba(0, 229, 195, 0.15);
}

body.theme-botanical .cta-check-availability {
    box-shadow: 0 4px 15px rgba(0, 229, 195, 0.15);
}

/* Nordic Theme Adjustments (Light Mode) */
body.theme-nordic .platform-link.google-reviews {
    background: rgba(248, 244, 237, 0.8);
    border-color: rgba(28, 28, 30, 0.12);
    color: #1a1a1c;
}

body.theme-nordic .platform-link.google-reviews:hover {
    background: rgba(28, 28, 30, 0.08) !important;
    color: #1a1a1c !important;
}

body.theme-nordic .review-star {
    color: #96690f;
}

body.theme-nordic .hero-location-badge {
    color: #1a1a1c;
}

body.theme-nordic .hero-value-prop {
    color: rgba(28, 28, 30, 0.85);
}

body.theme-nordic .cta-check-availability {
    background: #1a1a1c !important;
    color: #f2ede4 !important;
    box-shadow: 0 4px 15px rgba(26, 26, 28, 0.25);
}

body.theme-nordic .cta-check-availability:hover {
    background: rgba(26, 26, 28, 0.85) !important;
}

body.theme-nordic .cta-view-suites {
    border-color: rgba(26, 26, 28, 0.3);
    color: #1a1a1c;
}

body.theme-nordic .booking-prompt {
    color: rgba(28, 28, 30, 0.6);
}

body.theme-nordic .whatsapp-btn-link {
    color: #1a1a1c;
}

body.theme-nordic .hero-suite-navigation {
    background: rgba(248, 244, 237, 0.85);
    border-color: rgba(28, 28, 30, 0.1);
    box-shadow: 0 4px 20px rgba(28, 28, 30, 0.12);
}

body.theme-nordic .suite-nav-btn {
    color: rgba(28, 28, 30, 0.6);
}

body.theme-nordic .suite-nav-btn:hover {
    color: #1a1a1c;
}

/* Direct Booking Channels Layout */
.direct-booking-channels {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.booking-channel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.booking-channel-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: #ffffff;
}

.booking-channel-btn svg {
    transition: transform 0.2s ease;
}

.booking-channel-btn:hover svg {
    transform: scale(1.15);
}

.whatsapp-channel svg {
    color: #25d366;
}

.viber-channel svg {
    color: #7360f2;
}

.instagram-channel svg {
    color: #e1306c;
}

/* Nordic Light Theme Adjustments for Booking Channel Buttons */
body.theme-nordic .booking-channel-btn {
    background: rgba(26, 26, 28, 0.05);
    border: 1px solid rgba(26, 26, 28, 0.1);
    color: #1a1a1c;
}

body.theme-nordic .booking-channel-btn:hover {
    background: rgba(26, 26, 28, 0.1);
    border-color: rgba(26, 26, 28, 0.2);
    color: #1a1a1c;
}

/* Floating Booking Platforms Badge Container */
.booking-platforms-container {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s ease;
}

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(10, 10, 11, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    padding: 10px 18px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    width: 150px; /* Equal width to ensure identical sizes */
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .booking-platforms-container {
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row; /* Horizontal row on mobile */
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: 95%;
        max-width: 440px;
    }
    
    .platform-link {
        padding: 8px 4px;
        font-size: 0.52rem;
        width: calc(33.333% - 4px); /* Equal widths in one row */
        letter-spacing: 0.02rem;
        gap: 4px;
    }

    
    .logo-title {
        font-size: 3.8rem;
        letter-spacing: 0.35rem;
        margin-right: -0.35rem;
    }
    
    .logo-subtitle {
        font-size: 1.05rem;
        letter-spacing: 0.5rem;
        margin-right: -0.5rem;
    }
    
    .hero-location-badge {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}

.platform-link.booking-com {
    border-color: rgba(0, 53, 128, 0.3);
}
.platform-link.booking-com:hover {
    background: #003580 !important; /* Booking.com corporate blue */
    color: #ffffff !important;
    border-color: #003580 !important;
}

.platform-link.google-reviews {
    border-color: rgba(223, 186, 107, 0.3);
}
.platform-link.google-reviews:hover {
    background: #dfba6b !important; /* Gold color */
    color: #000000 !important;
    border-color: #dfba6b !important;
}

.platform-link.airbnb {
    border-color: rgba(255, 90, 95, 0.3);
}
.platform-link.airbnb:hover {
    background: #FF5A5F !important; /* Airbnb brand red */
    color: #ffffff !important;
    border-color: #FF5A5F !important;
}

/* Nordic Light Theme Adjustments for Booking Platforms */
body.theme-nordic .platform-link {
    background: rgba(248, 244, 237, 0.85);
    border-color: rgba(28, 28, 30, 0.12);
    color: #1a1a1c;
}
body.theme-nordic .platform-link:hover {
    color: #ffffff !important;
}

/* Mobile Showroom Gallery inside Panels */
.mobile-showroom-gallery {
    display: none;
}

@media (max-width: 767px) {
    .hero-section .suite-panel.expanded .panel-content {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        padding-top: 15vh;
        padding-top: 15dvh;
        width: 100%;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 10;
        box-sizing: border-box;
    }

    .suite-panel.expanded .mobile-showroom-gallery {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 40px 16px 80px 16px;
        box-sizing: border-box;
    }
    
    .mobile-showroom-gallery img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .panel-book-now-btn {
        align-self: center;
        margin-top: 24px;
        padding: 14px 40px;
        font-size: 0.8rem;
        letter-spacing: 0.15rem;
        text-decoration: none;
        text-transform: uppercase;
        border-radius: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        transition: var(--transition-fast);
        width: 200px;
        text-align: center;
    }

    .suite-one .panel-book-now-btn {
        background: var(--accent-suite-1) !important;
        color: var(--text-dark) !important;
    }

    .suite-two .panel-book-now-btn {
        background: var(--accent-suite-2) !important;
        color: var(--text-dark) !important;
    }

}

/* Luxury Minimalist Preloader Overlay */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0b;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.8s cubic-bezier(0.85, 0, 0.15, 1), opacity 0.8s ease;
    will-change: transform, opacity;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.preloader-logo {
    font-family: var(--font-header);
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.5rem;
    margin-right: -0.5rem;
    color: #f5f5f7;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    animation: preloaderFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.4rem;
    margin-right: -0.4rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    animation: preloaderFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.preloader-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: preloaderLineGrow 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* Preloader Animations */
@keyframes preloaderFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes preloaderLineGrow {
    to {
        width: 120px;
    }
}

/* Reveal main page transition trigger */
body.loaded-page #preloader {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────────────────────── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger delay for children elements */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.active > * {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.6s; }

/* ── IMMERSIVE DETAIL PAGE LAYOUT ────────────────────────────── */
.detail-page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px 100px 24px;
}

/* Hero Section */
.room-showcase-section {
    padding: 20px 0 60px 0;
}

/* Middle Informational Section */
.detail-info-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    width: 100%;
}

/* Info Grid */
.info-columns-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
}

@media (max-width: 991px) {
    .info-columns-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Glassmorphic Amenity & Detail Cards */
.info-glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.info-glass-card:hover {
    transform: translateY(-4px);
}

.suite-one-theme .info-glass-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.suite-two-theme .info-glass-card:hover {
    border-color: rgba(94, 114, 128, 0.4);
}

/* Card Header */
.card-header-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Badges list */
.proximity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.proximity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.proximity-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.proximity-icon {
    font-size: 1.1rem;
}

.proximity-val {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: var(--text-secondary);
}

.suite-one-theme .proximity-val {
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.suite-two-theme .proximity-val {
    border: 1px solid rgba(94, 114, 128, 0.2);
}

/* Amenities Sub-grid */
.amenities-categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .amenities-categories-grid {
        grid-template-columns: 1fr;
    }
}

.amenity-category-item {
    padding: 20px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.amenity-category-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.amenity-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-category-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Host Info */
.host-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.host-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.suite-one-theme .host-avatar {
    border: 2px solid var(--suite-one-color);
}

.suite-two-theme .host-avatar {
    border: 2px solid var(--suite-two-color);
}

.host-meta h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.host-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section Header styling */
.detail-section-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    text-align: center;
}

.detail-section-main-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.detail-section-main-title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
}

.suite-one-theme .detail-section-main-title::after {
    background: var(--suite-one-color);
}

.suite-two-theme .detail-section-main-title::after {
    background: var(--suite-two-color);
}

/* Bottom Calendar Wrapper adjustments for scroll view */
.detail-booking-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-booking-section .calendar-widget-card {
    width: 100%;
    max-width: 650px;
    box-sizing: border-box;
}

/* ── CONTACT PAGE LAYOUT ──────────────────────────────────────── */
.contact-page-theme {
    background-color: var(--bg-dark);
}

.contact-main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 100px 24px;
}

.contact-section-container {
    margin-top: 40px;
}

.contact-grid-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.contact-map-column {
    display: flex;
    flex-direction: column;
}

.map-card-wrapper {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-card-wrapper iframe {
    flex-grow: 1;
    min-height: 380px;
}

.contact-details-column {
    display: flex;
    flex-direction: column;
}

.contact-link-address:hover {
    color: var(--text-primary) !important;
}

.contact-phone-number:hover {
    color: var(--accent-suite-1) !important;
}

.contact-action-buttons-grid .btn {
    padding: 12px 24px;
    width: 100%;
    transition: var(--transition-fast);
}

.contact-action-buttons-grid .whatsapp-action-btn:hover {
    background: #1ebe57 !important;
    border-color: #1ebe57 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.contact-action-buttons-grid .viber-action-btn:hover {
    background: #7360f2 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 96, 242, 0.25);
}

.contact-action-buttons-grid .instagram-action-btn:hover {
    background: #e1306c !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

/* Mobile Stacking for Contact grid */
@media (max-width: 991px) {
    .contact-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .map-card-wrapper iframe {
        min-height: 300px;
    }
}


