﻿/* ==========================================================================
   HOTEL VARN INN BY EPSILON - HAUTE COUTURE 5-STAR LUXURY STYLESHEET
   Inspired by Aman Resorts, Rosewood, Four Seasons & Awwwards Luxury Winners
   ========================================================================== */

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

:root {
    /* 5-Star Luxury Color Palette */
    --bg-base: #07090e;
    --bg-surface: #0d111a;
    --bg-surface-elevated: #121824;
    --bg-card: rgba(18, 24, 36, 0.72);
    --bg-card-hover: rgba(26, 34, 50, 0.9);
    --bg-glass: rgba(10, 14, 22, 0.75);
    
    /* Champagne & Imperial Gold Tokens */
    --gold: #d4af37;
    --gold-light: #f5e2b3;
    --gold-dark: #9e7b23;
    --gold-gradient: linear-gradient(135deg, #f7e6bc 0%, #d4af37 50%, #94711d 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(245, 226, 179, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    --gold-border: rgba(212, 175, 55, 0.24);
    --gold-border-bright: rgba(212, 175, 55, 0.55);
    --gold-glow: rgba(212, 175, 55, 0.3);

    /* Velvet Midnight Accents */
    --velvet-deep: #160c26;
    --velvet-royal: #2a1348;
    --velvet-accent: #6d28d9;

    /* High-Fashion Typography Colors */
    --text-primary: #f5f2eb;
    --text-secondary: #c5bfaa;
    --text-muted: #8e887a;
    --text-dim: #5c5850;
    --text-gold: #e2c058;

    /* Borders & Glass Dividers */
    --border-subtle: rgba(255, 255, 255, 0.07);
    --border-gold-subtle: rgba(212, 175, 55, 0.18);

    /* Typography Families */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'Cinzel', serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-luxury: 0.6s cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-luxury: 0 20px 50px -10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.12);
    --shadow-gold-glow: 0 0 35px rgba(212, 175, 55, 0.35);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Radial Glows (Subtle Luxury) */
body::before {
    content: '';
    position: fixed;
    top: -10%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: 15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(42, 19, 72, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   TYPOGRAPHY SYSTEM
   ========================================================================== */

.font-serif {
    font-family: var(--font-serif);
}

.font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
}

.font-italic {
    font-style: italic;
    font-family: var(--font-serif);
}

.text-gold {
    color: var(--gold);
}

.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 680px;
    line-height: 1.7;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

/* ==========================================================================
   TOP BAR & NAVIGATION HEADER
   ========================================================================== */

.top-bar {
    background: rgba(5, 7, 11, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
    font-size: 0.8rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.top-bar-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 8px var(--gold);
    animation: pulseDot 2s infinite ease-in-out;
}

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

.top-bar-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-link {
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    transition: color var(--transition-fast);
}

.top-bar-link:hover {
    color: var(--gold-light);
}

/* Main Frosted Header */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-gold-subtle);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
}

/* Brand Crest */
.brand-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.1;
}

.brand-byline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-top: 0.15rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.4rem 0;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ==========================================================================
   LUXURY BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #07090e;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    font-weight: 700;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    border: 1px solid var(--gold-border-bright);
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.78rem;
}

/* ==========================================================================
   CINEMATIC HERO & ARCHITECTURAL BOOKING BAR
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 7rem 1.5rem 6rem;
    background: radial-gradient(circle at center, rgba(13, 17, 26, 0.3) 0%, rgba(7, 9, 14, 0.95) 100%);
    overflow: hidden;
}

.hero-bg-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.42) contrast(1.15);
    transform: scale(1.03);
    animation: kenBurnsZoom 24s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1.03) translate(0, 0); }
    100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.5) 0%, rgba(7, 9, 14, 0.3) 50%, rgba(7, 9, 14, 0.98) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge-crown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--gold-border-bright);
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--gold-light);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 500;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
    font-weight: 300;
}

/* THE ARCHITECTURAL BOOKING BAR */
.booking-bar-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1120px;
    margin: -3.5rem auto 4rem;
    padding: 0 1.5rem;
}

