/* =========================================
   CSS Reset & Variables
   ========================================= */
:root {
    /* Modern Premium Palette */
    --primary: #2F4A7A;
    --accent: #FFD700;
    --secondary: #2F6B4F;
    --bg-color: #F8F9FA;
    --surface-color: #FFFFFF;
    --text-color: #333333;
    --text-muted: #666666;
    --border-color: rgba(47, 74, 122, 0.1);
    
    /* Legacy variables mapping */
    --gold: #FFD700;
    --gold-light: #FFE033;
    --gold-dark: #CCA000;
    --maroon: #2F4A7A;
    --royal-black: #0F172A;
    --ivory-white: #F8F9FA;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-logo: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions & Shadows */
    --transition: all 0.4s ease-in-out;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-accent: 0 10px 30px rgba(47, 74, 122, 0.2);
    --radius: 16px;
}

[data-theme="dark"] {
    --bg-color: #0F172A;
    --surface-color: #1E293B;
    --text-color: #F8F9FA;
    --text-muted: #94A3B8;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.5);
    --ivory-white: #0F172A;
    --maroon: #FFD700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.4s ease, color 0.4s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-color);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.section-title h2.light-text {
    color: var(--text-color);
}

.gold-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

.dark-bg {
    background-color: var(--surface-color);
}

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

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-black);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--ivory-white);
    border: 1px solid var(--ivory-white);
}

.btn-secondary:hover {
    background-color: var(--ivory-white);
    color: var(--royal-black);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--royal-black);
}

.btn-outline.gold-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline.gold-outline:hover {
    background-color: var(--gold);
    color: var(--royal-black);
}

.btn-link {
    color: var(--maroon);
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* =========================================
   Navigation
   ========================================= */
.nav-wrapper {
    position: fixed;
    top: 25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.saas-navbar {
    background-color: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    animation: slideDownFade 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
}

.nav-wrapper.scrolled {
    top: 10px;
}

.nav-wrapper.scrolled .saas-navbar {
    background-color: rgba(10, 10, 10, 0.85);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    /* padding intentionally unchanged — keep same dimensions on scroll */
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    overflow: visible;
}

.logo-saas-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    transform: scale(2.15);
    transform-origin: left center;
    margin-right: 2rem;
}

/* Logo size is intentionally NOT changed on scroll — keeps consistent navbar height */

.nav-center {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 2.5rem);
}

.nav-link {
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: clamp(0.6rem, 1.2vw, 0.95rem);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: clamp(0.2rem, 0.5vw, 0.5rem) 0;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.nav-right {
    display: flex;
    align-items: center;
}

.btn-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 230, 230, 1) 100%);
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(0.6rem, 1.2vw, 0.9rem);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

