/*
Theme Name: Purple Key Theme
Theme URI: https://purplekey.in/
Author: Antigravity
Author URI: https://deepmind.google/
Description: Luxury Private Stays & Romantic Surprise Rooms in Sector 22, Rohini, New Delhi.
Version: 1.1.0
Text Domain: purplekey
*/

/* ==========================================
   PURPLE KEY HOTEL — LUXURY DESIGN SYSTEM
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap');

:root {
    /* Core Color Palette */
    --bg-dark: #0b0414;
    --bg-surface: #140924;
    --bg-card: rgba(28, 14, 48, 0.75);
    --bg-card-hover: rgba(42, 22, 71, 0.85);
    
    /* Luxury Gold Gradients & Accents */
    --gold-primary: #D4AF37;
    --gold-light: #F5E6AB;
    --gold-dark: #A37C1E;
    --gold-gradient: linear-gradient(135deg, #F5E6AB 0%, #D4AF37 50%, #A37C1E 100%);
    --gold-glow: rgba(212, 175, 55, 0.35);
    
    /* Romance & Surprise Accents */
    --rose-accent: #E84A5F;
    --rose-light: #FF758C;
    --rose-gradient: linear-gradient(135deg, #FF758C 0%, #E84A5F 100%);
    --rose-glow: rgba(232, 74, 95, 0.4);
    
    /* Violet Glassmorphism */
    --purple-primary: #8B5CF6;
    --purple-light: #C4B5FD;
    --purple-glow: rgba(139, 92, 246, 0.25);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-hover: rgba(212, 175, 55, 0.6);
    
    /* Functional UI Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #E2D9F3;
    --text-muted: #9E8FB9;
    --whatsapp-green: #25D366;
    --whatsapp-hover: #1DA851;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
    
    /* Spacing & Radii */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
    --shadow-deep: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* Reset & Basic Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography Utilities */
.serif-heading {
    font-family: var(--font-serif);
}

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

.rose-text {
    color: var(--rose-light);
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 4, 20, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 42px;
    width: auto;
    filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.5px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

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

.nav-cta {
    background: var(--gold-gradient);
    color: #120524 !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px var(--gold-glow);
}

.nav-cta::after {
    display: none;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   HERO & BOOKING CENTER CONSOLE
   ========================================== */
.hero-section {
    position: relative;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/hero_room.png');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: blur(4px);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 4, 20, 0.7) 0%, #0b0414 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    color: var(--gold-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

/* ==========================================
   BOOKING CONSOLE CARD & TABS
   ========================================== */
.booking-console {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-deep);
    position: relative;
    overflow: hidden;
}

.booking-console::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
}

/* Stay Option Switcher Tabs */
.stay-tabs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: rgba(15, 6, 28, 0.8);
    padding: 0.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin-bottom: 2.5rem;
}

.stay-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 1.5rem;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.stay-tab i {
    font-size: 1.3rem;
}

.stay-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.stay-tab.active[data-stay="private"] {
    background: var(--gold-gradient);
    color: #120524;
    box-shadow: var(--shadow-gold);
}

.stay-tab.active[data-stay="surprise"] {
    background: var(--rose-gradient);
    color: #FFFFFF;
    box-shadow: 0 10px 30px var(--rose-glow);
}

.tab-tagline {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.85;
    display: block;
}

/* Console Section Headers */
.step-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--gold-gradient);
    color: #120524;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
}

/* Step 1: Room Selector Grid */
.room-selector-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.room-card {
    background: rgba(20, 9, 36, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.room-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-4px);
    background: rgba(35, 17, 60, 0.75);
}

