/* 
==================================================
  DESIGN SYSTEM: Elata Aparts Skhidnytsia
  STYLE: Ultra-Premium Luxury / Editorial Serifs / Satin Gold & Alabaster
  CREATIVE DIRECTION: Elite, Atmospheric, Cinematic Responsive Experience
==================================================
*/

/* --- Google Fonts Integration --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@200;300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* --- Custom Font Declarations --- */
@font-face {
    font-family: 'Museo Cyrl';
    src: local('Museo Cyrl Regular'), local('MuseoCyrl-Regular');
}

@font-face {
    font-family: 'Strogo';
    src: url('Strogo-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* --- Design Tokens --- */
:root {
    /* Color Palette */
    --clr-alabaster: #FAF8F5;    /* Warm alabaster cream */
    --clr-champagne: #C5A880;    /* Satin champagne gold */
    --clr-gold-light: #E6D3B8;   /* Soft highlight gold */
    --clr-gold-dark: #9E835B;    /* Rich shadow gold */
    --clr-obsidian: #0A0C0E;     /* Swapped: Primary deep obsidian black background */
    --clr-charcoal: #FAF8F5;     /* Swapped: Primary warm cream text color */
    --clr-milk: #131619;         /* Swapped: Lighter graphite dark card background */
    --clr-ivory: #070809;        /* Swapped: Midnight deep black secondary background */
    --clr-glass: rgba(10, 12, 14, 0.75); /* Swapped: dark glassmorphism */

    /* Semantic Variables */
    --bg-primary: var(--clr-obsidian);
    --bg-secondary: var(--clr-milk);
    --bg-dark: var(--clr-ivory);
    --text-primary: var(--clr-charcoal);
    --text-secondary: rgba(250, 248, 245, 0.7);
    --text-inverse: #111416;     /* Deep slate black contrast text */
    --accent-color: var(--clr-champagne);
    --accent-hover: var(--clr-gold-light);

    /* Layout & Borders */
    --container-width: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Typography */
    --base-font-size: 18px;
    --base-line-height: 1.7;
    --h1-size: 5rem;
    --h2-size: 3.4rem;
    --h3-size: 2.2rem;
    --btn-padding: 1.1rem 2.8rem;

    /* Animations & Shadows */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-premium-hover: 0 25px 60px rgba(0, 0, 0, 0.75);
}

/* --- Base & Reset Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Elite Selection Color */
::selection {
    background-color: var(--clr-gold-light);
    color: var(--clr-obsidian);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

/* --- Typography System --- */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3 {
    font-size: var(--h3-size);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.badge {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    background: linear-gradient(120deg, 
        #9E835B 0%, 
        #C5A880 25%, 
        #E6D3B8 50%, 
        #C5A880 75%, 
        #9E835B 100%
    );
    background-size: 400% 100%;
    color: var(--clr-milk);
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 20px rgba(158, 131, 91, 0.25);
    position: relative;
    overflow: hidden;
    animation: goldenShimmer 8s infinite linear;
}

/* Metallic Light Reflection Sheen Sweeping Sweep */
.badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: sheenSweep 4.5s infinite ease-in-out;
}

@keyframes goldenShimmer {
    0% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

@keyframes sheenSweep {
    0% { left: -150%; }
    30% { left: 150%; }
    100% { left: 150%; }
}

/* --- Dynamic Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: var(--h2-size);
    margin-bottom: 1rem;
}

.section-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    text-transform: uppercase;
}

/* --- Brand Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 1.2s cubic-bezier(0.85, 0, 0.15, 1);
}

.preloader.preloader-hidden {
    transform: translateY(-100%);
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.preloader-logo {
    height: 110px;
    width: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(197, 168, 128, 0.3);
    padding: 6px;
    background: var(--clr-milk);
    box-shadow: var(--shadow-premium);
    animation: luxuriousGlow 3s infinite ease-in-out;
}

.preloader-title {
    font-size: 1.8rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-gold-light) 50%, var(--clr-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2.5s infinite ease-in-out;
}

.preloader-bar-container {
    width: 180px;
    height: 1px;
    background: rgba(197, 168, 128, 0.15);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-top: 0.5rem;
}

.preloader-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(to right, transparent, var(--clr-champagne), transparent);
    animation: loadingBar 2.2s infinite ease-in-out;
}

.preloader-status {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.6;
}

@keyframes luxuriousGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(197, 168, 128, 0.1); }
    50% { transform: scale(1.04); box-shadow: 0 15px 40px rgba(197, 168, 128, 0.25); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes loadingBar {
    0% { left: -50%; width: 40%; }
    50% { left: 30%; width: 60%; }
    100% { left: 100%; width: 40%; }
}

/* --- Premium Buttons --- */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--btn-padding);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    text-indent: 0.18em;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-champagne) 50%, var(--clr-gold-dark) 100%);
    background-size: 200% auto;
    color: var(--clr-milk) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(158, 131, 91, 0.22);
}

/* Metallic shimmer glow */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.8s ease-in-out;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 160%;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(158, 131, 91, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary) !important;
    border: 1.5px solid var(--clr-champagne);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: var(--clr-champagne);
    color: #111416 !important;
    border-color: var(--clr-champagne);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 168, 128, 0.35);
}

/* --- Frosted-Glass Navbar --- */
.navbar {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid transparent;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 96px;
    transition: var(--transition-smooth);
}

.navbar.scrolled,
.navbar.menu-open {
    background: rgba(10, 12, 14, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.navbar.shrunk .nav-container {
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.logo img {
    height: 58px;
    width: 58px;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid var(--clr-champagne);
    padding: 2px;
    background: var(--clr-milk);
    transition: var(--transition-smooth);
}

.logo-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-size: 1.45rem;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-gold-light) 50%, var(--clr-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-top: 3px;
    color: var(--clr-gold-dark);
    opacity: 0.95;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a:not(.btn-primary) {
    text-decoration: none;
    color: var(--clr-charcoal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    transition: var(--transition-smooth);
    opacity: 0.85;
    position: relative;
    padding-bottom: 6px;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: linear-gradient(to right, var(--clr-gold-dark), var(--clr-gold-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:not(.btn-primary):hover {
    opacity: 1;
    color: var(--clr-gold-dark);
}

.nav-links a:not(.btn-primary):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border-radius: var(--radius-sm);
}

/* --- Cinematic Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--clr-alabaster);
    padding-top: 96px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08) translateZ(0);
    transition: opacity 2s ease-in-out, transform 7s linear;
}

/* Active slide with Ken Burns effect - bright under light overlay */
.hero-slides img.active {
    opacity: 1;
    transform: scale(1.01) translateZ(0);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Elegant premium dark overlay - micro-tuned to be slightly darker for optimal text contrast */
    background: linear-gradient(to bottom, 
                rgba(10, 12, 14, 0.6) 0%, 
                rgba(10, 12, 14, 0.35) 40%, 
                rgba(10, 12, 14, 0.75) 100%);
    z-index: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    text-align: center;
    color: var(--text-primary);
}

.hero-title-static {
    font-family: 'Cormorant Garamond', serif;
    font-size: var(--h1-size);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-title-static br {
    display: block;
}

/* Custom Luxury SVG Divider */
.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 2.2rem;
    max-width: 480px;
    width: 100%;
    opacity: 0.85;
}

.divider-line {
    height: 1px;
    flex: 1;
}

.divider-line.left {
    background: linear-gradient(to left, var(--clr-champagne), rgba(197, 168, 128, 0.05));
}

.divider-line.right {
    background: linear-gradient(to right, var(--clr-champagne), rgba(197, 168, 128, 0.05));
}

.divider-rhombus {
    width: 8px;
    height: 8px;
    background: var(--clr-champagne);
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.8);
}

.divider-dot {
    width: 4px;
    height: 4px;
    background: var(--clr-champagne);
    border-radius: 50%;
}

.hero-content p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-style: italic;
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 680px;
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1rem;
}

/* --- Split & Editorial Sections --- */
.split-section {
    padding: 7.5rem 0;
    background-color: var(--bg-primary);
}

.split-section.alt-bg {
    background-color: var(--bg-secondary);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.5rem;
    align-items: center;
}

.split-content h2 {
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.split-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--clr-champagne);
}

.split-content p {
    font-size: 1.12rem;
    line-height: 1.85;
    margin-bottom: 1.8rem;
}

/* Editorial Frame for Images */
.split-image {
    position: relative;
}

.split-image::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1.5px solid var(--clr-champagne);
    z-index: 0;
    transition: var(--transition-smooth);
    border-radius: calc(var(--radius-md) + 12px);
    pointer-events: none;
}

.split-image img {
    width: 100%;
    height: 560px; /* Restored back to original taller height to show full photo details */
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.split-image:hover::after {
    transform: scale(1.025);
    border-color: var(--clr-gold-dark);
}

.reverse .split-content {
    order: 2;
}

.reverse .split-image {
    order: 1;
}

/* --- Elite Rooms Showroom --- */
.rooms-section {
    padding: 7.5rem 0;
    background-color: var(--bg-primary);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.room-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.room-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    pointer-events: none;
    z-index: 5;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium-hover);
}

.room-card:hover::after {
    border-color: var(--clr-champagne);
}

.room-card-image-wrap {
    overflow: hidden;
    position: relative;
    height: 270px;
}

.room-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: zoom-in;
}

.room-card:hover img {
    transform: scale(1.08);
}

/* Luxury capacity stamp */
.room-capacity-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: rgba(17, 20, 22, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.room-capacity-badge svg {
    width: 12px;
    height: 12px;
    stroke: var(--clr-champagne);
}

.room-info {
    padding: 2.2rem;
}

.room-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    min-height: auto;
}

.room-price {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--clr-gold-dark);
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
}

