﻿/* ===== CSS VARIABLES ===== */
:root {
    /* Core Colors */
    --pure-black: #000000;
    --rich-black: #050505;
    --deep-black: #0a0a0a;
    --charcoal: #0f0f0f;
    --obsidian: #1a1a1a;
    --eclipse: #111111;
    --midnight: #080808;
    /* Gold Palette */
    --gold: #D4AF37;
    --gold-light: #F0D78C;
    --gold-lighter: #F8EBC1;
    --gold-dark: #B8960C;
    --gold-darker: #8B7209;
    --gold-pale: rgba(212, 175, 55, 0.05);
    --gold-subtle: rgba(212, 175, 55, 0.1);
    --gold-medium: rgba(212, 175, 55, 0.25);
    --gold-strong: rgba(212, 175, 55, 0.5);
    --gold-vivid: rgba(212, 175, 55, 0.8);
    /* Text Colors */
    --white: #FFFFFF;
    --white-soft: #F5F5F5;
    --white-warm: #FAF8F5;
    --gray-light: #E0E0E0;
    --gray-mid: #999999;
    --gray-dark: #555555;
    /* Glass Effect */
    --glass-bg: rgba(10, 10, 10, 0.75);
    --glass-bg-light: rgba(15, 15, 15, 0.5);
    --glass-bg-heavy: rgba(5, 5, 5, 0.85);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-border-hover: rgba(212, 175, 55, 0.5);
    --glass-blur: blur(24px);
    --glass-blur-light: blur(12px);
    --glass-blur-heavy: blur(30px);
    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #BF953F, #FCF6B5, #B38728, #FBF5B7, #AA771C);
    --gold-gradient-subtle: linear-gradient(135deg, #D4AF37, #F0D78C, #D4AF37);
    --gold-gradient-dark: linear-gradient(135deg, #8B7209, #D4AF37, #8B7209);
    --black-gradient: radial-gradient(ellipse at 30% 20%, #1a1a1a 0%, #0a0a0a 40%, #050505 70%, #000000 100%);
    --black-gradient-alt: radial-gradient(ellipse at 70% 60%, #151515 0%, #080808 50%, #000000 100%);
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --card-padding: 40px;
    /* Border Radius */
    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.7);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.1);
    --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
    --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.3);
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    max-width: 100vw; 
    overflow-x: hidden; 
}

body {
    font-family: var(--font-body);
    background: var(--pure-black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== ANIMATED BACKGROUND ===== */
.black-bg {
    position: relative;
    min-height: 100vh;
    background: var(--black-gradient);
}

    .black-bg::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse at 15% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%), radial-gradient(ellipse at 85% 30%, rgba(212, 175, 55, 0.02) 0%, transparent 50%), radial-gradient(ellipse at 50% 70%, rgba(212, 175, 55, 0.03) 0%, transparent 50%), radial-gradient(ellipse at 25% 80%, rgba(212, 175, 55, 0.02) 0%, transparent 50%), var(--black-gradient);
        z-index: -2;
        pointer-events: none;
        animation: ambientGlow 8s ease-in-out infinite alternate;
    }

    .black-bg::after {
        content: '';
        position: fixed;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(212, 175, 55, 0.008) 60px, rgba(212, 175, 55, 0.008) 62px), repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(255, 255, 255, 0.005) 120px, rgba(255, 255, 255, 0.005) 122px);
        z-index: -1;
        pointer-events: none;
        animation: waveDrift 25s linear infinite;
        opacity: 0.6;
    }

@keyframes ambientGlow {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.9;
        transform: scale(0.98);
    }
}

@keyframes waveDrift {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-15px, -10px) rotate(0.5deg);
    }

    50% {
        transform: translate(-10px, -25px) rotate(0deg);
    }

    75% {
        transform: translate(-20px, -15px) rotate(-0.5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* ===== GOLD PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    max-width: 100vw; 
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--white);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 1.5px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-light);
    font-weight: 300;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

    a:hover {
        color: var(--gold-light);
    }

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.container-narrow {
    max-width: 960px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== GLASSMORPHISM COMPONENTS ===== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

    .glass-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 40%, transparent 60%, rgba(212, 175, 55, 0.03) 100%);
        pointer-events: none;
        border-radius: inherit;
        z-index: 1;
    }

    .glass-card::after {
        content: '';
        position: absolute;
        top: -1px;
        left: 20%;
        right: 20%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
        opacity: 0;
        transition: var(--transition);
    }

    .glass-card:hover {
        border-color: var(--glass-border-hover);
        box-shadow: var(--shadow-card-hover);
        transform: translateY(-4px);
    }

        .glass-card:hover::after {
            opacity: 1;
        }

    .glass-card > * {
        position: relative;
        z-index: 2;
    }