.booking-bar-card {
    background: rgba(13, 17, 26, 0.88);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid var(--gold-border-bright);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.12);
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
}

.booking-bar-field {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border-subtle);
    padding-right: 1.25rem;
}

.booking-bar-field:last-of-type {
    border-right: none;
}

.booking-field-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.booking-field-input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    width: 100%;
}

.booking-field-input option {
    background: #0d111a;
    color: #fff;
}

/* ==========================================================================
   CURATOR'S NOTE & THE ESSENCE (EDITORIAL)
   ========================================================================== */

.editorial-section {
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-subtle);
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.editorial-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--gold-border);
}

.editorial-image-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.editorial-image-frame:hover img {
    transform: scale(1.03);
}

.editorial-badge-float {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(7, 9, 14, 0.9);
    border: 1px solid var(--gold-border-bright);
    backdrop-filter: blur(15px);
    padding: 1.25rem 1.75rem;
    border-radius: 6px;
    text-align: center;
}

.editorial-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 500;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1.5rem;
}

.editorial-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-weight: 300;
}

/* Key Stats Strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin: 4rem 0;
    text-align: center;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-desc {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* ==========================================================================
   SUITES & SANCTUARIES (MAGAZINE CARDS)
   ========================================================================== */

.suites-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-base) 0%, #0a0e17 50%, var(--bg-base) 100%);
    border-bottom: 1px solid var(--border-subtle);
}

.suite-card-magazine {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--bg-card);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-smooth);
}

.suite-card-magazine:hover {
    border-color: var(--gold-border-bright);
    box-shadow: var(--shadow-luxury);
    transform: translateY(-4px);
}

.suite-photo-wrap {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.suite-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

.suite-card-magazine:hover .suite-photo-wrap img {
    transform: scale(1.05);
}

.suite-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(7, 9, 14, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-border-bright);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.suite-details-wrap {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suite-class-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.suite-title {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.suite-specs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.85rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 1.25rem;
}

.suite-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.amenity-pill {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    margin: 0 0.35rem 0.5rem 0;
}

.suite-pricing-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.suite-rate-num {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.suite-rate-period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   DISTINCTIVE EXPERIENCES (BANQUETS, ROOFTOP, POOL, DINING)
   ========================================================================== */

.experiences-section {
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

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

.experience-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 460px;
    border: 1px solid var(--gold-border);
    box-shadow: var(--shadow-subtle);
    transition: all var(--transition-luxury);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-luxury);
}

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

.experience-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 14, 0.1) 0%, rgba(7, 9, 14, 0.6) 50%, rgba(7, 9, 14, 0.95) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.experience-tag {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    margin-bottom: 0.5rem;
}

.experience-title {
    font-family: var(--font-serif);
    font-size: 1.85rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.experience-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

/* ==========================================================================
   FOOTER (EDITORIAL LUXURY)
   ========================================================================== */

.main-footer {
    background: #040609;
    border-top: 1px solid var(--border-gold-subtle);
    padding: 5rem 0 2rem;
    color: var(--text-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.35rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.35rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 340px;
    color: var(--text-secondary);
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MODAL BACKDROP & BOOKING DRAWER
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(5, 7, 11, 0.88);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: #0d111a;
    border: 1px solid var(--gold-border-bright);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    box-shadow: var(--shadow-luxury);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.35s ease;
}

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

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--gold);
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.04);
}

/* Floating WhatsApp Concierge */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-smooth);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

/* Toast System */
.luxury-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: #0d111a;
    border: 1px solid var(--gold);
    color: #fff;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    box-shadow: var(--shadow-luxury);
    z-index: 10000;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Responsive Adaptations */
@media (max-width: 1024px) {
    .booking-bar-card {
        grid-template-columns: 1fr 1fr;
    }
    .booking-bar-field {
        border-right: none;
    }
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .suite-card-magazine {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .booking-bar-card {
        grid-template-columns: 1fr;
    }
    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