.room-card.selected {
    border: 2px solid var(--gold-primary);
    background: rgba(45, 20, 78, 0.85);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.room-card.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 26px;
    height: 26px;
    background: var(--gold-gradient);
    color: #120524;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.room-card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.badge-executive {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple-light);
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.badge-bathtub {
    background: rgba(232, 74, 95, 0.2);
    color: var(--rose-light);
    border: 1px solid rgba(232, 74, 95, 0.4);
}

.room-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.room-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.room-feature-tag {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.06);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.room-feature-tag i {
    color: var(--gold-primary);
}

/* Step 2: Duration Selector Chips (3h, 6h, 12h, 24h) */
.duration-selector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.duration-chip {
    background: rgba(20, 9, 36, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.duration-chip:hover {
    border-color: var(--gold-light);
    background: rgba(35, 17, 60, 0.7);
}

.duration-chip.selected {
    border: 2px solid var(--gold-primary);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(35, 17, 60, 0.9) 100%);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.duration-hours {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1.2;
}

.duration-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
}

.duration-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.duration-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 0.3rem;
}

/* Step 3: Surprise & Romance Add-ons (Shown only for Surprise Room tab) */
.surprise-addons-container {
    margin-bottom: 2.5rem;
    padding: 1.75rem;
    background: rgba(232, 74, 95, 0.06);
    border: 1px solid rgba(232, 74, 95, 0.25);
    border-radius: var(--radius-lg);
    display: none; /* Dynamic visibility via JS */
    animation: fadeIn 0.4s ease-in-out;
}

.surprise-addons-container.active {
    display: block;
}

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

.addons-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.addons-title {
    color: var(--rose-light);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.addon-card {
    background: rgba(20, 9, 36, 0.7);
    border: 1px solid rgba(232, 74, 95, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.addon-card:hover {
    border-color: var(--rose-light);
    background: rgba(35, 17, 60, 0.85);
}

.addon-card.selected {
    border: 2px solid var(--rose-light);
    background: rgba(232, 74, 95, 0.15);
    box-shadow: 0 4px 15px var(--rose-glow);
}

.addon-icon {
    font-size: 1.8rem;
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.addon-price {
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 700;
}

.addon-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--rose-accent);
    cursor: pointer;
}

/* Step 4: Check-in Details & Price Summary Footer */
.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.input-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.input-field {
    background: rgba(15, 6, 28, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.input-field:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

select.input-field option {
    background: #140924;
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Live Pricing Summary & Book Button */
.summary-bar {
    background: rgba(12, 5, 22, 0.9);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 1.5rem;
}

.summary-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.summary-item {
    display: flex;
    flex-direction: column;
}

.summary-item-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item-val {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
}

.summary-total {
    display: flex;
    flex-direction: column;
}

.summary-total-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.summary-total-price {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.book-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    transition: var(--transition);
}

.book-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #28E16D 0%, #15A090 100%);
}

.book-btn-whatsapp i {
    font-size: 1.4rem;
}

/* ==========================================
   FEATURES & CONFIDENTIALITY SECTION
   ========================================== */
.features-section {
    padding: 6rem 1.5rem;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.25;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.75rem;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-gold);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem auto;
    color: var(--gold-light);
    font-size: 1.6rem;
}

.feature-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==========================================
   GALLERY SHOWCASE SECTION
   ========================================== */
.gallery-section {
    padding: 6rem 1.5rem;
    background: rgba(15, 6, 28, 0.6);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 4, 20, 0.95) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0.9;
    transition: var(--transition);
}

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

.gallery-caption {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ==========================================
   LOCATION & CONTACT SECTION
   ========================================== */
.location-section {
    padding: 6rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.location-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.location-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-item i {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.location-item-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.location-item-text p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.map-frame-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 320px;
}

.map-frame-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background: #07020d;
    border-top: 1px solid var(--glass-border);
    padding: 4rem 1.5rem 2rem 1.5rem;
    color: var(--text-muted);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-desc {
    font-size: 0.92rem;
    max-width: 360px;
    line-height: 1.6;
}

.footer-links-title {
    color: var(--gold-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.88rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: var(--transition);
}

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

/* ==========================================
   RESPONSIVE MEDIA QUERIES (MOBILE OPTIMIZED)
   ========================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .location-card-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 5.5rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-header {
        margin-bottom: 1.2rem;
    }

    .location-badge {
        font-size: 0.72rem;
        padding: 0.25rem 0.75rem;
        margin-bottom: 0.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.35rem;
    }

    .hero-subtitle {
        font-size: 0.88rem;
        line-height: 1.35;
    }

    .booking-console {
        padding: 1rem 0.85rem;
        border-radius: 18px;
    }

    .stay-tabs-container {
        display: flex;
        gap: 0.4rem;
        padding: 0.3rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .stay-tab {
        flex: 1;
        padding: 0.6rem 0.4rem;
        font-size: 0.88rem;
        gap: 0.35rem;
        border-radius: 8px;
        flex-direction: column;
        text-align: center;
    }

    .stay-tab i {
        font-size: 1.1rem;
    }

    .tab-tagline {
        font-size: 0.65rem;
        line-height: 1.1;
        opacity: 0.8;
    }

    .step-heading {
        font-size: 0.98rem;
        margin-bottom: 0.6rem;
        margin-top: 0.4rem;
        gap: 0.5rem;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    /* Step 1: Side-by-Side Compact Room Cards */
    .room-selector-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .room-card {
        padding: 0.7rem 0.6rem;
        border-radius: 10px;
    }

    .room-card.selected::after {
        top: 0.4rem;
        right: 0.4rem;
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
    }

    .room-card-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-bottom: 0.3rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .room-title {
        font-size: 0.92rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }

    .room-desc {
        font-size: 0.72rem;
        line-height: 1.2;
        margin-bottom: 0.4rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .room-features-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.2rem;
    }

    .room-feature-tag {
        font-size: 0.64rem;
        padding: 0.15rem 0.35rem;
        border-radius: 4px;
        gap: 0.2rem;
    }

    /* Step 2: 4 Horizontal Duration Chips in a Single Row */
    .duration-selector-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.35rem;
        margin-bottom: 1rem;
    }

    .duration-chip {
        padding: 0.5rem 0.2rem;
        border-radius: 8px;
        text-align: center;
    }

    .duration-hours {
        font-size: 0.82rem;
        font-weight: 700;
        margin-bottom: 0.1rem;
    }

    .duration-label {
        font-size: 0.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 0.15rem;
    }

    .duration-price {
        font-size: 0.8rem;
    }

    .duration-original {
        display: none;
    }

    /* Step 3: Addons Grid */
    .surprise-addons-container {
        padding: 0.75rem 0.6rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .addons-header {
        margin-bottom: 0.5rem;
    }

    .addons-title {
        font-size: 0.88rem;
    }

    .addons-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.4rem;
    }

    .addon-card {
        padding: 0.4rem 0.5rem;
        border-radius: 8px;
        gap: 0.35rem;
    }

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

    .addon-name {
        font-size: 0.7rem;
        line-height: 1.1;
    }

    .addon-price {
        font-size: 0.7rem;
    }

    /* Step 4: Compact Form Details Grid */
    .booking-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
        margin-bottom: 0.75rem;
    }

    .input-label {
        font-size: 0.72rem;
        margin-bottom: 0.2rem;
    }

    .input-field {
        padding: 0.5rem 0.6rem;
        font-size: 0.82rem;
        border-radius: 8px;
    }

    /* Sticky Mobile Summary Bar & Booking Button */
    .summary-bar {
        position: sticky;
        bottom: 0;
        z-index: 999;
        margin: 0.75rem -0.85rem -0.85rem -0.85rem;
        padding: 0.75rem 0.85rem;
        border-radius: 16px 16px 0 0;
        background: rgba(11, 4, 20, 0.96);
        backdrop-filter: blur(15px);
        border-top: 1px solid var(--gold-primary);
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.6rem;
    }

    .summary-info {
        display: none;
    }

    .summary-total {
        text-align: left;
    }

    .summary-total-label {
        font-size: 0.62rem;
        color: var(--text-muted);
        display: block;
        line-height: 1;
        margin-bottom: 0.15rem;
    }

    .summary-total-price {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--gold-light);
        line-height: 1;
    }

    .book-btn-whatsapp {
        flex: 1;
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
        font-weight: 700;
        justify-content: center;
        border-radius: 50px;
        white-space: nowrap;
    }

    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: rgba(11, 4, 20, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .floating-whatsapp {
        bottom: 5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
}