.glass-panel {
    background: var(--glass-bg-light);
    backdrop-filter: var(--glass-blur-light);
    -webkit-backdrop-filter: var(--glass-blur-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--card-padding);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all var(--transition);
}

    .navbar.scrolled {
        background: rgba(0, 0, 0, 0.95);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    }

.nav-container {
    width: 100%;
    max-width: 100%; 
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-sizing: border-box; 
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin-right: auto;
}

    .navbar-brand span {
        color: var(--white);
        font-weight: 300;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    .navbar-brand:hover {
        color: var(--gold-light);
        transform: scale(1.02);
    }

.brand-icon {
    color: var(--gold);
    font-size: 1.4rem;
    margin-right: 2px;
}

.brand-icon-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-right: 4px;
    mix-blend-mode: screen;
}

.brand-text-img {
    height: 48px;
    width: auto;
    max-width: none;
    object-fit: contain;
    mix-blend-mode: screen;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    .nav-links a {
        color: var(--gray-light);
        text-decoration: none;
        font-weight: 400;
        font-size: 0.85rem;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        transition: var(--transition-fast);
        position: relative;
        padding: 8px 0;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .nav-links a i {
            font-size: 0.8rem;
            color: var(--gold);
            transition: var(--transition-fast);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-gradient-subtle);
            border-radius: 2px;
            transition: width var(--transition);
        }

        .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover i {
                color: var(--gold-light);
            }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-link.active {
    color: var(--gold) !important;
}

    .nav-link.active::after {
        width: 100% !important;
    }

    .nav-link.active i {
        color: var(--gold-light) !important;
    }

.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.85rem;
}

.user-greeting {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.85rem;
}

    .user-greeting i {
        color: var(--gold);
        font-size: 1.2rem;
    }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: var(--transition-fast);
}

    .mobile-menu-btn:hover {
        color: var(--gold-light);
    }

.menu-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 998;
    padding: 100px 30px 40px;
    flex-direction: column;
    gap: 5px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .mobile-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

.mobile-menu-header {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold);
    letter-spacing: 3px;
}

    .mobile-menu-header .brand-icon {
        display: block;
        font-size: 2rem;
        margin-bottom: 10px;
    }

.mobile-menu a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .mobile-menu a i {
        color: var(--gold);
        width: 24px;
        text-align: center;
        font-size: 1rem;
    }

    .mobile-menu a:hover {
        color: var(--white);
        background: var(--gold-pale);
        border-color: var(--glass-border);
    }

.mobile-menu-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 10px 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    text-align: center;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
        width: 400px;
        height: 400px;
    }

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.75rem;
}

.btn-gold {
    background: var(--gold-gradient-subtle);
    color: var(--pure-black);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    letter-spacing: 1px;
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold-lg);
        color: var(--pure-black);
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

    .btn-outline:hover {
        background: var(--gold);
        color: var(--pure-black);
        transform: translateY(-3px);
        box-shadow: var(--shadow-gold);
    }

.btn-outline-small {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: var(--font-body);
}

    .btn-outline-small:hover {
        background: var(--gold);
        color: var(--pure-black);
    }

.btn-gold-small {
    padding: 8px 20px;
    border-radius: 50px;
    background: var(--gold-gradient-subtle);
    color: var(--pure-black);
    border: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    font-family: var(--font-body);
}

    .btn-gold-small:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-gold);
    }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.1);
    transition: transform 1.5s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
}

    .hero-badge i {
        font-size: 0.6rem;
        margin: 0 5px;
    }

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero .tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 300;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-logo {
    height: auto;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 25px;
    object-fit: contain;
    display: block;
}

.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-mid);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.3);
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-gradient);
    overflow: hidden;
}

.page-hero-sm {
    min-height: 200px;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    text-align: center;
}

    .page-hero-content h1,
    .page-hero-content h2 {
        font-family: var(--font-heading);
        margin-bottom: 15px;
    }

    .page-hero-content p {
        color: var(--gray-light);
        font-size: 1.1rem;
    }

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-overline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-mid);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== ROOM CARDS ===== */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    overflow: hidden;
}

.room-card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

    .room-card-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    }

.room-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--pure-black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.room-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.room-card-body {
    padding: 25px 30px;
    position: relative;
    z-index: 2;
}

    .room-card-body h3 {
        font-family: var(--font-heading);
        color: var(--gold);
        margin-bottom: 15px;
        font-size: 1.5rem;
    }

.room-desc {
    color: var(--gray-mid);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
}

