:root {
    /* Color Tokens */
    --color-primary-100: #fefce8;
    --color-primary-500: #d4af37;
    --color-primary-600: #b8941e;
    --color-primary-900: #713f12;

    --color-secondary-100: #f3f4f6;
    --color-secondary-500: #6b7280;
    --color-secondary-900: #111827;

    /* Semantic Colors */
    --text-color: #f9fafb;
    --bg-color: #030712;
    --card-bg: #111827;

    /* Typography Tokens */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing Tokens */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;

    /* Shadow Tokens */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.15);

    /* Transition Tokens */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: linear-gradient(135deg, #451a03, #111827);
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
    color: #f5d76e;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1006;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.top-announcement-bar .promo-badge {
    background: rgba(212, 175, 55, 0.25);
    border: 1px solid #d4af37;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.top-announcement-bar .close-announcement {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 1.1rem;
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

img, picture, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER & NAV BASE
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1005;
    transition: all var(--transition-normal);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

header.scrolled {
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    background: rgba(3, 7, 18, 0.98);
}

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

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 10px rgba(212, 175, 55, 0.2);
    animation: logoGlow 3s ease-in-out infinite;
    flex-shrink: 0;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f5d76e, #d4af37, #c5941a, #d4af37, #f5d76e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
    letter-spacing: 1px;
}

header.scrolled .logo img {
    height: 40px;
}

/* Desktop Navigation (Screens > 768px) */
@media (min-width: 769px) {
    nav ul.nav-links,
    nav .nav-links,
    .nav-links {
        list-style: none;
        display: flex !important;
        align-items: center;
        gap: 26px;
        position: static !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .mobile-only-btn {
        display: none !important;
    }

    .drawer-header {
        display: none !important;
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-overlay {
        display: none !important;
    }

    nav .nav-links li a,
    .nav-links li a {
        color: var(--text-color);
        text-decoration: none;
        font-weight: 400;
        font-size: 1rem;
        transition: color var(--transition-normal);
        position: relative;
        padding: 4px 0;
        background: transparent;
        border: none;
    }

    nav .nav-links li a::after,
    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-primary-500);
        transition: width var(--transition-normal);
    }

    nav .nav-links li a:hover,
    nav .nav-links li a.active,
    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--color-primary-500);
    }

    nav .nav-links li a:hover::after,
    nav .nav-links li a.active::after,
    .nav-links li a:hover::after,
    .nav-links li a.active::after {
        width: 100%;
    }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 12px 28px;
    border: 2px solid var(--color-primary-500);
    background: transparent;
    color: var(--color-primary-500);
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    border-radius: 30px;
    transition: all var(--transition-normal);
    cursor: pointer;
    display: inline-block;
}

.btn:hover {
    background: var(--color-primary-500);
    color: var(--bg-color);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary-500);
    color: var(--bg-color);
}

.btn-primary:hover {
    background: var(--color-primary-600);
    color: var(--bg-color);
    border-color: var(--color-primary-600);
}

.btn-outline {
    border: 2px solid var(--color-primary-500);
    color: var(--color-primary-500);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-primary-500);
    color: var(--bg-color);
}

.btn-large {
    padding: 16px 40px;
    font-size: var(--font-size-lg);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(3, 7, 18, 0.5), rgba(3, 7, 18, 0.7)), url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: var(--color-primary-500);
    font-size: var(--font-size-sm);
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.1rem, 5.5vw + 0.5rem, 4.5rem);
    margin-bottom: 18px;
    color: var(--color-primary-500);
    animation: fadeInDown 1s ease-out 0.2s both;
    line-height: 1.18;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-content p {
    font-size: clamp(1rem, 1.8vw + 0.2rem, 1.35rem);
    margin-bottom: 35px;
    color: #ccc;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s both;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* ========================================
   SECTION TAGS
   ======================================== */
.section-tag {
    display: inline-block;
    font-size: var(--font-size-sm);
    color: var(--color-primary-500);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-tag.center {
    display: block;
    text-align: center;
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
section {
    padding: 100px 0;
}

section h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-primary-500);
}

/* ========================================
   STATS SECTION
   ======================================== */
.stats-section {
    padding: 60px 0;
    background: var(--card-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    color: var(--color-primary-500);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 25px;
}

.about-text p {
    font-size: var(--font-size-lg);
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========================================
   ROOMS SECTION
   ======================================== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.room-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-gold);
}

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

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary-500);
    color: var(--bg-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.room-badge.premium {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
}

.room-info {
    padding: 30px;
}

.room-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--color-primary-500);
}