.btn-cta:hover {
    transform: scale(1.04) translateY(-1px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: white;
}

.menu-toggle {
    display: none !important;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes slideDownFade {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-hero {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.history-hero {
    background:
        linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
        url('../assets/bharatgarh-fort (2).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-title {
    position: relative;
    z-index: 10;
    font-size: 4rem;
    color: var(--ivory-white);
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    margin-top: 5rem;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s ease;
    transform: scale(1.05);
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 5;
}

.hero-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
    pointer-events: none;
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 4rem;
    z-index: 20;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-arrow {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    cursor: pointer;
    pointer-events: auto;
    transition: var(--transition);
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

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

/* =========================================
   Hero Content & Booking Bar
   ========================================= */
.hero-content-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.hero-main-title {
    font-size: clamp(1.3rem, 2.9vw, 2.7rem);
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    margin-bottom: clamp(3rem, 6vh, 5rem);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    max-width: 1000px;
    width: 100%;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.85); /* Light cream/white glass effect */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(2rem, 4vw, 3rem);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

.hero-search-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.search-input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 140px;
    gap: 0.5rem;
    text-align: left;
}

.search-input-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
}

.search-input-group input,
.search-input-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    font-size: 1.05rem;
    padding: 0.5rem 0;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
    width: 100%;
}

.search-input-group input:focus,
.search-input-group select:focus {
    border-bottom-color: var(--gold-dark);
}

.search-input-group select option {
    background: white;
    color: var(--text-color);
}

.hero-search-bar .search-btn {
    flex: 0 0 auto;
    padding: 1rem 2.5rem;
    margin-top: 1.5rem;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* Responsive Overrides for Hero Booking Bar */
@media (max-width: 991px) {
    .hero-search-bar {
        gap: 1.5rem;
    }
    .search-input-group {
        flex: 1 1 calc(50% - 1.5rem);
    }
    .hero-search-bar .search-btn {
        flex: 1 1 100%;
        margin-top: 0.5rem;
    }
    .glass-panel {
        border-radius: 24px;
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .search-input-group {
        flex: 1 1 100%;
    }
    .glass-panel {
        padding: 1.5rem;
        border-radius: 20px;
    }
    .hero-main-title {
        margin-bottom: 2.5rem;
    }
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--maroon);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

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

.gold-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--royal-black);
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* =========================================
   Rooms Section
   ========================================= */
.rooms {
    background-color: var(--royal-black);
    background-image: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.rooms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiPgo8cmVjdCB3aWR0aD0iOCIgaGVpZ2h0PSI4IiBmaWxsPSIjMTEiPjwvcmVjdD4KPHBhdGggZD0iTTAgMEw4IDhaTTAgOEw4IDBaIiBzdHJva2U9IiMzMyIgc3Ryb2tlLXdpZHRoPSIxIj48L3BhdGg+Cjwvc3ZnPg==');
    opacity: 0.1;
    pointer-events: none;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.room-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.room-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.room-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.room-card:hover .room-img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--gold);
    color: var(--royal-black);
    padding: 0.5rem 1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.room-content {
    padding: 2rem;
}

.room-content h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-content p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.room-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.room-features li {
    color: #aaa;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-features i {
    color: var(--gold);
}

/* =========================================
   Experiences Section
   ========================================= */
.experience-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.exp-item {
    background-color: var(--ivory-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.exp-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--gold);
}

.exp-item.dark-exp {
    background-color: var(--royal-black);
    color: white;
}

.exp-content h4 {
    font-size: 1.8rem;
    color: var(--maroon);
    margin-bottom: 1rem;
}

.exp-item.dark-exp h4 {
    color: var(--gold);
}

/* =========================================
   History Section
   ========================================= */
.history-container {
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: var(--shadow-heavy);
}

.history-portrait {
    float: right;
    width: 350px;
    margin: 0 0 2rem 2.5rem;
    border: 4px solid var(--gold);
    border-radius: 4px;
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
}

@media (max-width: 768px) {
    .history-portrait {
        float: none;
        width: 100%;
        margin: 0 0 2rem 0;
    }
}

.history-container p {
    font-size: 1.15rem;
    margin-bottom: 1.8rem;
    line-height: 1.9;
    text-align: justify;
}

.history-container p:first-of-type::first-letter {
    color: var(--gold);
    float: left;
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1;
    padding-right: 15px;
    margin-top: -10px;
}

.history-container p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Booking Form
   ========================================= */
.bg-pattern {
    background-image: radial-gradient(var(--gold) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.9;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 4rem;
    box-shadow: var(--shadow-heavy);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    color: var(--maroon);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0.5rem, 2vw, 2rem);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    font-size: clamp(0.7rem, 1vw, 1rem);
}

.form-group input,
.form-group select {
    padding: clamp(0.5rem, 1vw, 1rem);
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    background-color: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.submit-btn {
    grid-column: span 2;
    margin-top: 1rem;
    padding: clamp(0.8rem, 1.5vw, 1.2rem);
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 250px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: pointer;
}

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

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

/* =========================================
   Testimonials
   ========================================= */
.testimonials {
    background-color: #fcfbf9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border-top: 4px solid var(--maroon);
}

.quote-icon {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
}

.review {
    font-size: 1.2rem;
    font-style: italic;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reviewer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.reviewer-info h5 {
    font-size: 1.2rem;
    color: var(--royal-black);
}

.reviewer-info span {
    font-size: 0.9rem;
    color: #888;
}

.stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--royal-black);
    color: var(--ivory-white);
    padding-top: 5rem;
    border-top: 5px solid var(--gold);
}

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

.footer-logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.brand-col p {
    color: #aaa;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    color: var(--gold);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--royal-black);
}

.footer-col h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-col ul a {
    color: #aaa;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 1rem;
    color: #aaa;
    align-items: flex-start;
}

.contact-info i {
    color: var(--gold);
    margin-top: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    outline: none;
}

.newsletter-form button {
    padding: 0 1.5rem;
    background: var(--gold);
    border: none;
    color: var(--royal-black);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design
   ========================================= */
@media (min-width: 1025px) {
    /* Laptop/Desktop */
}

@media (min-width: 768px) and (max-width: 1024px) {
    /* Tablet */
    .hero-title, .hero-main-title { font-size: clamp(2.5rem, 5vw, 4rem); }
}

@media (min-width: 320px) and (max-width: 767px) {
    /* Mobile */
    .hero-title, .hero-main-title { font-size: clamp(1.8rem, 6vw, 3rem); }
    .booking-container { padding: clamp(1rem, 4vw, 2rem); }
}

/* =========================================
   Theme Toggle & Logo
   ========================================= */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    margin-right: 1.5rem;
}
.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* For Logo, Light mode (default) uses a dark blue logo, Dark mode uses light/gold logo */
#brand-logo {
    filter: brightness(0) saturate(100%) invert(26%) sepia(21%) saturate(2311%) hue-rotate(188deg) brightness(97%) contrast(89%);
    transition: filter 0.4s ease;
}

[data-theme="dark"] #brand-logo {
    filter: brightness(0) saturate(100%) invert(88%) sepia(35%) saturate(1478%) hue-rotate(345deg) brightness(101%) contrast(104%);
}

.saas-navbar {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
}
.nav-wrapper.scrolled .saas-navbar {
    background-color: var(--bg-color); 
}
.nav-wrapper:not(.scrolled) .theme-toggle {
    color: var(--text-color);
    background: rgba(0,0,0,0.05);
}
[data-theme="dark"] .nav-wrapper:not(.scrolled) .theme-toggle {
    color: #F8F9FA;
    background: rgba(255,255,255,0.1);
}

/* =========================================
   Hero Search Bar
   ========================================= */
.hero-content-overlay {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 95%;
    max-width: 1000px;
}

.hero-main-title {
    color: #fff;
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    margin-bottom: 3rem;
    font-weight: 700;
}

.hero-search-bar {
    background: var(--surface-color);
    padding: clamp(0.5rem, 1.5vw, 1.5rem) clamp(1rem, 2vw, 2rem);
    border-radius: 100px;
    display: flex;
    flex-wrap: nowrap;
    gap: clamp(0.5rem, 1vw, 1.5rem);
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-heavy);
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.hero-search-bar::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.search-input-group {
    flex: 1;
    min-width: 0;
    text-align: left;
    position: relative;
    padding-right: clamp(0.5rem, 1vw, 1.5rem);
    border-right: 1px solid var(--border-color);
}
.search-input-group:last-of-type {
    border-right: none;
    padding-right: 0;
}

.search-input-group label {
    display: block;
    font-size: clamp(0.45rem, 0.8vw, 0.85rem);
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.search-input-group input,
.search-input-group select {
    width: 100%;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-size: clamp(0.5rem, 1vw, 1rem);
    color: var(--text-color);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    padding: 0;
}

.search-btn {
    padding: clamp(0.4rem, 1vw, 1rem) clamp(0.8rem, 2vw, 2.5rem);
    border-radius: 50px;
    white-space: nowrap;
    font-weight: 600;
    font-size: clamp(0.5rem, 1vw, 1rem);
    box-shadow: var(--shadow-accent);
}

/* =========================================
   Room Cards Enhancement
   ========================================= */
.rooms {
    background-color: var(--bg-color);
    background-image: none;
}

.room-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(47, 74, 122, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.room-price-row {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.price-val {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-heading);
}

.price-val span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.room-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Premium CTA Button */
.btn-book-stay {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--royal-black);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

[data-theme="dark"] .btn-book-stay {
    background: linear-gradient(135deg, var(--primary), #4A6BAA);
    color: white;
    box-shadow: 0 4px 15px rgba(47, 74, 122, 0.4);
}

.btn-book-stay:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

[data-theme="dark"] .btn-book-stay:hover {
    box-shadow: 0 8px 25px rgba(47, 74, 122, 0.6);
}

.booking-note {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Legacy bottom sheet styles removed to prevent conflicts with the unified booking sheet design system below. */

/* =========================================
   Floating Action Buttons
   ========================================= */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    text-decoration: none;
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.fab-whatsapp {
    background-color: #25D366;
}

.fab-call {
    background-color: var(--primary);
}

/* General Updates for Light/Dark */
.about-text h3, .feature-card h4, .exp-item h4 {
    color: var(--text-color);
}
.about-text p, .feature-card p, .brand-col p, .footer-col ul a, .contact-info li, .room-features li {
    color: var(--text-muted);
}
.feature-card, .exp-item, .testimonial-card {
    background-color: var(--surface-color);
    border-color: var(--border-color);
}
.exp-item.dark-exp {
    background-color: var(--primary);
}
.exp-item.dark-exp h4, .exp-item.dark-exp p {
    color: white;
}
.footer {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-top: 1px solid var(--border-color);
}
.footer-logo, .footer-col h4 {
    color: var(--text-color);
}
.review {
    color: var(--text-color);
}
.reviewer-info h5 {
    color: var(--text-color);
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(47, 74, 122, 0.2);
}
.btn-primary:hover {
    background: #24385e;
    color: white;
    box-shadow: 0 8px 25px rgba(47, 74, 122, 0.3);
}
.btn-cta {
    background: var(--primary);
    color: white;
}
.btn-cta:hover {
    background: #24385e;
    color: white;
}

@media (min-width: 320px) and (max-width: 767px) {
    .saas-navbar {
        border-radius: 20px;
    }
}

/* LIGHT THEME FIX */
html:not([data-theme="dark"]) .saas-navbar {
    background: #ffffff;
}

html:not([data-theme="dark"]) .saas-navbar a {
    color: #1a1a1a !important;
    font-weight: 500;
}

/* Optional: better visibility */
html:not([data-theme="dark"]) .saas-navbar a:hover {
    color: #C8A96A !important; /* gold hover */
}

/* Active link */
html:not([data-theme="dark"]) .saas-navbar a.active {
    color: #C8A96A !important;
    font-weight: 600;
}

/* =========================================
   Premium About Section
   ========================================= */
.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-premium-img img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    object-fit: cover;
    height: 500px;
}
.about-premium-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}
@media (max-width: 992px) {
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-premium-img img {
        height: auto;
    }
}

/* =========================================
   Premium Rooms Section
   ========================================= */
.room-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.room-filters span {
    cursor: pointer;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}
.room-filters span:hover, .room-filters span.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.premium-room-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.premium-room-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.room-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 0;
}

.premium-room-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 100, 90, 0.5), var(--shadow-heavy);
    border-color: rgba(0, 100, 90, 0.5);
}

.premium-room-card:hover .room-bg-img {
    transform: scale(1.08);
}

.premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 100, 90, 0.7), rgba(0, 80, 70, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.4s ease;
    opacity: 0;
    backdrop-filter: blur(4px);
    z-index: 1;
}