.room-feature {
    font-size: 0.75rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

    .room-feature i {
        color: var(--gold);
        font-size: 0.8rem;
    }

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity-tag {
    padding: 4px 12px;
    border-radius: 50px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-subtle);
    font-size: 0.7rem;
    color: var(--gold-light);
}

.room-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 20px;
}

.price-block {
    flex: 1;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-mid);
    margin-bottom: 5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

    .price-value small {
        font-size: 0.7rem;
        font-weight: 400;
        color: var(--gray-mid);
        font-family: var(--font-body);
    }

.price-divider {
    width: 1px;
    height: 30px;
    background: var(--glass-border);
}

.room-actions {
    display: flex;
    gap: 10px;
}

    .room-actions .btn {
        flex: 1;
        text-align: center;
    }

/* ===== ROOM DETAILS ===== */
.room-detail-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-status-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 2;
}

    .room-status-badge.unavailable {
        background: rgba(255, 82, 82, 0.2);
        color: #FF8A80;
        border: 1px solid rgba(255, 82, 82, 0.3);
    }

    .room-status-badge.featured {
        background: rgba(0, 0, 0, 0.7);
        color: var(--gold);
        border: 1px solid var(--gold);
        backdrop-filter: blur(5px);
    }

.room-extras {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--gray-mid);
}

    .room-extras i {
        color: var(--gold);
        margin-right: 4px;
    }

.amenities-full-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-full-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-light);
}

    .amenity-full-item i {
        font-size: 0.7rem;
    }

/* ===== SIDEBAR & BOOKING ===== */
.sidebar-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--gray-light);
    font-size: 0.9rem;
}

    .sidebar-info-item i {
        color: var(--gold);
        width: 20px;
        text-align: center;
    }

    .sidebar-info-item:last-child {
        border-bottom: none;
    }

.selected-room-info {
    border: 1px solid var(--gold-medium);
}

.detail-item {
    margin-bottom: 12px;
}

.detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-mid);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--white);
}

.booking-card {
    transition: var(--transition-fast);
}

    .booking-card:hover {
        border-color: var(--gold-medium);
    }

/* ===== WHY CHOOSE US ===== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    padding: 35px 30px;
    text-align: center;
}

.why-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.why-card h4 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.why-card p {
    color: var(--gray-mid);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ===== FACILITIES ===== */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.facility-item {
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    cursor: default;
}

    .facility-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20%;
        width: 60%;
        height: 2px;
        background: var(--gold-gradient-subtle);
        transform: scaleX(0);
        transition: transform var(--transition);
    }

    .facility-item:hover {
        transform: translateY(-5px);
        border-color: var(--gold);
    }

        .facility-item:hover::after {
            transform: scaleX(1);
        }

    .facility-item .facility-icon {
        font-size: 2rem;
        color: var(--gold);
        margin-bottom: 12px;
    }

    .facility-item span {
        display: block;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 5px;
        color: var(--gray-light);
    }

    .facility-item small {
        color: var(--gray-mid);
        font-size: 0.75rem;
    }

/* ===== INFO CARDS ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    padding: 35px;
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

    .info-card-header i {
        font-size: 1.5rem;
        color: var(--gold);
    }

    .info-card-header h3 {
        font-family: var(--font-heading);
        color: var(--gold);
        margin: 0;
    }

.info-card h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.terms-list {
    list-style: none;
}

    .terms-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
        font-size: 0.9rem;
        color: var(--gray-light);
    }

        .terms-list li:last-child {
            border-bottom: none;
        }

        .terms-list li i {
            color: var(--gold);
            margin-top: 3px;
            font-size: 0.8rem;
        }

.highlight {
    color: var(--gold);
    font-weight: 600;
}

.special-note {
    color: var(--gold-light);
    font-weight: 500;
    margin-top: 15px;
    padding: 12px 20px;
    background: var(--gold-pale);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

/* ===== LOCATION SECTION ===== */
.address-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px 40px;
}

.address-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.address-card h3 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

.address-details p {
    margin: 8px 0;
    color: var(--gray-light);
}

.address-contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.contact-link {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

    .contact-link i {
        color: var(--gold);
    }

    .contact-link:hover {
        color: var(--gold);
    }

.map-placeholder {
    border: 1px dashed var(--glass-border);
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.02);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding-bottom: 100px;
}

.cta-card {
    padding: 60px 40px;
    max-width: 700px;
    margin: 0 auto;
}

    .cta-card h2 {
        font-family: var(--font-heading);
        color: var(--gold);
        margin-bottom: 15px;
    }

    .cta-card p {
        color: var(--gray-light);
        margin-bottom: 30px;
    }

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ADMIN LAYOUT ===== */
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-card {
    padding: 25px 20px;
}