.room-info p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Room Card Actions */
.room-actions {
    margin-top: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.room-actions .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.room-actions-row {
    display: flex;
    gap: 0.6rem;
}

.btn-room-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.65rem 1rem;
    font-size: 0.82rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.4);
    background: transparent;
    color: var(--clr-charcoal);
}

.btn-room-outline svg {
    stroke: var(--clr-gold-dark);
    transition: var(--transition-smooth);
}

.btn-room-outline:hover {
    border-color: var(--clr-gold-dark);
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--text-primary);
}

.btn-room-outline:hover svg {
    transform: scale(1.1);
}

/* Inspector actions in booking wizard */
.inspector-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.8rem;
}

.inspector-btn-row {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.8rem;
    width: 100%;
}

.btn-inspector-outline {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(197, 168, 128, 0.45);
    background: transparent;
    color: var(--clr-charcoal);
}

.btn-inspector-outline svg {
    stroke: var(--clr-gold-dark);
    transition: var(--transition-smooth);
}

.btn-inspector-outline:hover {
    border-color: var(--clr-gold-dark);
    background-color: rgba(197, 168, 128, 0.08);
    color: var(--text-primary);
}

.btn-inspector-outline:hover svg {
    transform: scale(1.1);
}

/* Decorative sections header image */
.decorative-section-img {
    width: 110px;
    height: auto;
    margin: -7rem auto 2.5rem;
    display: block;
    position: relative;
    z-index: 5;
    opacity: 0.85;
}

/* Luxurious Amenities container */
.amenities-container {
    background-color: var(--bg-secondary);
    padding: 4rem;
    border-radius: var(--radius-md);
    box-shadow: inset 0 0 40px rgba(197, 168, 128, 0.05);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.amenities-container h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.amenities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}

.amenities-list li {
    font-size: 1.05rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.amenity-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.amenity-check svg {
    width: 10px;
    height: 8px;
    fill: none;
    stroke: var(--clr-gold-dark);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* --- Asymmetric Landscapes Gallery --- */
.split-section.alt-bg.side-decorated {
    background-color: var(--bg-secondary);
}

.triple-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4.5rem;
}

.triple-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

/* Asymmetric vertical offset */
.triple-card:nth-child(2) {
    transform: translateY(30px);
}

.triple-card img {
    height: 480px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 0;
    transition: var(--transition-smooth);
}

.triple-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-premium-hover);
}

.triple-card:nth-child(2):hover {
    transform: translateY(20px) scale(1.02);
}

/* --- Elite Dynamic Photo Carousel --- */
.gallery-section {
    padding: 7.5rem 0;
    background-color: var(--bg-primary);
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 12, 14, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--clr-champagne);
    border: 1px solid rgba(197, 168, 128, 0.35);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--clr-obsidian);
    color: var(--clr-milk);
    border-color: var(--clr-obsidian);
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev-btn {
    left: -20px;
}

.carousel-btn.next-btn {
    right: -20px;
}

.photo-carousel {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 3rem;
    padding-top: 1rem;
    padding-left: 12vw;
    padding-right: 12vw;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    user-select: none;
}

.photo-carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
}

.photo-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 88%;
    max-width: 640px;
    height: 440px;
    scroll-snap-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    position: relative;
    /* GPU-accelerated transition for buttery smooth flow */
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(5px);
    opacity: 0.5;
    transform: scale(0.9);
    will-change: transform, filter, opacity;
}

.carousel-item.is-adjacent {
    filter: blur(2px);
    opacity: 0.8;
    transform: scale(0.96);
}

.carousel-item.is-active {
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: var(--shadow-premium-hover);
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(197, 168, 128, 0.25);
    border-radius: var(--radius-lg);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-smooth);
}

.carousel-item.is-active::after {
    opacity: 1;
    border-color: var(--clr-champagne);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 60%;
        height: 480px;
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 50%;
        max-width: 800px;
        height: 520px;
    }
    .carousel-btn.prev-btn { left: 40px; }
    .carousel-btn.next-btn { right: 40px; }
}

/* --- Glassmorphism Additional Services --- */
.services-section {
    padding: 7.5rem 0;
    background-color: var(--bg-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}

.service-card {
    background: rgba(19, 22, 25, 0.6);
    border: 1px solid rgba(197, 168, 128, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3rem 2.2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    background: var(--bg-secondary);
    border-color: var(--clr-champagne);
    box-shadow: var(--shadow-premium-hover);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.12);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.8rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap {
    background: var(--clr-obsidian);
    transform: scale(1.08);
}

.service-icon-wrap svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: var(--clr-gold-dark);
    stroke-width: 1.5;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrap svg {
    stroke: var(--clr-milk);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

/* --- Spacious Editorial Reviews --- */
.reviews {
    padding: 7.5rem 0;
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.reviews-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    display: block;
}

.reviews-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Vertical fading mask: blends smoothly with adjacent dark sections */
    background: linear-gradient(
        to bottom,
        var(--bg-primary) 0%,
        rgba(10, 12, 14, 0.75) 20%,
        rgba(10, 12, 14, 0.75) 80%,
        var(--bg-primary) 100%
    );
    z-index: 1;
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.reviews .review-card {
    background-color: rgba(19, 22, 25, 0.7); /* Elite graphite glassmorphism */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 2.8rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(197, 168, 128, 0.25);
    overflow: hidden;
    z-index: 2;
}

/* Luxury Watermark quote */
.review-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 11rem;
    line-height: 1;
    color: var(--clr-champagne);
    opacity: 0.12;
    font-style: italic;
    pointer-events: none;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium-hover);
    border-color: var(--clr-champagne);
}

.review-stars {
    color: var(--clr-champagne);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    position: relative;
    z-index: 2;
}

.review-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2.2rem;
    font-size: 1.08rem;
    position: relative;
    z-index: 2;
}