.room-info p {
    color: #aaa;
    margin-bottom: 15px;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.room-features {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.room-features span {
    font-size: var(--font-size-xs);
    color: #888;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
}

.room-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--color-primary-500);
    font-weight: 700;
}

.price small {
    font-size: var(--font-size-sm);
    color: #666;
    font-family: var(--font-body);
}

/* ========================================
   AMENITIES PREVIEW (Home Page)
   ======================================== */
.amenities-preview {
    background: var(--card-bg);
}

.amenities-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.amenity-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

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

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.amenity-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-500);
    font-size: var(--font-size-xl);
    margin-bottom: 12px;
}

.amenity-card p {
    color: #888;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: var(--bg-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 15px;
    padding: 35px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: var(--color-primary-500);
    font-size: var(--font-size-lg);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: #aaa;
    font-style: italic;
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-color);
    font-size: var(--font-size-base);
}

.testimonial-author span {
    color: #666;
    font-size: var(--font-size-sm);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(3, 7, 18, 0.9)), url('assets/images/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 120px 20px;
}

.cta-section h2 {
    font-size: var(--font-size-4xl);
    margin-bottom: 20px;
}

.cta-section p {
    color: #aaa;
    font-size: var(--font-size-xl);
    margin-bottom: 35px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--color-secondary-900);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.footer-logo-wrap img {
    height: 56px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: block;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-primary-500);
    font-size: var(--font-size-2xl);
    margin-bottom: 0;
}

.footer-col p {
    color: #888;
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.footer-col h4 {
    color: var(--text-color);
    font-size: var(--font-size-base);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
    color: var(--color-primary-500);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: #888;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-primary-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: var(--font-size-sm);
}

footer h2 {
    font-family: var(--font-heading);
    color: var(--color-primary-500);
    margin-bottom: 20px;
}

/* ========================================
   AMENITIES PAGE GRID
   ======================================== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.amenity-item {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-normal);
}

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

.amenity-item .amenity-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.amenity-item h3 {
    color: var(--color-primary-500);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
}

.amenity-item p {
    color: #888;
    line-height: 1.7;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary-500);
    font-family: var(--font-heading);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary-500);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-info h3 {
    color: var(--color-primary-500);
    font-family: var(--font-heading);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.contact-info p {
    margin-bottom: 25px;
    font-size: var(--font-size-lg);
    color: #aaa;
    line-height: 1.8;
}

/* ========================================
   ABOUT PAGE EXTRAS
   ======================================== */
.about-story {
    padding: 100px 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-story-content.reverse {
    direction: rtl;
}

.about-story-content.reverse > * {
    direction: ltr;
}

.about-story-text h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-500);
    font-size: var(--font-size-2xl);
    margin-bottom: 20px;
}

.about-story-text p {
    color: #aaa;
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-story-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: var(--color-primary-500);
    transform: translateY(-5px);
}

.value-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: var(--font-heading);
    color: var(--color-primary-500);
    margin-bottom: 10px;
    font-size: var(--font-size-xl);
}

.value-card p {
    color: #888;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

/* ========================================
   MOBILE MENU & OVERLAY
   ======================================== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(3, 7, 18, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* Mobile Drawer Header */
.drawer-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 15px 0;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    width: 100%;
}

.drawer-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.drawer-logo-img {
    height: 38px;
    width: 38px;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    object-fit: cover;
}

.drawer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #f5d76e;
}

.drawer-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.15);
    border: 1.5px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
}

.drawer-close-btn:hover,
.drawer-close-btn:active {
    background: #ef4444;
    color: #ffffff;
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: rgba(212, 175, 55, 0.15);
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1006;
    position: relative;
    transition: all 0.3s ease;
    gap: 5px;
    padding: 0;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.menu-toggle:hover,
.menu-toggle.active {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--color-primary-500);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.menu-toggle .bar {
    height: 2.5px;
    width: 22px;
    background: #f5d76e;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    border-radius: 3px;
    transform-origin: center;
    display: block;
}

/* Transform Hamburger to Gold X when active */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    50% { filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.15); opacity: 1; }
}

@keyframes goldGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.1); }
    50% { text-shadow: 0 0 15px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.3); }
}

/* ========================================
   GOLDEN ANIMATED ICONS (Font Awesome)
   ======================================== */
.golden-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: inline-block;
    background: linear-gradient(135deg, #f5d76e, #d4af37, #c5941a, #d4af37, #f5d76e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite, iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.25));
}

.amenity-card:hover .golden-icon,
.amenity-item:hover .golden-icon,
.value-card:hover .golden-icon {
    animation: goldShimmer 2s ease-in-out infinite, iconPulse 1s ease-in-out infinite;
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.5));
}