.premium-room-card:hover .premium-overlay {
    opacity: 1;
}

.premium-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.premium-room-card:hover .premium-content {
    opacity: 1;
    transform: translateY(0);
}

.premium-content h3 {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    color: white;
}

.premium-content .occupancy {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    color: white;
}

.premium-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: var(--gold);
}

.premium-price span {
    font-size: 1rem;
    font-weight: normal;
    color: white;
}

.outline-btn {
    background: transparent;
    border: 2px solid white !important;
    color: white !important;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.outline-btn:hover {
    background: white !important;
    color: rgba(0, 80, 70, 1) !important;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

@media (max-width: 992px) {
    .premium-room-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .premium-room-grid {
        grid-template-columns: 1fr;
    }
    /* Mobile Override: Always show content */
    .premium-overlay {
        opacity: 1;
        background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    }
    .premium-content {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   COMPREHENSIVE RESPONSIVE FIXES
   ========================================= */

@media (max-width: 1024px) {


    /* Slider Arrows - Prevent Overlap */
    .slider-arrows {
        top: auto;
        bottom: 10%;
        transform: translateY(0);
        justify-content: center;
        gap: 2rem;
        padding: 0;
    }
    
    /* Layouts */
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Booking Bar */
    .booking-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .booking-bar .divider {
        display: none;
    }
    .booking-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 0;
    }
    .booking-item:last-child {
        border-bottom: none;
    }
    .check-btn {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    /* Layout Adjustments */
    .experience-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links {
        justify-content: center;
    }
    .hero-main-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-content-overlay {
        top: 50%;
    }
    .slider-arrows {
        bottom: 5%;
    }
    .btn-solid, .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* =========================================
   MOBILE NAVBAR — Compact & Properly Scaled
   Desktop logo = 40px layout height (scale(2.15)
   is visual only). Mobile must be SMALLER.
   Target navbar heights:
     768px → ~50px  |  520px → ~44px  |  400px → ~40px
   ========================================= */

/* Tablet & large phones (≤768px) */
@media (max-width: 768px) {
    .nav-wrapper {
        top: 12px;                 /* pull navbar closer to top on mobile */
    }
    .saas-navbar {
        padding: 7px 14px;
        width: 96%;
        gap: 0;
    }
    /* Replace transform-based scaling with real pixel height.
       Keep it SMALLER than desktop (40px) so navbar stays compact. */
    .logo-saas-img {
        height: 32px;              /* real layout height — no visual overflow */
        width: auto;
        transform: none !important;
        transform-origin: unset;
        margin-right: 0;
    }
    .nav-left {
        flex-shrink: 0;
        margin-right: 20px;        /* 20px breathing room between logo and first nav link */
    }
    .nav-center {
        flex: 1;
        gap: 14px;                 /* consistent 14px gap between all nav links */
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .nav-center::-webkit-scrollbar {
        display: none;
    }
    .nav-link {
        font-size: clamp(0.6rem, 1.5vw, 0.82rem);
        font-weight: 500;
        white-space: nowrap;
        padding: 0.15rem 0;
    }
    .nav-right {
        flex-shrink: 0;
        margin-left: 8px;
    }
    .theme-toggle {
        width: 30px;
        height: 30px;
        font-size: 0.76rem;
        margin-right: 0;
    }
}

/* Small phones (≤520px) */
@media (max-width: 520px) {
    .nav-wrapper {
        top: 10px;
    }
    .saas-navbar {
        flex-wrap: nowrap;
        padding: 8px 12px;
        width: 98%;
        border-radius: 100px;
        height: auto;
    }
    /* Logo 2-3x larger visually but kept within pill */
    .logo-saas-img {
        height: 28px; 
        transform: scale(1.8) !important;
        transform-origin: left center;
        margin-right: 30px;        /* visual scale offset + extra breathing room */
    }
    .nav-left {
        margin-right: 16px;        /* 16px gap from logo container to first nav link */
    }
    .nav-center {
        width: auto;
        order: unset;
        margin-top: 0;
        justify-content: flex-start;
        gap: 12px;                 /* consistent 12px gap between nav links */
        overflow-x: auto;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .nav-link {
        font-size: clamp(0.55rem, 1.4vw, 0.75rem);
        white-space: nowrap;
        padding: 0.15rem 0;
    }
    .theme-toggle {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

/* Very small phones (≤400px) */
@media (max-width: 400px) {
    .nav-wrapper {
        top: 8px;
    }
    .saas-navbar {
        flex-wrap: nowrap;
        padding: 6px 10px;
        width: 99%;
        border-radius: 100px;
        height: auto;
    }
    .logo-saas-img {
        height: 24px;
        transform: scale(1.9) !important;
        transform-origin: left center;
        margin-right: 26px;        /* visual scale offset for 1.9× logo */
    }
    .nav-left {
        margin-right: 16px;        /* 16px gap from logo to first nav link */
    }
    .nav-center {
        width: auto;
        order: unset;
        margin-top: 0;
        justify-content: flex-start;
        gap: 10px;                 /* consistent 10px gap on very small screens */
    }
    .nav-link {
        font-size: 0.5rem;
        letter-spacing: -0.01em;
    }
    .theme-toggle {
        width: 25px;
        height: 25px;
        font-size: 0.7rem;
    }
}


/* =========================================
   MOBILE CONTENT SCALING — Below Hero Only
   Targets all sections after .hero
   Does NOT touch .hero, .nav-wrapper, .saas-navbar
   ========================================= */
@media (max-width: 768px) {

    /* --- Global Section Spacing --- */
    .section-padding {
        padding: 3rem 0;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .gold-divider {
        width: 55px;
        height: 2px;
        margin-bottom: 0.75rem;
    }

    /* --- About Section --- */
    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-premium-img img {
        height: 220px;
        border-radius: 10px;
    }
    .about-premium-text p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1rem;
    }
    .about .btn {
        font-size: 0.82rem;
        padding: 0.6rem 1.4rem;
        margin-top: 1rem;
    }

    /* --- Room Section --- */
    .room-filters {
        gap: 0.6rem;
        margin-bottom: 1.5rem;
    }
    .room-filters span {
        font-size: 0.78rem;
        padding-bottom: 3px;
    }
    .premium-room-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .premium-room-card {
        height: 280px;
        border-radius: 12px;
    }
    .premium-content h3 {
        font-size: 1.15rem;
        letter-spacing: 1px;
        margin-bottom: 0.3rem;
    }
    .premium-content .occupancy {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }
    .premium-price {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    .premium-price span {
        font-size: 0.8rem;
    }
    /* Always show overlay on mobile (no hover) */
    .premium-overlay {
        opacity: 1;
        background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.65));
    }
    .premium-content {
        opacity: 1;
        transform: translateY(0);
    }
    .outline-btn {
        padding: 0.45rem 1.4rem;
        font-size: 0.8rem;
        border-radius: 40px;
    }

    /* --- Room Cards (legacy .room-card if present) --- */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .room-img-wrapper {
        height: 180px;
    }
    .room-content {
        padding: 1.2rem;
    }
    .room-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    .room-content p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .room-features {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .room-features li {
        font-size: 0.78rem;
    }

    /* --- Experiences Section --- */
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .exp-item {
        padding: 1.6rem 1.2rem;
        border-radius: 10px;
    }
    .exp-content h4 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }
    .exp-content p {
        font-size: 0.85rem;
        line-height: 1.55;
    }

    /* --- About Feature Cards --- */
    .about-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-card {
        padding: 1.4rem;
    }
    .gold-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    .feature-card h4 {
        font-size: 1rem;
    }
    .feature-card p {
        font-size: 0.82rem;
    }

    /* --- Gallery Section --- */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.7rem;
    }
    .gallery-item {
        height: 150px;
        border-radius: 8px;
    }

    /* --- Testimonials Section --- */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    .testimonial-card {
        padding: 1.6rem 1.2rem;
        border-radius: 8px;
        border-top-width: 3px;
    }
    .review {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    .reviewer-info h5 {
        font-size: 0.95rem;
    }
    .reviewer-info span {
        font-size: 0.78rem;
    }
    .stars i {
        font-size: 0.78rem;
    }
    .quote-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        top: -16px;
        right: 20px;
    }

    /* --- Footer --- */
    .footer {
        padding-top: 2.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    .footer-logo {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }
    .brand-col p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    .footer-col h4 {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .footer-col ul {
        gap: 0.7rem;
    }
    .footer-col ul a {
        font-size: 0.85rem;
    }
    .contact-info li {
        font-size: 0.82rem;
        gap: 0.6rem;
    }
    .newsletter-form input {
        padding: 0.6rem;
        font-size: 0.82rem;
    }
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    .footer-bottom {
        padding: 1.2rem 0;
        font-size: 0.78rem;
    }

    /* --- Floating Action Buttons (FABs) --- */
    .fab-container {
        bottom: 16px;
        right: 14px;
        gap: 10px;
    }
    .fab {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    /* --- Booking Container --- */
    .booking-container {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }
    .booking-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .submit-btn {
        grid-column: span 1;
    }
    .booking-header h2 {
        font-size: 1.3rem;
    }
    .booking-header {
        margin-bottom: 1.5rem;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .section-padding {
        padding: 2.2rem 0;
    }
    .section-title h2 {
        font-size: 1.3rem;
    }
    .premium-room-card {
        height: 240px;
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }
    .gallery-item {
        height: 130px;
    }
    .exp-item {
        padding: 1.2rem 1rem;
    }
    .testimonial-card {
        padding: 1.3rem 1rem;
    }
}

/* =========================================
   MOBILE SLIDER IMAGE FIX
   Root cause: hero is 100vh on portrait phones
   (e.g. 375×812px). Landscape photos must zoom
   ~3x to fill that tall height with cover, so
   only ~30% of the image width is visible.
   Fix: give hero a landscape-proportioned height
   on mobile so cover shows the full scene.
   ========================================= */
@media (max-width: 768px) {

    /* Increase hero height for mobile to half screen (50vh) */
    .hero {
        height: 50vh;
        min-height: 350px;
        max-height: 60vh;
    }

    /* Slides fill the resized hero fully */
    .hero-slider .slide {
        background-size: cover;
        background-position: center 40%; /* keep building/subject centred */
        /* Disable the scale-out animation on mobile — it amplifies the zoom feel */
        transform: scale(1) !important;
        transition: opacity 1.2s ease-in-out;
    }
    .hero-slider .slide.active {
        transform: scale(1) !important;
    }

    /* Re-centre the title inside the shorter hero */
    .hero-content-overlay {
        padding: 0 1rem;
    }

    /* Keep title readable at smaller size */
    .hero-main-title {
        font-size: clamp(1.2rem, 5.5vw, 2rem);
        margin-bottom: 0;
        text-shadow: 0 3px 12px rgba(0,0,0,0.7);
    }

    /* Shrink the top gradient so it doesn't eat the image */
    .hero-top-gradient {
        height: 100px;
    }

    /* Reposition slider arrows at bottom-centre so they don't
       cover the image subject on a shorter hero */
    .slider-arrows {
        top: auto;
        bottom: 8px;
        transform: none;
        justify-content: center;
        gap: 1.5rem;
        padding: 0;
    }

    /* Slightly smaller arrows for mobile */
    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* Portrait phones — tighten further */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
        max-height: 60vh;
    }
    .hero-main-title {
        font-size: clamp(1rem, 5vw, 1.6rem);
    }
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* Landscape orientation on phones — hero can be taller here */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 240px;
        max-height: none;
    }
    .hero-slider .slide {
        background-position: center center;
    }
    .slider-arrows {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        justify-content: space-between;
        padding: 0 2rem;
        gap: 0;
    }
}

/* =========================================
   Gallery Lightbox Modal
   ========================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-container {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-container img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.lightbox-overlay.active .lightbox-container img {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--gold-light, #e5c158);
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.lightbox-overlay.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Close & Nav Buttons */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 3010;
}

.lightbox-close:hover {
    color: var(--gold, #d4af37);
    transform: scale(1.1) rotate(90deg);
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    z-index: 3010;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.lightbox-nav-btn:hover {
    background: var(--gold, #d4af37);
    color: var(--royal-black, #0a0a0a);
    border-color: var(--gold, #d4af37);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.lightbox-prev-btn {
    left: 40px;
}

.lightbox-next-btn {
    right: 40px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .lightbox-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .lightbox-prev-btn { left: 20px; }
    .lightbox-next-btn { right: 20px; }
}

@media (max-width: 768px) {
    .lightbox-container {
        max-width: 90%;
    }
    .lightbox-container img {
        max-height: 70vh;
    }
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 1rem;
    }
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
    }
    .lightbox-nav-btn {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    .lightbox-prev-btn {
        left: 25%;
        transform: translateX(-50%);
    }
    .lightbox-next-btn {
        right: 25%;
        transform: translateX(50%);
    }
}

/* =========================================
   Booking Bottom Sheet / Modal
   ========================================= */
.bottom-sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: flex-end; /* Bottom sheet behavior by default (mobile first) */
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-sheet-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bottom-sheet-content {
    width: 100%;
    max-width: 600px;
    background-color: var(--surface-color);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    box-shadow: var(--shadow-heavy);
    height: auto; /* Dynamic height based on content */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    border-bottom: none;
    overflow: hidden;
}

.bottom-sheet-overlay.active .bottom-sheet-content {
    transform: translateY(0);
}

/* Drag Handle */
.drag-handle-wrapper {
    width: 100%;
    padding: 12px 0 8px;
    display: flex;
    justify-content: center;
    cursor: grab;
    user-select: none;
    background-color: var(--surface-color);
}
.drag-handle-wrapper:active {
    cursor: grabbing;
}
.drag-handle {
    width: 40px;
    height: 4px;
    background-color: var(--text-muted);
    opacity: 0.3;
    border-radius: 2px;
}

/* Sheet Header */
.sheet-header {
    padding: 0 24px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--surface-color);
}
.sheet-header h3 {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 600;
}
.btn-close-sheet {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: var(--transition);
}
.btn-close-sheet:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* Sheet Body */
.sheet-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    background-color: var(--bg-color);
}

/* Room Summary Card inside Sheet */
.sheet-room-summary {
    background: linear-gradient(135deg, var(--primary) 0%, #1e355c 100%);
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-soft);
}
.sheet-room-summary h4 {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 4px;
    font-weight: 600;
}
.sheet-room-summary p {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Form Styles */
.form-section {
    background-color: var(--surface-color);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
}
.section-title-sm {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}
.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.input-with-icon i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    pointer-events: none;
}
.input-with-icon input,
.form-group textarea {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
.form-group textarea {
    padding: 12px;
    resize: none;
}
.input-with-icon input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 74, 122, 0.15);
    background-color: var(--surface-color);
}

/* Guest Selector Dropdown style */
.guest-selector-wrapper {
    position: relative;
    width: 100%;
}
.btn-guest-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}
.btn-guest-trigger i {
    color: var(--text-muted);
}
.btn-guest-trigger .caret {
    transition: transform 0.3s ease;
}
.btn-guest-trigger.active .caret {
    transform: rotate(180deg);
}
.btn-guest-trigger:focus {
    border-color: var(--primary);
    outline: none;
}

.guest-dropdown-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-heavy);
    padding: 16px;
    z-index: 100; /* Raised z-index to overlay elements below */
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.guest-dropdown-panel.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.guest-row-info {
    display: flex;
    flex-direction: column;
}
.guest-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}
.guest-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.guest-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}
.btn-counter {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.btn-counter:hover:not(:disabled) {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.btn-counter:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.counter-value {
    font-weight: 600;
    font-size: 1rem;
    min-width: 16px;
    text-align: center;
}
.btn-guest-done {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}
.btn-guest-done:hover {
    background-color: #1e355c;
}

/* Booking Summary Card styling */
.booking-summary-card {
    background-color: var(--bg-color);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.summary-lbl {
    color: var(--text-muted);
}
.summary-val {
    font-weight: 500;
    color: var(--text-color);
}
.font-semibold {
    font-weight: 600;
}
.text-primary {
    color: var(--primary) !important;
}
.text-secondary {
    color: var(--secondary) !important;
}
.summary-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 4px 0;
}
.price-subtotal {
    font-size: 0.95rem;
}
.price-tax {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.price-total {
    font-size: 1.15rem;
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}
.total-amount-val {
    color: var(--secondary);
    font-weight: 700;
}

/* Actions styling */
.sheet-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}
.btn-confirm-booking {
    background: linear-gradient(135deg, var(--secondary) 0%, #1c4b35 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(47, 107, 79, 0.2);
}
.btn-confirm-booking:hover:not(:disabled) {
    background: linear-gradient(135deg, #1c4b35 0%, #102e20 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 107, 79, 0.3);
}
.btn-confirm-booking:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.btn-spinner {
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-spinner.hidden, .btn-text.hidden {
    display: none;
}

.offline-booking-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 8px 0;
}
.offline-booking-divider::before,
.offline-booking-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}
.offline-booking-divider span {
    padding: 0 10px;
}

.offline-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.btn-offline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.btn-call {
    background-color: var(--bg-color);
    color: var(--primary);
    border: 1px solid var(--primary);
}
.btn-call:hover {
    background-color: var(--primary);
    color: #ffffff;
}
.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Success Screen style */
.booking-success-state {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.success-icon-wrapper {
    margin-bottom: 24px;
}
.success-icon-circle {
    width: 80px;
    height: 80px;
    background-color: rgba(47, 107, 79, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes scaleUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.success-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 12px;
    font-weight: 600;
}
.success-message {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 24px;
}
.success-details-card {
    width: 100%;
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-soft);
}
.success-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}
.success-detail-row span {
    color: var(--text-muted);
}
.success-detail-row strong {
    color: var(--text-color);
}
.success-detail-row.price-row {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    font-size: 1rem;
}
.success-detail-row.price-row strong {
    color: var(--secondary);
}
.success-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}
.sheet-footer {
    padding: 12px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
    background-color: var(--surface-color);
}
.btn-success-close {
    width: 100%;
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-success-close:hover {
    background-color: #1e355c;
}

/* Utilities */
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mt-4 { margin-top: 24px !important; }
.hidden { display: none !important; }

/* Responsive styles for Bottom Sheet overlay to render as centered modal on desktops */
@media (min-width: 768px) {
    .bottom-sheet-overlay {
        align-items: center; /* Center the modal on desktop */
    }
    .bottom-sheet-content {
        border-radius: var(--radius);
        max-height: 85vh;
        border: 1px solid rgba(47, 74, 122, 0.2);
    }
    .drag-handle-wrapper {
        display: none; /* Hide drag handle on desktop */
    }
    .sheet-header {
        padding: 24px 24px 16px;
    }
}