.review-author {
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    padding-top: 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--clr-gold-dark);
    font-size: 0.98rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- High-End Location Map --- */
.location-section {
    padding: 7.5rem 0;
    background-color: var(--bg-secondary);
}

.location-info h2 {
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 1rem;
}

.location-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--clr-champagne);
}

.nearby-list {
    list-style: none;
    margin-top: 2rem;
}

.nearby-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.nearby-pin {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.nearby-pin svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--clr-champagne);
    stroke-width: 2;
}

.nearby-list li strong {
    font-weight: 500;
    color: var(--text-primary);
}

.location-map {
    position: relative;
}

.location-map::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 1.5px solid var(--clr-champagne);
    border-radius: calc(var(--radius-lg) + 12px);
    z-index: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.location-map:hover::after {
    transform: scale(1.015);
    border-color: var(--clr-gold-dark);
}

.location-map iframe {
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-premium-hover);
    border-radius: var(--radius-lg);
}

/* --- High-Contrast Luxurious Footer --- */
.footer {
    background-color: var(--bg-dark);
    color: rgba(250, 248, 245, 0.7);
    padding: 0;
    position: relative;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.fresco-container {
    height: 240px;
    width: 100%;
    background-image: url('fresco_footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    opacity: 0.15;
    margin-bottom: 1rem;
    filter: sepia(100%) hue-rotate(5deg) brightness(85%) contrast(120%);
}

.footer .container {
    padding-bottom: 4rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding-top: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: rgba(250, 248, 245, 0.55);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--clr-champagne);
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--clr-milk);
    text-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

/* --- Pulse Contact Widget & Frosted Dock --- */
.floating-contact {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.contact-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-gold-dark) 0%, var(--clr-champagne) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(158, 131, 91, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    animation: pulsateBtn 2.4s infinite ease-in-out;
}

@keyframes pulsateBtn {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(158, 131, 91, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(197, 168, 128, 0.75), 0 0 45px rgba(197, 168, 128, 0.35);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(158, 131, 91, 0.4);
    }
}

.contact-btn:hover {
    transform: scale(1.12);
    background: var(--clr-obsidian);
    border-color: var(--clr-champagne);
}

.chat-icon {
    width: 28px;
    height: 28px;
    stroke: var(--clr-milk);
    stroke-width: 1.8px;
    transition: var(--transition-smooth);
}

.contact-btn:hover .chat-icon {
    stroke: var(--clr-champagne);
}

/* Frosted glass popup dock */
.contact-popup {
    background: rgba(10, 12, 14, 0.95) !important; /* Premium deep black/obsidian background */
    border: 1px solid rgba(197, 168, 128, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    text-align: left;
    transition: var(--transition-smooth);
    opacity: 1;
    transform: translateY(0);
    width: 310px;
}

.contact-popup.hidden {
    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;
}

.contact-popup p {
    margin-bottom: 1.2rem;
    font-size: 0.78rem;
    color: var(--clr-gold-dark);
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--clr-charcoal) !important;
    font-size: 1.05rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.contact-item svg {
    stroke: var(--clr-champagne);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    color: var(--clr-gold-dark) !important;
    transform: translateX(5px);
}

.contact-item:hover svg {
    stroke: var(--clr-gold-light);
    transform: scale(1.1);
}

/* --- High-End Side Decorations --- */
.side-decorated {
    position: relative;
    overflow: hidden;
}

.side-decoration {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: auto;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    color: var(--clr-champagne);
    filter: opacity(0.12) drop-shadow(0 0 10px rgba(197, 168, 128, 0.4));
    transition: all 3s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-decorated .container {
    position: relative;
    z-index: 1;
}

.deco-left {
    left: -180px;
}

.deco-right {
    right: -180px;
}

.side-decorated.active .deco-left {
    opacity: 1;
    left: 20px;
}

.side-decorated.active .deco-right {
    opacity: 1;
    right: 20px;
}

#rooms .side-decoration {
    width: 220px;
    transition-duration: 4.5s;
}

#services .side-decoration {
    width: 160px;
    transition-duration: 4.5s;
}

#landscape .side-decoration {
    width: 360px;
    top: 60%;
}

#about .side-decoration {
    width: 360px;
    height: 520px;
    top: 30%;
    transition-duration: 4.5s;
}

@media (max-width: 1400px) {
    .side-decoration {
        display: none !important;
    }
}

/* --- Elite Booking Card & Forms --- */
.booking-section {
    position: relative;
    padding: 0;
    min-height: 850px;
    display: flex;
    align-items: center;
    background-color: var(--bg-primary);
    overflow: hidden;
}

.booking-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.booking-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 12, 14, 0.15) 0%, rgba(10, 12, 14, 0.92) 100%);
}

.booking-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-flex {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
    width: 100%;
}

.booking-card-wrapper {
    width: 100%;
    max-width: 560px;
}

.booking-card {
    background: var(--bg-secondary);
    padding: 4.5rem 3.8rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(197, 168, 128, 0.22);
}

.booking-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--clr-obsidian);
}

.booking-card .booking-label {
    display: block;
    color: var(--clr-gold-dark);
    font-weight: 700;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.booking-card p {
    color: var(--text-secondary);
    margin-bottom: 2.8rem;
    font-size: 1.08rem;
}

.booking-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.booking-form label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select {
    padding: 1.1rem;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.98rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-smooth);
    width: 100%;
    box-sizing: border-box;
}

.booking-form input::placeholder {
    opacity: 0.45;
    color: var(--text-secondary);
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--clr-champagne);
    background: var(--bg-secondary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.25);
}

.booking-form .btn-submit {
    width: 100%;
    margin-top: 1.2rem;
    padding: 1.2rem;
    border-radius: var(--radius-sm);
}

/* --- High-Fidelity Modals --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

#bookingModal {
    align-items: flex-start !important;
    padding-top: 2.5vh !important;
}

#imageModal {
    z-index: 150000 !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 20, 22, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    z-index: 1;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 45px 120px rgba(0, 0, 0, 0.35);
    animation: modalAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    scrollbar-width: none;
}

.modal-container::-webkit-scrollbar {
    display: none;
}

@keyframes modalAppear {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: rgba(250, 248, 245, 0.55);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close:hover {
    color: var(--clr-champagne);
    transform: scale(1.15) rotate(90deg);
}

.modal .booking-card {
    border-radius: var(--radius-lg);
    box-shadow: none;
    border: 1px solid rgba(197, 168, 128, 0.25);
}

body.modal-open {
    overflow: hidden;
}

/* --- Flatpickr Styling Overrides --- */
.flatpickr-calendar {
    background: #ffffff !important; /* Clean premium white background as requested */
    border: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
    border-radius: var(--radius-md) !important;
    font-family: 'Outfit', sans-serif !important;
    z-index: 9999999 !important;
}

.flatpickr-calendar,
.flatpickr-months .flatpickr-month,
.flatpickr-current-month,
.flatpickr-current-month input.cur-year,
.flatpickr-weekday,
.flatpickr-day {
    color: #111416 !important; /* Deep contrast dark text for high legibility on white */
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
    color: #111416 !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    fill: #111416 !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected {
    background: var(--clr-champagne) !important;
    border-color: var(--clr-champagne) !important;
    color: #111416 !important; /* Elegant dark contrast on signature gold background */
}

/* Soft hover state for calendar days */
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
    background: rgba(197, 168, 128, 0.18) !important;
    border-color: transparent !important;
    color: #111416 !important;
}

/* Beautiful soft champagne range highlight */
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange {
    background: rgba(197, 168, 128, 0.12) !important;
    border-color: transparent !important;
    color: #111416 !important;
}