.stat-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-mid);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

    .admin-table th {
        text-align: left;
        padding: 14px 16px;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--gray-mid);
        border-bottom: 1px solid var(--glass-border);
        font-weight: 500;
    }

    .admin-table td {
        padding: 14px 16px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        color: var(--gray-light);
    }

    .admin-table tr:hover td {
        background: rgba(212, 175, 55, 0.03);
    }

/* ===== FORM STYLES ===== */
.form-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    outline: none;
}

    .form-input:focus,
    .form-textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
        background: rgba(255, 255, 255, 0.08);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item i {
        color: var(--gold);
        width: 20px;
        text-align: center;
    }

    .contact-item:hover {
        color: var(--gold);
        padding-left: 10px;
    }

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    position: fixed;
    top: 100px;
    right: 20px;
    min-width: 350px;
    max-width: 500px;
    padding: 0;
    border-radius: var(--radius-md);
    z-index: 2000;
    display: flex;
    align-items: stretch;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

    .toast.show {
        transform: translateX(0);
        opacity: 1;
    }

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 1.5rem;
    min-width: 60px;
}

.toast-content {
    flex: 1;
    padding: 16px 0;
}

.toast-title {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.toast-message {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray-mid);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1rem;
}

    .toast-close:hover {
        color: var(--white);
    }

.toast-success {
    background: rgba(0, 20, 10, 0.9);
    border: 1px solid rgba(0, 200, 83, 0.3);
}

    .toast-success .toast-icon {
        background: rgba(0, 200, 83, 0.15);
        color: #69F0AE;
    }

    .toast-success .toast-title {
        color: #69F0AE;
    }

.toast-error {
    background: rgba(20, 0, 0, 0.9);
    border: 1px solid rgba(255, 82, 82, 0.3);
}

    .toast-error .toast-icon {
        background: rgba(255, 82, 82, 0.15);
        color: #FF8A80;
    }

    .toast-error .toast-title {
        color: #FF8A80;
    }

/* ===== FOOTER ===== */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 40px;
}

.footer-col h4 {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    height: 36px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-logo span {
    color: var(--gold-light);
}

.footer-desc {
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--glass-border);
        color: var(--gray-light);
        transition: all var(--transition-fast);
        font-size: 0.9rem;
    }

        .footer-social a:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: var(--gold-pale);
            transform: translateY(-3px);
        }

.footer-col ul {
    list-style: none;
}

    .footer-col ul li {
        margin-bottom: 12px;
    }

        .footer-col ul li a {
            color: var(--gray-mid);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition-fast);
            position: relative;
            padding-left: 0;
        }

            .footer-col ul li a::before {
                content: '';
                position: absolute;
                left: -15px;
                top: 50%;
                width: 0;
                height: 1px;
                background: var(--gold);
                transition: all var(--transition-fast);
            }

            .footer-col ul li a:hover {
                color: var(--gold);
                padding-left: 10px;
            }

                .footer-col ul li a:hover::before {
                    width: 10px;
                }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-mid);
    font-size: 0.9rem;
    line-height: 1.6;
}

    .footer-contact li i {
        color: var(--gold);
        margin-top: 4px;
        font-size: 0.9rem;
    }

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: var(--gray-mid);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
}

    .footer-hours li span {
        color: var(--gold);
        font-weight: 500;
    }

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 25px 24px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .footer-bottom-content p {
        color: var(--gray-mid);
        font-size: 0.8rem;
        margin: 0;
    }

.footer-tagline {
    color: var(--gold) !important;
    letter-spacing: 2px;
    font-weight: 500;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-mid);
    font-size: 0.8rem;
}

    .footer-payment span {
        margin-right: 5px;
    }

    .footer-payment i {
        font-size: 1.2rem;
        color: var(--gray-light);
        transition: var(--transition-fast);
    }

        .footer-payment i:hover {
            color: var(--gold);
        }

/* ===== UTILITY CLASSES ===== */
.badge-gold {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--gold-pale);
}

.about-icon {
    display: inline-block;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

.small {
    font-size: 0.85rem;
}

.fw-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-white {
    color: var(--white);
}

.text-muted {
    color: var(--gray-mid);
}

.text-end {
    text-align: right;
}

/* Margin Utilities */
.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 25px;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 3rem;
}

/* Padding Utilities */
.pt-0 {
    padding-top: 0;
}

.p-3 {
    padding: 20px;
}

.p-4 {
    padding: 30px;
}

.p-5 {
    padding: 40px;
}