/* Stagger icon animations */
/* ========================================
   DARGAH PHOTO SLIDER CAROUSEL
   ======================================== */
.dargah-slider-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(17, 24, 39, 0.9) 0%, rgba(3, 7, 18, 1) 100%);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1050px;
    margin: 40px auto 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 560px;
    background: #030712;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease;
    transform: scale(1.02);
    background: #030712;
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px 25px;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.6) 60%, transparent 100%);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 5;
}

.carousel-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary-500);
    margin-bottom: 5px;
}

.carousel-caption p {
    font-size: 0.95rem;
    color: #cbd5e1;
    max-width: 600px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(3, 7, 18, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #f5d76e;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: var(--color-primary-500);
    color: #030712;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 32px;
    border-radius: 6px;
    background: var(--color-primary-500);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* ========================================
   VIDEO SHOWCASE SECTION (Smartphone Reel View)
   ======================================== */
.video-showcase-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(17, 24, 39, 0.8) 0%, rgba(3, 7, 18, 1) 100%);
}

.video-card {
    position: relative;
    max-width: 440px;
    margin: 40px auto 0;
    border-radius: 26px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(212, 175, 55, 0.2);
    background: #030712;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 640px;
    background: #000;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5), 0 0 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(6deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.7);
    color: #ffffff !important;
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
    opacity: 0.8;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.floating-whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f172a;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@media (max-width: 768px) {
    .video-card {
        max-width: 100%;
        border-radius: 18px;
    }
    .video-wrapper {
        height: 520px;
    }
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.7rem;
    }
    .floating-whatsapp-tooltip {
        display: none;
    }
}

.map-embed-wrapper {
    margin-top: 30px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.15);
    height: 460px;
    width: 100%;
    position: relative;
    background: #e5e3df;
}