.flatpickr-day.custom-blocked-date,
.flatpickr-day.custom-blocked-date:hover {
    text-decoration: line-through !important;
    color: #df4747 !important;
    background: rgba(223, 71, 71, 0.08) !important;
    opacity: 0.65 !important;
}

.flatpickr-day.flatpickr-disabled:not(.custom-blocked-date),
.flatpickr-day.flatpickr-disabled:not(.custom-blocked-date):hover {
    color: rgba(17, 20, 22, 0.25) !important; /* Clearly muted gray text for past dates */
    text-decoration: none !important;
}

/* --- Hamburger Menu & Mobile Dropdown Base Styles --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 16px;
    padding: 0;
    z-index: 10000;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--clr-gold-dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-toggle-wrap {
    display: none;
}

.mobile-nav-dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 12, 14, 0.98);
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    display: none;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 9998;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-dropdown a {
    text-decoration: none;
    color: var(--clr-charcoal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    padding: 1.1rem 2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.mobile-nav-dropdown a:last-child {
    border-bottom: none;
}

.mobile-nav-dropdown a:hover {
    color: var(--clr-gold-dark);
    opacity: 1;
    padding-left: 2.5rem; /* Sleek slide-right on hover */
}

/* ==================================================
   ELITE 2-STEP BOOKING WIZARD STYLING
================================================== */
.booking-wizard-container {
    max-width: 1200px !important; /* Elegant wide luxury frame */
    width: 70vw !important; /* Occupies exactly 70% of the screen width */
    min-width: min(950px, 95vw) !important; /* Prevent shrinking and keep both steps identical in width */
    max-height: 97vh !important; /* Expanded more top and bottom */
    overflow-y: auto !important; /* Allow scroll if needed on short viewports, hides scrollbar via webkit rules */
}

.wizard-card {
    padding: 1.2rem 2.2rem !important; /* Elegant compact luxury padding */
}

.wizard-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.15);
    padding-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.wizard-steps-indicator {
    display: flex;
    gap: 1.5rem;
}

.step-indicator {
    font-size: 0.85rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    opacity: 0.5;
    position: relative;
    padding-bottom: 5px;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    opacity: 1;
    color: var(--clr-champagne);
}

.step-indicator.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--clr-champagne);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step 1: Two Column Layout */
.room-selector-layout {
    display: grid;
    grid-template-columns: 360px 1fr; /* Wider room list for elite visibility */
    gap: 2rem;
    align-items: start;
}

/* Left Panel: Mini Room Cards */
.rooms-mini-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.rooms-mini-list::-webkit-scrollbar {
    width: 6px;
}
.rooms-mini-list::-webkit-scrollbar-track {
    background: rgba(197, 168, 128, 0.03);
    border-radius: 4px;
}
.rooms-mini-list::-webkit-scrollbar-thumb {
    background: rgba(197, 168, 128, 0.25);
    border-radius: 4px;
}
.rooms-mini-list::-webkit-scrollbar-thumb:hover {
    background: rgba(197, 168, 128, 0.45);
}

.room-mini-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.12);
    cursor: pointer;
    transition: var(--transition-smooth);
    align-items: center;
}

.room-mini-card img {
    width: 68px;
    height: 68px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.room-mini-info h4 {
    font-size: 0.98rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 3px;
    color: var(--clr-champagne) !important;
}

.room-mini-price {
    font-size: 0.82rem;
    color: var(--clr-champagne);
    font-weight: 500;
}

.room-mini-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(28, 30, 32, 0.04);
    border-color: rgba(197, 168, 128, 0.3);
}

.room-mini-card.active {
    border-color: var(--clr-champagne);
    background: var(--bg-secondary);
    box-shadow: 0 6px 15px rgba(197, 168, 128, 0.12);
}

/* Right Panel: Inspector */
.room-inspector-panel {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 168, 128, 0.12);
    padding: 1.2rem;
    box-shadow: var(--shadow-premium);
}

.inspector-image-wrap {
    position: relative;
    height: 250px; /* Compact cinematic widescreen aspect ratio */
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.inspector-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center !important;
}

.inspector-capacity-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(17, 20, 22, 0.8);
    color: #ffffff;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(197, 168, 128, 0.3);
}

.inspector-info {
    margin-bottom: 0.8rem;
}

.inspector-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.inspector-title-row h3 {
    margin-bottom: 0;
    font-size: 1.45rem;
    color: var(--clr-champagne) !important;
}

.inspector-price-tag {
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--clr-champagne);
    font-weight: 500;
}

#inspectorDesc {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Inline Calendar styling */
.calendar-selection-panel {
    margin-top: 0.6rem;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 0.6rem;
    position: relative;
}

.calendar-label {
    display: block;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-gold-dark);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

/* Premium Side-by-Side Date Inputs */
.date-inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.date-input-col {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.date-input-label {
    font-size: 0.72rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--clr-champagne);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.date-input-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000 !important; /* Strict pure black background */
    border: 1px solid rgba(197, 168, 128, 0.25);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    height: 45px;
}

.date-input-col:hover .date-input-box {
    border-color: var(--clr-champagne) !important;
    background: #131619 !important; /* Graphite black on hover */
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.15);
}

.date-placeholder-val {
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth);
    color: var(--clr-champagne) !important;
    display: inline-block;
}

.date-placeholder-val.is-placeholder {
    opacity: 0.45; /* Beautifully translucent gold-white gradient for placeholder state */
    font-weight: 400;
}

.calendar-input-icon {
    width: 15px;
    height: 15px;
    color: var(--clr-champagne);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.date-input-col:hover .calendar-input-icon {
    opacity: 1;
    transform: scale(1.05);
}

/* --- Centered Calendar Popup and Overlay styles --- */
.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(17, 20, 22, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 109999;
    display: none;
}

.calendar-overlay.active {
    display: block !important;
}

.inline-calendar-wrapper {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 110000 !important;
    display: none !important;
    background: #ffffff !important; /* Premium white pop-up background */
    padding: 1rem !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid rgba(197, 168, 128, 0.3) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    animation: calendarAppear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.inline-calendar-wrapper:not(.hidden) {
    display: flex !important;
}

.inline-calendar-wrapper.hidden {
    display: none !important;
}

@keyframes calendarAppear {
    from {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* --- Rooms Mini List Actions --- */
.rooms-mini-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 360px;
}

/* Left action button container deleted */

/* --- Disabled Button State Overrides --- */
.btn-primary:disabled {
    background: rgba(197, 168, 128, 0.15) !important;
    color: rgba(250, 248, 245, 0.45) !important;
    border: 1px solid rgba(197, 168, 128, 0.15) !important;
    box-shadow: none !important;
    cursor: not-allowed;
    transform: none !important;
    opacity: 0.7;
}

.btn-primary:disabled::before {
    display: none !important;
}

/* Inline Calendar Override */
.inline-calendar-wrapper .flatpickr-calendar.inline {
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    max-width: 320px !important;
}

.date-recap {
    margin-top: 0.6rem;
    text-align: center;
    background: var(--bg-secondary);
    padding: 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 168, 128, 0.08);
}

.date-recap-text {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-primary);
}

.inspector-actions {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
}

.inspector-actions button {
    width: 240px; /* Spacious and elegant desktop action button */
    padding: 1.1rem 0 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.15em !important;
    text-indent: 0.15em !important;
}

/* Step 2 Form Styling */
.booking-wizard-step2-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: stretch; /* Stretch both columns to match height */
    margin-bottom: 2rem;
    min-height: 480px; /* Keep height stable and premium, matching Step 1 */
}

.wizard-card .booking-form .form-group {
    margin-bottom: 1.2rem;
    gap: 0.5rem;
}