/* Width */
.w-100 {
    width: 100%;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

/* Flexbox Utilities */
.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-grow-1 {
    flex-grow: 1;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.gap-2 {
    gap: 10px;
}

.gap-3, .g-3 {
    gap: 20px;
}

.gap-4, .g-4 {
    gap: 25px;
}

/* Grid Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col-sm-6 {
    flex: 1 1 250px;
}

.col-md-4 {
    flex: 1 1 280px;
}

.col-md-6 {
    flex: 1 1 300px;
}

.col-md-8 {
    flex: 1 1 500px;
}

.col-lg-4 {
    flex: 1 1 300px;
}

.col-lg-5 {
    flex: 1 1 350px;
}

.col-lg-7 {
    flex: 1 1 450px;
}

.col-lg-8 {
    flex: 1 1 500px;
}

/* Divider */
.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-medium), transparent);
    margin: 40px 0;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--pure-black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--gold);
    }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--glass-bg-heavy);
    border: 1px solid var(--glass-border);
    color: var(--gold);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-bounce);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

    .back-to-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--gold);
        color: var(--pure-black);
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: var(--shadow-gold);
    }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px 0;
        --card-padding: 30px;
    }

    .nav-links {
        gap: 20px;
    }

        .nav-links a {
            font-size: 0.75rem;
        }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .toast {
        min-width: 300px;
        max-width: 400px;
    }

    .room-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
}

/* Mobile (768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
        --card-padding: 25px;
    }

    .brand-icon-img {
        height: 40px;
    }

    .brand-text-img {
        height: 38px;
        max-width: 120px;
    }

    .hero-logo {
        max-width: 320px;
    }

    /* Hide desktop nav, show mobile menu button */
    .nav-links,
    .nav-auth {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero adjustments */
    .hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }

        .hero h1 {
            font-size: 2.5rem;
            letter-spacing: 2px;
        }

        .hero .tagline {
            letter-spacing: 4px;
            font-size: 0.7rem;
        }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

        .hero-actions .btn {
            width: 100%;
            max-width: 300px;
        }

    .scroll-indicator {
        margin-top: 40px;
    }

    /* Room grid adjustments */
    .room-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .room-actions {
        flex-direction: column;
    }

        .room-actions .btn {
            width: 100%;
        }

    .room-detail-image {
        height: 250px;
    }

    .room-pricing {
        flex-direction: column;
        gap: 15px;
    }

    .price-divider {
        width: 100%;
        height: 1px;
    }

    /* Why choose us */
    .why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Facilities */
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* Info cards */
    .info-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Section headers */
    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    /* CTA */
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

        .cta-actions .btn {
            width: 100%;
            max-width: 300px;
        }

    .cta-card {
        padding: 40px 25px;
    }

    /* Address */
    .address-contact {
        flex-direction: column;
        align-items: center;
    }

    .address-card {
        padding: 35px 25px;
    }

    /* Amenities */
    .amenities-full-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-hours li {
        max-width: 250px;
        margin: 0 auto;
    }

    .footer-col ul li a:hover {
        padding-left: 0;
    }

    .footer-col ul li a::before {
        display: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    /* Toast */
    .toast {
        left: 20px;
        right: 20px;
        min-width: auto;
        max-width: none;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Grid utilities */
    .row {
        flex-direction: column;
    }

    .col-sm-6,
    .col-md-4,
    .col-md-6,
    .col-md-8,
    .col-lg-4,
    .col-lg-5,
    .col-lg-7,
    .col-lg-8 {
        flex: 1 1 100%;
    }

    /* Admin */
    .admin-container {
        padding: 90px 16px 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero {
        min-height: 250px;
    }

    .page-hero-sm {
        min-height: 180px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .facility-item {
        padding: 20px 15px;
    }

    .room-card-body {
        padding: 20px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .toast-content {
        padding: 12px 0;
    }

    .toast-icon {
        padding: 15px;
        font-size: 1.2rem;
        min-width: 50px;
    }

    .hero {
        padding: 80px 15px 50px;
    }

        .hero h1 {
            font-size: 2rem;
        }

        .hero .tagline {
            letter-spacing: 3px;
        }

    .hero-badge {
        padding: 6px 18px;
        font-size: 0.7rem;
    }

    .nav-container {
        padding: 10px 15px;
    }

    .mobile-menu {
        padding: 80px 20px 30px;
    }

        .mobile-menu a {
            font-size: 1rem;
            padding: 12px 15px;
        }

    .glass-card {
        border-radius: var(--radius-md);
    }

    .glass-panel {
        padding: 20px;
    }

    .section {
        padding: 40px 0;
    }

    .stat-card {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}