.map-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-overlay-card {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(17, 24, 39, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: left;
    max-width: 320px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.map-overlay-badge {
    color: #f5d76e;
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.map-overlay-addr {
    color: #e2e8f0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.map-overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #4285F4;
    color: #fff;
    padding: 7px 15px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.map-overlay-btn:hover {
    background: #2b6cb0;
}

@media (max-width: 768px) {
    .map-overlay-card {
        display: none;
    }
    .carousel-slides {
        height: 320px;
    }
    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .carousel-caption {
        padding: 20px 15px 15px;
    }
    .carousel-caption h3 {
        font-size: 1.15rem;
    }
    .map-embed-wrapper {
        height: 340px;
    }
}

/* Golden stars for testimonials */
.testimonial-card .stars {
    background: linear-gradient(135deg, #f5d76e, #d4af37, #f5d76e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Footer logo image */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-wrap img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
}

.footer-logo {
    background: linear-gradient(135deg, #f5d76e, #d4af37, #c5941a, #d4af37, #f5d76e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}

/* Section headings golden animation */
section h2 {
    background: linear-gradient(135deg, #f5d76e, #d4af37, #c5941a, #d4af37, #f5d76e);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 5s ease-in-out infinite;
}

/* Hero badge golden glow */
.hero-badge {
    animation: fadeInDown 1s ease-out, goldGlow 3s ease-in-out infinite;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-story-content {
        grid-template-columns: 1fr;
    }
    .about-story-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 18px;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        background: rgba(3, 7, 18, 0.96) !important;
        border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        height: 42px;
    }

    .logo-text {
        font-size: 1.45rem;
        letter-spacing: 1px;
    }

    /* Hide desktop CTA buttons in header on mobile so hamburger is never pushed */
    header > .btn,
    .nav-right > .btn,
    .header-cta {
        display: none !important;
    }

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

    .menu-toggle {
        display: flex !important;
    }

    /* Mobile Nav Drawer */
    nav ul.nav-links,
    nav .nav-links,
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 300px !important;
        max-width: 86vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #080d1a !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-left: 2px solid #d4af37 !important;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.2) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        padding: 18px 14px 28px !important;
        gap: 8px !important;
        z-index: 99999 !important;
        transform: translateX(110%) !important;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
        list-style: none !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 !important;
    }

    nav ul.nav-links.active,
    nav .nav-links.active,
    .nav-links.active {
        transform: translateX(0) !important;
    }

    .drawer-header {
        display: flex !important;
    }

    nav .nav-links li,
    .nav-links li {
        width: 100% !important;
        opacity: 0;
        transform: translateX(15px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    nav .nav-links.active li,
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.04s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.08s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.12s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.16s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.20s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.24s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.28s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.32s; }

    .nav-links li a {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 1.08rem;
        font-weight: 600;
        color: #ffffff !important;
        padding: 12px 16px;
        border-radius: 10px;
        background: #111827;
        border: 1px solid rgba(212, 175, 55, 0.2);
        transition: all 0.2s ease;
        text-shadow: none;
        text-decoration: none !important;
        touch-action: manipulation;
    }

    .nav-links li a i {
        color: #f5d76e !important;
        font-size: 1.1rem;
        width: 22px;
        text-align: center;
    }

    .nav-links li a:hover,
    .nav-links li a:active,
    .nav-links li a.active {
        color: #030712 !important;
        background: linear-gradient(135deg, #f5d76e, #d4af37) !important;
        border-color: #f5d76e;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
        transform: translateX(4px);
    }

    .nav-links li a:hover i,
    .nav-links li a:active i,
    .nav-links li a.active i {
        color: #030712 !important;
    }

    .nav-links li a::after {
        display: none;
    }

    .mobile-only-btn {
        display: block !important;
        margin-top: 12px;
    }

    .mobile-only-btn a {
        background: #25D366 !important;
        color: #ffffff !important;
        border: 1px solid #25D366 !important;
        font-weight: 700 !important;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    }

    .mobile-only-btn a i {
        color: #ffffff !important;
    }

    /* Page Banners */
    .page-banner {
        padding: 130px 15px 50px !important;
    }

    .page-banner h1 {
        font-size: 2.2rem !important;
    }

    .page-banner p {
        font-size: 1rem !important;
    }

    /* Hero Section */
    .hero {
        padding-top: 90px;
    }

    .hero-content h1 {
        font-size: 2.35rem;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Stats Grid */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 18px 10px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Gallery Mobile */
    .gallery-filter-wrap {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 10px 4px 15px !important;
        margin: 20px 0 25px !important;
        justify-content: flex-start !important;
        gap: 8px !important;
        scrollbar-width: none;
    }

    .gallery-filter-wrap::-webkit-scrollbar {
        display: none;
    }

    .gallery-filter-btn {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        font-size: 0.88rem !important;
        padding: 8px 16px !important;
        scroll-snap-align: start;
        touch-action: manipulation;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .gallery-item {
        aspect-ratio: 4 / 3 !important;
        min-height: 230px;
        touch-action: manipulation;
    }

    .gallery-item.tall {
        aspect-ratio: 4 / 3 !important;
    }

    .gallery-overlay {
        padding: 16px 14px 12px !important;
    }

    .gallery-title {
        font-size: 1.05rem !important;
    }

    .gallery-desc {
        font-size: 0.82rem !important;
    }

    .gallery-zoom-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.9rem !important;
        top: 12px !important;
        right: 12px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
    }

    /* Lightbox Modal Mobile */
    .lightbox-modal {
        padding: 12px !important;
    }

    .lightbox-content {
        max-width: 96vw !important;
        max-height: 94vh !important;
        width: 100% !important;
    }

    .lightbox-img-wrap {
        max-height: 58vh !important;
        width: 100% !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lightbox-img {
        max-height: 56vh !important;
        max-width: 100% !important;
        width: 100% !important;
        object-fit: contain;
    }

    .lightbox-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }

    .lightbox-btn.prev {
        left: 8px !important;
    }

    .lightbox-btn.next {
        right: 8px !important;
    }

    .lightbox-close {
        top: 10px !important;
        right: 10px !important;
        width: 44px !important;
        height: 44px !important;
        font-size: 1.4rem !important;
    }

    .lightbox-title {
        font-size: 1.15rem !important;
    }

    .lightbox-desc {
        font-size: 0.85rem !important;
    }

    .lightbox-actions {
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }

    .lightbox-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Room Cards */
    .room-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .room-card {
        border-radius: 16px;
    }

    .room-card img {
        height: 220px;
    }

    .room-details {
        padding: 20px 16px;
    }

    .room-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    /* Amenities Grid */
    .amenities-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .amenity-card {
        padding: 22px 14px;
    }

    .amenity-card i {
        font-size: 2.2rem;
    }

    /* Testimonials & Reviews */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reviews-stats-bar {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
        padding: 20px 14px !important;
        margin: -25px auto 30px !important;
    }

    .review-stat-item h3 {
        font-size: 1.8rem !important;
    }

    /* Contact Page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 24px 18px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
    }

    section h2 {
        font-size: 1.85rem;
    }

    .container {
        padding: 0 16px;
    }

    /* Floating WhatsApp Button on Mobile */
    .floating-whatsapp {
        bottom: 18px;
        right: 18px;
        width: 54px;
        height: 54px;
        font-size: 1.65rem;
    }

    .floating-whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.05rem;
    }

    .page-banner h1 {
        font-size: 1.95rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }
}