.wizard-card .booking-form label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wizard-card .booking-form input,
.wizard-card .booking-form select {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition-smooth);
    height: 46px;
    width: 100%;
    box-sizing: border-box;
}

.wizard-card .guests-split-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
}

.booking-summary-recap {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    box-shadow: var(--shadow-premium);
}

.booking-summary-recap h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.1);
    padding-bottom: 0.6rem;
}

.recap-room-card {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.recap-room-card img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 8px;
}

.recap-room-details h5 {
    font-size: 1.1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--clr-champagne) !important;
}

#recapRoomPrice {
    font-size: 0.88rem;
    color: var(--clr-champagne);
    font-weight: 500;
}

.recap-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.recap-info-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.recap-info-item strong {
    color: var(--text-primary);
    font-weight: 500;
}

.recap-total-row {
    border-top: 1px dashed rgba(197, 168, 128, 0.3);
    padding-top: 0.8rem;
    margin-top: 0.4rem;
}

.recap-total-row .recap-info-label {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-primary);
}

.recap-total-row strong {
    font-size: 1.3rem;
    color: var(--clr-champagne);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}

.wizard-actions-step2 {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(197, 168, 128, 0.12);
    padding-top: 1.2rem;
    margin-top: 1.2rem;
}

.wizard-actions-step2 button {
    min-width: 145px;
    padding: 0.9rem 2rem !important;
    font-size: 0.9rem;
}

/* --- Height-based scaling for smaller PC/laptop viewports --- */
@media (min-width: 769px) and (max-height: 850px) {
    .booking-wizard-container {
        max-height: 98vh !important;
    }
    
    .wizard-card {
        padding: 1.2rem 1.8rem !important;
    }
    
    .wizard-header {
        margin-bottom: 0.8rem;
        padding-bottom: 0.5rem;
    }
    
    .room-selector-layout {
        gap: 1.2rem;
    }
    
    .rooms-mini-list-container {
        width: 300px;
    }
    
    .room-selector-layout {
        grid-template-columns: 300px 1fr;
    }
    
    .room-mini-card {
        padding: 0.5rem 0.8rem;
        gap: 0.8rem;
        border-radius: 8px;
    }
    
    .room-mini-card img {
        width: 50px;
        height: 50px;
    }
    
    .room-mini-info h4 {
        font-size: 0.88rem;
    }
    
    .room-mini-price {
        font-size: 0.75rem;
    }
    
    .room-inspector-panel {
        padding: 0.8rem;
    }
    
    .inspector-image-wrap {
        height: 280px;
        margin-bottom: 0.5rem;
    }
    
    .inspector-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    .inspector-info {
        margin-bottom: 0.5rem;
    }
    
    .inspector-title-row {
        margin-bottom: 0.4rem;
    }
    
    .inspector-title-row h3 {
        font-size: 1.2rem;
    }
    
    .inspector-price-tag {
        font-size: 0.95rem;
    }
    
    #inspectorDesc {
        font-size: 0.82rem;
        line-height: 1.4;
    }
    
    .calendar-selection-panel {
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }
    
    .calendar-label {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }
    
    .date-inputs-row {
        gap: 0.6rem;
        margin-bottom: 0.4rem;
    }
    
    .date-input-box {
        height: 38px;
        padding: 0.4rem 0.8rem;
        background: #000000 !important;
    }
    
    .date-placeholder-val {
        font-size: 0.85rem;
        display: inline-block;
    }
    
    .date-recap {
        margin-top: 0.4rem;
        padding: 0.4rem;
    }
    
    .date-recap-text {
        font-size: 0.85rem;
    }
    
    .inspector-actions {
        margin-top: 0.5rem;
    }
    
    .inspector-actions button {
        width: 100%;
        padding: 0.8rem 0 !important;
        font-size: 0.88rem !important;
    }
    
    /* Step 2 Form Styling */
    .booking-wizard-step2-grid {
        gap: 1.5rem;
        margin-bottom: 1.2rem;
        min-height: 380px; /* Stable height on shorter desktop viewports */
    }
    
    .wizard-card .booking-form .form-group {
        margin-bottom: 0.8rem;
    }
    
    .wizard-card .booking-form input,
    .wizard-card .booking-form select {
        height: 38px;
        padding: 0.5rem 0.8rem;
        font-size: 0.88rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .booking-summary-recap {
        padding: 1rem;
    }
    
    .booking-summary-recap h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.4rem;
    }
    
    .recap-room-card {
        margin-bottom: 0.8rem;
        gap: 0.8rem;
    }
    
    .recap-room-card img {
        width: 70px;
        height: 50px;
    }
    
    .recap-room-details h5 {
        font-size: 0.95rem;
    }
    
    .recap-info-list {
        gap: 0.5rem;
    }
    
    .recap-info-item {
        font-size: 0.85rem;
    }
    
    .recap-total-row strong {
        font-size: 1.15rem;
    }
    
    .wizard-actions-step2 {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }
    
    .wizard-actions-step2 button {
        min-width: 120px;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem;
    }
}

/* --- Massive Responsive Polish --- */
@media (max-width: 1024px) {
    :root {
        --h1-size: 3.8rem;
        --h2-size: 2.6rem;
        --h3-size: 1.8rem;
        --base-font-size: 17px;
    }

    .container {
        padding: 0 1.8rem;
    }

    .split-grid {
        gap: 3.5rem;
    }

    .split-image img {
        height: 480px;
    }
}

@media (max-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .booking-section {
        flex-direction: column;
        min-height: auto;
        padding: 4rem 0;
    }

    .booking-bg-image {
        position: relative;
        width: 100%;
        height: 340px;
    }

    .booking-bg-image::after {
        background: linear-gradient(to bottom, rgba(10, 12, 14, 0) 0%, rgba(10, 12, 14, 1) 100%);
    }

    .booking-card-wrapper {
        max-width: 100%;
        padding: 0 1.8rem;
        margin-top: -60px;
    }

    .booking-card {
        padding: 3.5rem 2.2rem;
    }

    .reverse .split-content {
        order: 1;
    }

    .reverse .split-image {
        order: 2;
    }

    .triple-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .triple-card:nth-child(2) {
        transform: translateY(0);
    }
    
    .triple-card img {
        height: 380px;
    }
}

