@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

/* --- SEMANTIC DESIGN SYSTEM TOKENS & THEMING ARCHITECTURE --- */
:root {
    /* Form Label Tokens */
    --font-label-size: 0.75rem; /* 12px minimum */
    --font-label-weight: 600;
    --font-label-tracking: 0.05em;
    --nav-height: 80px;

    /* Base Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', 'Manrope', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Light Theme Variables (Default) */
:root, :root[data-theme="light"] {
    --bg-primary: #FAF8F5;
    --bg-surface: #FFFFFF;
    --bg-surface-elevated: #F3EFEA;
    --text-primary: #1C1917;
    --text-secondary: #57534E;
    --text-muted: #78716C;
    --border-subtle: #E7E5E4;
    --accent-gold: #8C6D23; /* Darkened gold for WCAG AA compliance on light backgrounds */
    --accent-gold-hover: #705619;
    --whatsapp-green: #1EBE5D;
    
    /* Legacy aliases for backward compatibility */
    --primary-gold: #8C6D23;
    --primary-gold-hover: #705619;
    --gold-accent: #8C6D23;
    --gold-bright: #A27E2B;
    --gold-light: #FFF5D6;
    --gold-gradient: linear-gradient(135deg, #705619 0%, #8C6D23 50%, #A27E2B 100%);
    --dark-charcoal: #171717;
    --dark-card: #1F1F1F;
    --dark-border: rgba(140, 109, 35, 0.25);
    --light-bg: #FAF8F5;
    --light-card: #FFFFFF;
    --light-border: #E7E5E4;
    --text-dark: #1C1917;
    --text-muted-dark: #57534E;
    --text-light: #F8F9FA;
    --text-muted-light: #78716C;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(140, 109, 35, 0.25);
    --glass-blur: blur(16px);
}

/* Dark Theme Variables */
:root[data-theme="dark"], html.dark, body.dark-mode {
    --bg-primary: #121212;
    --bg-surface: #1A1A1A;
    --bg-surface-elevated: #242424;
    --text-primary: #F5F5F4;
    --text-secondary: #D6D3D1;
    --text-muted: #A8A29E;
    --border-subtle: #2E2E2E;
    --accent-gold: #D4AF37; /* Luminous temple gold for dark surfaces */
    --accent-gold-hover: #E5C358;
    --whatsapp-green: #25D366;
    
    /* Legacy aliases for backward compatibility */
    --primary-gold: #D4AF37;
    --primary-gold-hover: #E5C358;
    --gold-accent: #B8924F;
    --gold-bright: #D4AF37;
    --gold-light: #FFF5D6;
    --gold-gradient: linear-gradient(135deg, #FFF5D6 0%, #E6C280 30%, #C6A66B 60%, #B8924F 100%);
    --dark-charcoal: #121212;
    --dark-card: #1A1A1A;
    --dark-border: rgba(212, 175, 55, 0.25);
    --light-bg: #121212;
    --light-card: #1A1A1A;
    --light-border: #2E2E2E;
    --text-dark: #F5F5F4;
    --text-muted-dark: #D6D3D1;
    --text-light: #F5F5F4;
    --text-muted-light: #A8A29E;
    --glass-bg: rgba(23, 23, 23, 0.88);
    --glass-border: rgba(212, 175, 55, 0.35);
    --glass-blur: blur(16px);
}

body, .theme-transition {
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

body.dark-mode, [data-theme="dark"] body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

h1, h2, h3, h4, h5, h6, .font-luxury-serif {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Glassmorphism Classes */
.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: 12px;
}

.glass-navbar {
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

/* Luxury Theme Enhancements */
.text-gold {
    color: var(--primary-gold) !important;
}

.bg-gold {
    background-color: var(--primary-gold) !important;
}

.btn-gold {
    background-color: var(--primary-gold);
    color: #111111;
    font-weight: 600;
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    background-color: var(--primary-gold-hover);
    border-color: var(--primary-gold-hover);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.4);
}

.btn-outline-gold {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    border-radius: 4px;
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-outline-gold:hover {
    background-color: var(--primary-gold);
    color: #111111;
    transform: translateY(-2px);
}

/* Room & Hotel Cards */
.luxury-card {
    background: var(--light-card);
    border: 1px solid var(--light-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

body.dark-mode .luxury-card {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(170, 140, 100, 0.15);
}

@keyframes luxuryShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(90deg, #18191b 25%, #2a251e 50%, #18191b 75%);
    background-size: 200% 100%;
    animation: luxuryShimmer 2s infinite linear;
}

.luxury-card-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid rgba(197, 160, 89, 0.25);
    border-radius: 50%;
    z-index: 0;
}

.luxury-card-img,
.property-card-img,
.room-card-img,
img.object-fit-cover {
    position: relative;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 16 / 9;
    object-fit: cover !important;
    object-position: center 30% !important;
    transition: var(--transition-smooth);
}

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

/* Custom Booking Widget */
.booking-widget-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-border);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 24px;
}

body.dark-mode .booking-widget-container {
    background: var(--dark-card);
    border-color: var(--dark-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Sticky Booking CTA for Mobile */
.sticky-booking-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    z-index: 999;
    display: none;
}

@media (max-width: 767.98px) {
    .sticky-booking-cta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* Custom Micro-Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Skeleton Loading styles */
.skeleton {
    background: linear-gradient(90deg, #f0ece9 25%, #e0dcd9 50%, #f0ece9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

body.dark-mode .skeleton {
    background: linear-gradient(90deg, #222 25%, #333 50%, #222 75%);
    background-size: 200% 100%;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Dashboard Sidebars */
.admin-sidebar {
    background-color: var(--dark-charcoal);
    border-right: 1px solid var(--dark-border);
    min-height: calc(100vh - 56px);
}

.admin-sidebar .nav-link {
    color: var(--text-muted-light);
    transition: var(--transition-smooth);
    padding: 12px 20px;
}

.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
    color: var(--primary-gold);
    background-color: rgba(255,255,255,0.02);
}

/* --- HOMEPAGE LUXURY REDESIGN ENHANCEMENTS (V2 POLISH) --- */
.section-padding-luxury {
    padding-top: 130px;
    padding-bottom: 130px;
}

@media (max-width: 768px) {
    .section-padding-luxury {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

.hero-ken-burns {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: kenBurnsZoom 22s cubic-bezier(0.25, 1, 0.5, 1) infinite alternate;
}

@keyframes kenBurnsZoom {
    0% { transform: scale(1.00); }
    100% { transform: scale(1.06); }
}

.hero-overlay-rich {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.45) 0%, rgba(23, 23, 23, 0.78) 75%, #171717 100%);
}

.hero-glass-badge {
    background: rgba(23, 23, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(198, 166, 107, 0.35);
    color: #C6A66B;
    padding: 8px 22px;
    border-radius: 30px;
    letter-spacing: 3px;
    font-weight: 600;
}

.luxury-hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.6rem, 5.2vw, 4.5rem);
    font-weight: 600;
    line-height: 1.15;
    background: linear-gradient(135deg, #FFF5D6 0%, #E6C280 30%, #C6A66B 60%, #B8924F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.luxury-section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.0rem, 3.8vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 2px;
    color: #2B2B2B;
}

body.dark-mode .luxury-section-title {
    color: #F8F9FA;
}

.hero-container {
    min-height: calc(100vh - var(--nav-height, 80px));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
    position: relative;
    z-index: 3;
}

.hero-cta-group {
    margin-bottom: 2.5rem;
}

.booking-engine-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
}

@media (max-width: 991.98px) {
    .hero-container {
        min-height: auto;
        padding-top: 3.5rem;
        padding-bottom: 2.5rem;
    }
    .booking-engine-wrapper {
        margin-top: 0;
        padding-top: 1.5rem;
    }
}

/* Secondary Hero CTA with Backdrop Blur */
.btn-secondary-hero {
    background: rgba(18, 18, 18, 0.45) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    color: #F8F9FA !important;
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    text-transform: uppercase;
    font-weight: 500;
}

.btn-secondary-hero:hover {
    background: rgba(212, 175, 55, 0.22) !important;
    border-color: var(--accent-gold) !important;
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Form Micro-Labels */
.form-label-luxury {
    font-size: var(--font-label-size, 0.75rem) !important;
    font-weight: var(--font-label-weight, 600) !important;
    letter-spacing: var(--font-label-tracking, 0.05em) !important;
    text-transform: uppercase !important;
    opacity: 0.9 !important;
    color: var(--accent-gold) !important;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

/* Trust Marker Badges */
.trust-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.95rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    font-weight: 500;
    color: #D6D3D1;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    transition: var(--transition-smooth);
}

:root[data-theme="light"] .trust-pill-badge {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--text-secondary);
}

.trust-pill-badge:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-1px);
}

/* Consolidated Floating Speed-Dial */
.floating-speed-dial {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 0.75rem;
}

.speed-dial-trigger {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.speed-dial-trigger:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.speed-dial-trigger i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.floating-speed-dial.active .speed-dial-trigger {
    background: #242424;
    color: #F5F5F4;
}

.floating-speed-dial.active .speed-dial-trigger i {
    transform: rotate(45deg);
}

.speed-dial-menu {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease-out;
}

.floating-speed-dial.active .speed-dial-menu,
.floating-speed-dial:hover .speed-dial-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.speed-dial-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.speed-dial-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    border: none;
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.speed-dial-btn:hover {
    transform: scale(1.1);
}

.speed-dial-label {
    background: rgba(18, 18, 18, 0.9);
    color: #F8F9FA;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

:root[data-theme="light"] .speed-dial-label {
    background: #FFFFFF;
    color: #1C1917;
    border-color: #E7E5E4;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-glass-card {
    background: rgba(23, 23, 23, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(198, 166, 107, 0.4);
    border-radius: 16px;
    padding: 36px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(198, 166, 107, 0.15);
}

.booking-glass-card .form-control,
.booking-glass-card .form-select {
    background-color: rgba(17, 17, 17, 0.8) !important;
    color: #FFF5D6 !important;
    border: 1px solid rgba(198, 166, 107, 0.3) !important;
    border-radius: 12px;
    min-height: 52px;
    padding: 10px 14px !important;
    font-size: 0.88rem !important;
    transition: all 0.3s ease;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-glass-card .form-control:focus,
.booking-glass-card .form-select:focus {
    border-color: #C6A66B !important;
    box-shadow: 0 0 15px rgba(198, 166, 107, 0.35) !important;
}

.btn-gold {
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-gold:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(198, 166, 107, 0.4) !important;
}

.btn-outline-gold {
    border-radius: 12px !important;
    padding: 14px 32px !important;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.btn-outline-gold:hover {
    transform: translateY(-3px) !important;
}

.trust-badge-pill {
    font-size: 0.85rem;
    color: rgba(255, 245, 214, 0.95);
    letter-spacing: 0.5px;
    font-weight: 500;
}

.luxury-property-card {
    background: #FFFFFF;
    border: 1px solid rgba(198, 166, 107, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

body.dark-mode .luxury-property-card {
    background: var(--dark-card);
    border-color: rgba(198, 166, 107, 0.3);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.luxury-property-card:hover {
    transform: translateY(-8px);
    border-color: #C6A66B;
    box-shadow: 0 22px 50px rgba(198, 166, 107, 0.25);
}

.luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 285px !important;
}

.luxury-property-card:hover .luxury-card-img {
    transform: scale(1.05);
}

.timeline-step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(198, 166, 107, 0.2), rgba(184, 146, 79, 0.05));
    border: 1px solid rgba(198, 166, 107, 0.45);
    color: #C6A66B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.timeline-card {
    border-top: 3px solid #C6A66B !important;
    transition: all 0.35s ease;
}

.timeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(198, 166, 107, 0.2);
}

.timeline-card:hover .timeline-step-icon {
    background: #C6A66B;
    color: #171717;
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(198, 166, 107, 0.45);
}

.review-card-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C6A66B, #B8924F);
    color: #171717;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(198, 166, 107, 0.35);
}

.stat-number {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    color: #C6A66B;
}

/* --- PRODUCTION LUXURY FOOTER STYLING --- */
.footer-heading {
    font-family: 'Cinzel', serif;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    color: #C6A66B !important;
    margin-bottom: 20px !important;
}

.footer-link {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #B8B8B8 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, opacity 0.2s ease !important;
}

.footer-link:hover {
    color: #C6A66B !important;
}

.footer-desc {
    font-size: 16px !important;
    line-height: 1.8 !important;
    max-width: 320px !important;
    color: #C5C5C5 !important;
}

.hover-gold-link {
    color: #C6A66B !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.hover-gold-link:hover {
    color: #E6C280 !important;
    opacity: 0.9;
}
/* --- ENTERPRISE HOSPITALITY PMS 280PX SIDEBAR & UI LAYOUT SYSTEM --- */
.pms-app-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: var(--light-bg);
}

.pms-sidebar {
    width: 280px;
    min-width: 280px;
    background: #121417;
    color: #F8F9FA;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1040;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}

.pms-sidebar-brand {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pms-sidebar-nav {
    padding: 1rem 0.75rem;
    flex-grow: 1;
}

.pms-nav-group-title {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888888;
    padding: 0.75rem 1rem 0.35rem 1rem;
}

.pms-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    color: #D1D5DB;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 2px;
}

.pms-nav-link:hover {
    color: #FFF5D6;
    background: rgba(212, 175, 55, 0.12);
}

.pms-nav-link.active {
    color: #121417;
    background: linear-gradient(135deg, #FFF5D6 0%, #D4AF37 100%);
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.pms-main-content {
    margin-left: 280px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #F8F8F5;
}

.pms-header {
    height: 70px;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.pms-card-luxury {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 250ms ease;
}

.pms-card-luxury:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.btn-pms-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
    color: #121417;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    padding: 0.6rem 1.25rem;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    transition: all 200ms ease;
}

.btn-pms-gold:hover {
    background: linear-gradient(135deg, #E6C280 0%, #D4AF37 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

@media (max-width: 992px) {
    .pms-sidebar {
        transform: translateX(-100%);
    }
    .pms-sidebar.show {
        transform: translateX(0);
    }
    .pms-main-content {
        margin-left: 0;
    }
}

/* Luxury Property & Room Cards */
.luxury-property-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .luxury-property-card {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.luxury-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(197, 160, 89, 0.18);
}

.luxury-property-card .luxury-card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 260px;
    min-height: 260px;
    background: linear-gradient(135deg, #18191b 0%, #28241e 100%);
}

/* Custom Luxury FAQ Accordion */
.accordion-item {
    border-color: rgba(197, 160, 89, 0.2) !important;
}

.accordion-button {
    background-color: #ffffff;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

body.dark-mode .accordion-button {
    background-color: #1e1e1e;
    color: #f5f5f0;
}

.accordion-button:not(.collapsed) {
    color: #c5a059 !important;
    background-color: rgba(197, 160, 89, 0.08) !important;
    border-color: rgba(197, 160, 89, 0.3) !important;
    box-shadow: none !important;
}

.accordion-button:focus,
.accordion-button:active,
.accordion-button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 89, 0.2) !important;
    border-color: #c5a059 !important;
}

.accordion-button::after {
    filter: sepia(1) hue-rotate(5deg) saturate(3);
}

/* Review Card Avatar */
.review-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5a059 0%, #a37f37 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
}

/* Floating Action Widgets Mobile Safety Gap */
@media (max-width: 767.98px) {
    .floating-contact-widgets,
    #aiAssistantContainer {
        bottom: 85px !important;
    }
}