.scroll-hint,
.mini-list-pagination {
    display: none;
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.6rem;
        --h2-size: 2.1rem;
        --h3-size: 1.6rem;
        --base-font-size: 16px;
        --btn-padding: 0.95rem 2.2rem;
    }

    .container {
        padding: 0 1.2rem;
    }

    .split-section,
    .rooms-section,
    .services-section,
    .reviews,
    .location-section,
    .gallery-section {
        padding: 4.5rem 0;
    }

    .navbar {
        position: fixed !important;
        width: 100% !important;
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid transparent !important;
        transition: var(--transition-smooth) !important;
    }

    .navbar.scrolled,
    .navbar.menu-open {
        background: rgba(10, 12, 14, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1.5px solid rgba(197, 168, 128, 0.25) !important;
    }

    .nav-container {
        height: 70px !important;
        transition: var(--transition-smooth) !important;
    }

    .logo img {
        height: 46px;
        width: 46px;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .logo-subtitle {
        font-size: 0.58rem;
        letter-spacing: 0.22em;
    }

    .nav-links {
        display: none !important;
    }

    .mobile-menu-toggle-wrap {
        display: flex !important;
        align-items: center;
        gap: 1.2rem;
    }

    .menu-toggle {
        display: flex !important;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-dropdown {
        display: flex !important;
    }

    .mobile-nav-dropdown.active {
        max-height: 350px;
        padding: 1rem 0;
        opacity: 1;
    }

    .mobile-booking-btn {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.76rem !important;
        letter-spacing: 0.12em !important;
    }

    .hero {
        height: auto !important;
        min-height: 100vh;
        padding-top: 110px !important;
        padding-bottom: 40px !important;
        display: flex;
        align-items: center;
    }

    .decorative-section-img {
        margin: 1.5rem auto 1.5rem !important;
        z-index: 10 !important;
    }

    .booking-card {
        padding: 2.2rem 1.5rem !important;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
    }

    .hero .badge {
        display: inline-block !important;
        padding: 0.7rem 1.15rem !important;
        font-size: 0.7rem !important;
        margin-bottom: 1.3rem !important;
        letter-spacing: 0.18em !important;
    }

    .hero-title-static {
        font-size: 2.4rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.25 !important;
    }

    .premium-divider {
        margin-bottom: 1.2rem !important;
    }

    .hero-content p {
        font-size: 1.15rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.8rem !important;
        padding: 0 0.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.9rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-actions a {
        width: 100%;
    }

    .split-image img {
        height: 320px;
    }

    .split-image::after {
        display: none;
    }

    .amenities-container {
        padding: 2.2rem 1.5rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .location-map::after {
        display: none;
    }

    .location-map iframe {
        height: 320px;
    }

    .location-info .btn-primary,
    .location-info .btn-secondary {
        width: 100% !important;
        margin-top: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
    }

    .contact-btn {
        width: 52px;
        height: 52px;
    }

    .chat-icon {
        width: 22px;
        height: 22px;
    }

    .contact-popup {
        width: calc(100vw - 40px);
        padding: 1.5rem;
    }

    #imageModal .modal-container {
        max-width: 95vw !important;
    }

    /* Mobile Swipers and Grids */
    .triple-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding: 0.5rem 0.2rem 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .triple-grid::-webkit-scrollbar {
        display: none;
    }
    .triple-card {
        flex: 0 0 85% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }
    .triple-card img {
        height: 250px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .review-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.2rem !important;
        padding: 0.5rem 0.2rem 1.5rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .review-grid::-webkit-scrollbar {
        display: none;
    }
    .review-card {
        flex: 0 0 90% !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .service-card {
        padding: 1.5rem 1rem !important;
        text-align: center !important;
    }
    .service-card h3 {
        font-size: 1.1rem !important;
        margin-top: 0.5rem !important;
    }
    .service-card p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }

    /* Booking Wizard Mobile Layout */
    .booking-wizard-container {
        max-width: 380px !important; /* Extremely snug, premium mobile overlay card */
        width: 92vw !important;
        max-height: 88vh !important; /* Centered nicely, sitting safely above browser navigation bars */
        overflow-y: auto !important; /* Allow scroll so that forms and buttons are fully reachable */
        border-radius: var(--radius-lg) !important;
        margin: auto !important;
    }
    
    .wizard-card {
        padding: 0.8rem 0.65rem 4.5rem 0.65rem !important; /* Extra bottom padding so buttons can scroll above browser limits */
    }

    .wizard-header {
        margin-bottom: 0.6rem;
        border-bottom: 1px solid rgba(197, 168, 128, 0.12);
        padding-bottom: 0.4rem;
    }
    
    .wizard-header .booking-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.12em !important;
    }

    .wizard-steps-indicator {
        width: 100%;
        margin-top: 0.4rem;
        gap: 0.4rem;
        justify-content: space-between;
    }

    .step-indicator {
        font-size: 0.65rem !important;
    }

    .rooms-mini-list-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .room-selector-layout {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .rooms-mini-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 0.6rem !important;
        max-height: none !important;
        padding: 0.2rem 6% 0.5rem 6% !important;
        scrollbar-width: none !important;
        width: 100% !important;
    }

    .rooms-mini-list::-webkit-scrollbar {
        display: none !important;
    }

    .scroll-hint {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 0.64rem !important;
        font-weight: 600;
        color: var(--clr-champagne) !important;
        letter-spacing: 0.05em;
        margin-bottom: 0.35rem !important;
        text-transform: uppercase;
        opacity: 0.85;
        animation: pulseScrollHint 2s infinite ease-in-out;
    }

    @keyframes pulseScrollHint {
        0%, 100% { opacity: 0.65; transform: translateY(0); }
        50% { opacity: 1; transform: translateY(-1px); }
    }

    .room-mini-card {
        flex: 0 0 88% !important;
        scroll-snap-align: center !important;
        padding: 0.45rem 0.6rem !important;
        border: 1px solid rgba(197, 168, 128, 0.15) !important;
        background: var(--clr-milk) !important;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
        gap: 0.55rem !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }

    .room-mini-card.active {
        border-color: var(--clr-champagne) !important;
        background: var(--bg-secondary) !important;
        box-shadow: 0 5px 12px rgba(197, 168, 128, 0.08) !important;
    }

    .room-mini-card img {
        width: 42px !important;
        height: 42px !important;
        border-radius: 6px !important;
        object-fit: cover !important; /* NEVER SQUASH OR STRETCH */
        flex-shrink: 0 !important;
    }

    .room-mini-info {
        min-width: 0 !important;
        flex: 1 !important;
    }

    .room-mini-info h4 {
        font-size: 0.8rem !important;
        margin-bottom: 1px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .room-mini-price {
        font-size: 0.72rem !important;
    }

    .room-inspector-panel {
        padding: 0.6rem !important; /* Compact panel */
        border-radius: var(--radius-md) !important;
        background: var(--clr-milk) !important;
    }

    /* Dynamically hide details when calendar is open on mobile to keep everything perfectly static and fit */
    .room-inspector-panel.calendar-active .inspector-details {
        display: none !important;
    }

    .inspector-image-wrap {
        height: 200px !important; /* Beautiful taller aspect ratio (not squashed) */
        margin-bottom: 0.4rem !important;
        width: 100% !important;
        border-radius: var(--radius-md) !important;
        overflow: hidden !important;
    }

    .inspector-image-wrap img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; /* NEVER SQUASH OR STRETCH */
        object-position: center !important;
    }

    .inspector-title-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.1rem !important;
    }

    .inspector-title-row h3 {
        font-size: 1.05rem !important;
        margin-bottom: 0 !important;
    }

    .inspector-price-tag {
        font-size: 0.85rem !important;
    }

    #inspectorDesc {
        font-size: 0.76rem !important;
        line-height: 1.35 !important;
        margin-top: 0.3rem !important;
    }

    .calendar-selection-panel {
        margin-top: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .calendar-label {
        font-size: 0.58rem !important;
        letter-spacing: 0.06em !important;
        margin-bottom: 0.3rem !important;
    }

    .date-inputs-row {
        grid-template-columns: 1fr !important; /* Stack vertically, one under the other */
        gap: 0.4rem !important;
        margin-bottom: 0.3rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .date-input-col {
        gap: 0.2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .date-input-label {
        font-size: 0.58rem !important;
    }

    .date-input-box {
        height: 34px !important; /* Sleek compact box */
        padding: 0.2rem 0.4rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: #000000 !important;
    }

    .date-placeholder-val {
        font-size: 0.78rem !important;
        display: inline-block !important;
    }

    .calendar-input-icon {
        width: 12px !important;
        height: 12px !important;
    }

    .date-recap {
        margin-top: 0.3rem !important;
        padding: 0.35rem !important;
    }

    .date-recap-text {
        font-size: 0.78rem !important;
    }

    .inline-calendar-wrapper {
        padding: 0.4rem;
        margin-bottom: 0.4rem;
    }

    /* Make Flatpickr extremely compact on mobile */
    .flatpickr-calendar {
        width: 270px !important;
        font-size: 0.8rem !important;
    }
    .flatpickr-days {
        width: 270px !important;
    }
    .dayContainer {
        width: 270px !important;
        min-width: 270px !important;
        max-width: 270px !important;
    }
    .flatpickr-day {
        max-width: 35px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 0.78rem !important;
    }

    .inspector-actions {
        display: flex !important;
        justify-content: center !important; /* Center the narrow button */
        margin-top: 0.4rem !important;
        margin-bottom: 1.5rem !important; /* Clearance space at the bottom */
    }

    .mini-list-pagination {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.35rem !important;
        margin-top: 0.2rem !important;
        margin-bottom: 0.3rem !important;
        width: 100% !important;
    }

    .pagination-bullet {
        width: 14px !important;
        height: 3px !important;
        background: rgba(197, 168, 128, 0.25) !important;
        border-radius: 2px !important;
        transition: width 0.15s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.15s ease, box-shadow 0.15s ease !important;
        cursor: pointer !important;
    }

    .pagination-bullet.active {
        width: 24px !important;
        background: var(--clr-champagne) !important;
        box-shadow: 0 0 6px rgba(197, 168, 128, 0.4) !important;
    }

    .inspector-actions button {
        width: 190px !important; /* Narrow but spacious enough for letters */
        padding: 0.65rem 0 !important; /* Compact vertical padding */
        font-size: 0.82rem !important;
        letter-spacing: 0.1em !important; /* Fit text on single line */
        text-indent: 0.1em !important;
        white-space: nowrap !important;
    }

    /* Step 2 Form Styles on Mobile */
    .booking-form .form-group {
        margin-bottom: 0.6rem !important;
        gap: 0.3rem !important;
    }

    .booking-form label {
        font-size: 0.62rem !important;
        letter-spacing: 0.04em !important;
    }

    .booking-form input,
    .booking-form select {
        padding: 0.6rem 0.8rem !important;
        font-size: 0.85rem !important;
        height: 38px !important; /* Sleek compact fields */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .booking-wizard-step2-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem;
        min-height: auto !important; /* Let height adapt naturally on mobile */
    }

    .guests-split-row {
        gap: 0.5rem !important;
    }

    .booking-summary-recap {
        padding: 0.8rem !important;
        margin-top: 0.5rem !important;
        border-radius: var(--radius-md) !important;
    }

    .booking-summary-recap h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
        padding-bottom: 0.3rem !important;
    }

    .recap-room-card {
        margin-bottom: 0.8rem !important;
        gap: 0.6rem !important;
    }
    
    .recap-room-card img {
        width: 50px !important;
        height: 38px !important;
        border-radius: 4px !important;
    }

    .recap-room-details h5 {
        font-size: 0.85rem !important;
    }

    #recapRoomPrice {
        font-size: 0.72rem !important;
    }

    .recap-info-list {
        gap: 0.4rem !important;
    }

    .recap-info-item {
        font-size: 0.78rem !important;
    }

    .recap-total-row {
        padding-top: 0.5rem !important;
        margin-top: 0.2rem !important;
    }

    .recap-total-row .recap-info-label {
        font-size: 0.82rem !important;
    }

    .recap-total-row strong {
        font-size: 0.95rem !important;
    }
    
    .wizard-actions-step2 {
        margin-top: 1rem !important;
        padding-top: 0.8rem !important;
        gap: 0.6rem !important;
        margin-bottom: 1.5rem !important; /* Clearance space at the bottom */
    }

    .wizard-actions-step2 button {
        min-width: 90px !important;
        padding: 0.75rem 0 !important;
        font-size: 0.8rem !important;
    }
}

/* Styling for Info Modal Popup */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 20, 22, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 110000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.info-modal-content {
    background-color: var(--bg-secondary);
    border: 1px solid rgba(197, 168, 128, 0.3);
    border-top: 4px solid var(--clr-champagne); /* Luxury gold top line */
    border-radius: var(--radius-md);
    padding: 3rem 2.5rem;
    max-width: 480px;
    max-height: 90vh; /* Set maximum height to fit screen */
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-premium-hover);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden; /* Clips the top border to match the card's rounded corners */
    position: relative;
    display: flex;
    flex-direction: column;
}

.info-modal.active .info-modal-content {
    transform: translateY(0);
}

.info-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--clr-gold-dark);
    padding: 5px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.info-modal-close:hover {
    background-color: rgba(197, 168, 128, 0.1);
    color: var(--clr-obsidian);
}

.info-modal-icon {
    display: none !important; /* Hide circle icon as requested */
}

.info-modal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--clr-gold-dark);
}

.info-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    flex-shrink: 0; /* Keep title static */
}

.info-modal-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--clr-charcoal);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    white-space: pre-wrap; /* Preserve list item line breaks and emoji layout */
    text-align: left; /* Align left for clean readability of list indices */
    overflow-y: scroll; /* Force scrollbar container display on mobile browsers */
    -webkit-overflow-scrolling: touch; /* Butter-smooth momentum scrolling on iOS */
    flex-grow: 1; /* Take up remaining height */
    padding-right: 10px; /* Thinner padding for thinner scrollbar */
    
    /* Ultra-smooth multi-stop luxury gold gradient mask to fade text out beautifully */
    mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.3) 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 65%, rgba(0, 0, 0, 0.3) 90%, transparent 100%);
}

/* Beautiful customized premium gold scrollbar for details modal */
.info-modal-content p::-webkit-scrollbar {
    width: 4px !important; /* Thinner gold scrollbar */
    display: block !important;
}
.info-modal-content p::-webkit-scrollbar-track {
    background: rgba(197, 168, 128, 0.08) !important;
    border-radius: 4px !important;
}
.info-modal-content p::-webkit-scrollbar-thumb {
    background: var(--clr-gold-dark) !important; /* Richer gold color for solid mobile visibility */
    border-radius: 4px !important;
}
.info-modal-content p::-webkit-scrollbar-thumb:hover {
    background: var(--clr-champagne) !important;
}

.info-modal-btn {
    width: 100%;
}

/* Custom styling for gallery mode inside the info modal */
.info-modal-content.is-gallery {
    max-width: 1000px;
    width: 95%;
    padding: 3.5rem 2.5rem 2.5rem;
}

/* Carousel Container */
.gallery-carousel-container {
    position: relative;
    width: 100%;
    margin: 1.5rem 0 0.5rem;
}

/* Viewport */
.gallery-carousel-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    background-color: #111416;
}

/* Scroll Track with CSS Scroll Snap */
.gallery-carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide default scrollbars */
    -ms-overflow-style: none;
}
.gallery-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Gallery Item Carousel Override */
.gallery-carousel-track .gallery-item {
    flex: 0 0 100%;
    width: 100%;
    aspect-ratio: 16/10;
    max-height: 55vh;
    scroll-snap-align: center;
    border-radius: 0;
    border: none;
    box-shadow: none;
    cursor: zoom-in;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.gallery-carousel-track .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Show the entire, complete original image without cropping */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-carousel-track .gallery-item:hover img {
    transform: scale(1.05);
}

/* Navigation Buttons (Glassmorphic) */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(17, 20, 22, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(197, 168, 128, 0.3);
    color: var(--clr-milk);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10;
    padding: 0;
}

.carousel-nav-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    stroke-width: 2.5;
}

.carousel-nav-btn.prev {
    left: 1rem;
}
.carousel-nav-btn.next {
    right: 1rem;
}

.carousel-nav-btn:hover {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold-dark);
    color: var(--clr-obsidian);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.carousel-nav-btn.prev:hover svg {
    transform: translateX(-2px);
}
.carousel-nav-btn.next:hover svg {
    transform: translateX(2px);
}

.carousel-nav-btn:active {
    transform: translateY(-50%) scale(0.92);
}

/* Carousel Indicators (Premium Pill Dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(197, 168, 128, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--clr-gold);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .gallery-carousel-track .gallery-item {
        aspect-ratio: 4/3;
        max-height: 45vh;
    }
    
    .carousel-nav-btn {
        width: 36px;
        height: 36px;
    }
    .carousel-nav-btn.prev {
        left: 0.5rem;
    }
    .carousel-nav-btn.next {
        right: 0.5rem;
    }
}

/* Keeps general helper classes */
.hidden {
    display: none !important;
}

/* Fullscreen Lightbox Carousel Enhancements */
.lightbox-container {
    max-width: 90vw !important;
    width: auto;
    position: relative;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-viewport {
    position: relative;
    max-height: 80vh;
    width: 80vw;
    max-width: 1050px;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(197, 168, 128, 0.25);
    background-color: #0b0c0e;
}

.lightbox-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.lightbox-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.lightbox-slide img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Lightbox Navigation Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: rgba(10, 12, 14, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--clr-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 110;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lightbox-nav-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.lightbox-nav-btn.prev {
    left: 25px;
}
.lightbox-nav-btn.next {
    right: 25px;
}

.lightbox-nav-btn:hover {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold-light);
    color: var(--clr-obsidian);
    box-shadow: 0 0 20px rgba(197, 168, 128, 0.6);
}

.lightbox-nav-btn.prev:hover svg {
    transform: translateX(-3px);
}
.lightbox-nav-btn.next:hover svg {
    transform: translateX(3px);
}

.lightbox-nav-btn:active {
    transform: translateY(-50%) scale(0.9);
}

/* Lightbox Footer Pagination Dots */
.lightbox-footer {
    width: 100%;
    max-width: 500px;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.lightbox-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
    z-index: 10;
    flex-wrap: wrap;
    max-width: 90vw;
}

.lightbox-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(197, 168, 128, 0.25);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-dot:hover {
    background-color: rgba(197, 168, 128, 0.6);
    transform: scale(1.2);
}

.lightbox-dot.active {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold-light);
    transform: scale(1.6);
    box-shadow: 0 0 12px rgba(197, 168, 128, 0.85);
}

.lightbox-indicator {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--clr-gold-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    opacity: 0.85;
}

/* Responsive Rules for Lightbox */
@media (max-width: 1024px) {
    .lightbox-container {
        width: 95vw !important;
    }
    
    .lightbox-viewport {
        width: 85vw;
        aspect-ratio: auto;
        height: 60vh;
    }
    
    .lightbox-nav-btn.prev {
        left: 20px;
    }
    .lightbox-nav-btn.next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .lightbox-nav-btn {
        width: 44px;
        height: 44px;
    }
    .lightbox-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    .lightbox-nav-btn.prev {
        left: 15px;
    }
    .lightbox-nav-btn.next {
        right: 15px;
    }
    .lightbox-viewport {
        width: 95vw;
        height: 60vh !important;
        max-height: 70vh;
        aspect-ratio: auto;
    }
    .lightbox-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    .lightbox-slide img.horizontal-contain {
        width: auto !important;
        height: auto !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        transform: scale(1.15) !important;
    }
}

/* --- Gallery Slide-Up Descriptions --- */
.carousel-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-top: none;
    padding: 1.5rem 1.8rem 1.8rem;
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    pointer-events: none;
    text-align: left;
}

.carousel-item.is-active .carousel-description {
    transform: translateY(0);
}

.carousel-description h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.95), 0 1px 2px rgba(0,0,0,0.95), 0 0 10px rgba(0,0,0,0.5);
}

.carousel-description p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #ffffff; /* Changed to pure white as requested */
    margin: 0;
    line-height: 1.45;
    text-shadow: 0 1.5px 3px rgba(0,0,0,0.95), 0 0.5px 1.5px rgba(0,0,0,0.95), 0 0 8px rgba(0,0,0,0.5);
}

/* --- Mobile Aspect Ratio Fix --- */
@media (max-width: 767px) {
    .carousel-item {
        flex: 0 0 85% !important;
        height: 330px !important; /* Increased from 240px to display larger images as requested */
    }
    
    .carousel-description {
        padding: 1.1rem 1.3rem !important;
    }
    
    .carousel-description h4 {
        font-size: 1.05rem !important;
        margin-bottom: 0.25rem !important;
    }
    
    .carousel-description p {
        font-size: 0.78rem !important;
        line-height: 1.35 !important;
    }
}

/* --- Premium In-App Browser Detour Overlay --- */
.in-app-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 8, 9, 0.95); /* Deep obsidian dark cover */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: opacity 0.5s ease;
}

.in-app-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    display: none !important;
}

.in-app-modal {
    background: rgba(19, 22, 25, 0.85); /* Graphite glassmorphism */
    border: 1px solid rgba(197, 168, 128, 0.35); /* Gold Champagne border */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-premium-hover);
    max-width: 460px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    animation: modalSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.in-app-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.in-app-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid var(--clr-champagne);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.8rem;
}

.in-app-logo h3 {
    font-family: 'Cinzel', serif;
    color: var(--clr-champagne);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.in-app-title {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.in-app-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.8rem;
}

.in-app-steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    text-align: left;
    background: rgba(10, 12, 14, 0.4);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 168, 128, 0.15);
}

.in-app-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-num {
    background: var(--clr-champagne);
    color: var(--clr-obsidian);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.in-app-step p {
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--clr-charcoal);
    margin: 0;
}

.in-app-step strong {
    color: #ffffff;
    font-weight: 600;
}

.in-app-footer {
    margin-top: 2rem;
    font-size: 0.78rem;
    color: var(--clr-champagne);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


    50% {
        transform: translateY(6px);
        opacity: 0.95;
    }
}






/* Custom styling for room card image hover link to booking modal */
.room-card-image-wrap img {
    cursor: pointer !important;
}

/* Success Booking Modal Styling */
.success-modal-container {
    max-width: 540px !important;
    padding: 3rem 2.2rem !important;
    text-align: center;
    background: var(--bg-secondary) !important;
    border: 1px solid rgba(197, 168, 128, 0.25) !important;
    box-shadow: var(--shadow-premium) !important;
    border-radius: var(--radius-lg) !important;
    animation: modalSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-wrap {
    margin: 0 auto 1.5rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(39, 174, 96, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #27ae60;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.15);
}

.success-check-icon {
    width: 36px;
    height: 36px;
    color: #27ae60;
}

.success-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff !important;
    margin-bottom: 0.5rem;
}

.success-booking-id {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--clr-champagne);
    margin-bottom: 0.8rem;
}

.success-booking-id strong {
    font-weight: 600;
    color: #ffffff;
    background: rgba(197, 168, 128, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    margin-left: 4px;
}

.success-booking-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.success-telegram-section {
    background: rgba(17, 20, 22, 0.4);
    border: 1px dashed rgba(197, 168, 128, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.success-telegram-section h4 {
    font-size: 1.05rem;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.success-telegram-section p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.4;
}

.btn-telegram-track {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem !important;
    border-radius: 50px !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.05em !important;
    text-transform: none !important;
    font-weight: 600 !important;
    background: #0088cc !important;
    border: 1px solid #0088cc !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.25) !important;
    transition: var(--transition-smooth) !important;
}

.btn-telegram-track:hover {
    background: #0099e6 !important;
    border-color: #0099e6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4) !important;
}

@media (max-width: 576px) {
    .success-modal-container {
        padding: 2.2rem 1.2rem !important;
        margin: 0 1rem;
    }
    .success-modal-content h3 {
        font-size: 1.5rem;
    }
    .success-booking-desc {
        font-size: 0.85rem;
    }
    .success-telegram-section {
        padding: 1rem;
    }
}

