/* Professional Base Styles for VARS Royal Palaces */
/* Color Scheme: Rose Gold (#C77D7D), Soft Blush (#F7E7E7), Navy Blue (#0E1C40), Shine Gold (#E5B75D), Crisp White (#FFFFFF) */

:root {
    --primary-rose: #C77D7D;
    --primary-gold: #E5B75D;
    --primary-blush: #F7E7E7;
    --secondary-navy: #081228;
    --accent-navy: #112A4A;
    --text-light: #FFFFFF;
    --text-dark: #17223B;
    --background-light: #FAF4F3;
    --shadow: rgba(8, 18, 40, 0.30);
    --accent-dark: #061021;
    --border-radius: 10px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: radial-gradient(circle at top left, rgba(199, 125, 125, 0.12), transparent 35%),
        linear-gradient(180deg, var(--background-light) 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: clamp(56px, 6vh, 64px);
    /* Clearance for fixed navbar */
}

body.has-admin-bar,
body:has(.public-admin-bar) {
    padding-top: calc(clamp(56px, 6vh, 64px) + 42px);
    /* Clearance for admin bar + fixed navbar */
}

body.portal-viewport-layout {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Unified Palace Top Fixed Header Container */
.palace-top-sticky-wrapper {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    max-width: 100vw;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Public Floating Admin Quick Bar - Zero-Overflow, Fits Exactly in Window */
.public-admin-bar {
    background: #020617;
    color: #f8fafc;
    border-bottom: 2px solid var(--primary-gold);
    min-height: 42px;
    height: 42px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 clamp(0.5rem, 1.2vw, 1.25rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    position: relative;
    top: auto;
    z-index: 2;
    flex-wrap: nowrap;
    gap: 0.5rem;
    overflow: hidden;
}

.public-admin-bar-info {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 600;
    font-size: clamp(0.72rem, 0.76vw, 0.8rem);
    white-space: nowrap;
    flex-shrink: 0;
}

.public-admin-bar-user {
    max-width: clamp(90px, 10vw, 180px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #f1f5f9;
}

.public-admin-bar-tag {
    background: var(--primary-gold);
    color: #0f172a;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.public-admin-bar-links {
    display: flex;
    gap: clamp(2px, 0.28vw, 5px);
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    min-width: 0;
    max-width: 100%;
    flex-shrink: 1;
}

.public-admin-bar-links::-webkit-scrollbar {
    display: none;
}

.public-admin-link {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    padding: 0.2rem clamp(0.35rem, 0.45vw, 0.55rem);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    text-decoration: none;
    font-size: clamp(0.72rem, 0.75vw, 0.79rem);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.public-admin-link:hover {
    background: var(--primary-gold);
    color: #0f172a;
    border-color: var(--primary-gold);
    font-weight: 700;
}

.public-admin-link.active {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.45) 0%, rgba(197, 160, 89, 0.2) 100%);
    color: #fef08a;
    border-color: var(--primary-gold);
    font-weight: 700;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.35);
}

@media (max-width: 900px) {
    .public-admin-bar {
        height: auto;
        min-height: 42px;
        padding: 0.35rem 0.5rem;
    }

    .public-admin-bar-info {
        font-size: 0.72rem;
    }
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, var(--secondary-navy), var(--accent-dark));
    position: relative;
    top: auto;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

.navbar {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(14px, 2vw, 32px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: clamp(56px, 6vh, 64px);
    gap: clamp(10px, 1.5vw, 24px);
}

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

.brand-logo {
    width: clamp(38px, 3.2vw, 50px);
    height: auto;
    border-radius: 12px;
    padding: 4px;
    background: radial-gradient(circle at 30% 30%, rgba(229, 183, 93, 0.20), transparent 60%);
    border: 2px solid rgba(229, 183, 93, 0.85);
    box-shadow: 0 4px 14px rgba(14, 28, 64, 0.22);
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.brand-text {
    font-size: clamp(1.05rem, 1.35vw, 1.45rem);
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.brand:hover .brand-logo {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(199, 125, 125, 0.35);
    filter: drop-shadow(0 0 12px rgba(229, 183, 93, 0.35));
}

.brand:hover .brand-text {
    color: var(--primary-rose);
    transform: translateX(2px);
}

.brand:hover {
    color: var(--text-light);
    transform: scale(1.05);
}

.banquet-image-showcase {
    position: relative;
    width: 100%;
    margin: 1.5rem 0 1.5rem;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(8, 18, 40, 0.30);
    min-height: 260px;
    max-height: 340px;
    background: var(--secondary-navy);
}

.banquet-image-showcase.compact {
    min-height: 240px;
    max-height: 300px;
}

.banquet-image-showcase img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 240px;
    transition: transform 0.45s ease;
}

.banquet-image-showcase:hover img {
    transform: scale(1.02);
}

.banquet-showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(14, 28, 64, 0.05), rgba(8, 18, 40, 0.90));
}

.banquet-showcase-overlay div {
    max-width: 520px;
    color: var(--text-light);
}

.banquet-showcase-overlay span {
    display: inline-block;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(229, 183, 93, 0.95);
}

.banquet-showcase-overlay h3 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
    line-height: 1.05;
}

.banquet-showcase-overlay p {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.7;
}

.page-hero-block {
    display: grid;
    grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.85fr);
    gap: 2rem;
    align-items: center;
    margin: 2rem 0 2.5rem;
}

.page-hero-block .hero-image,
.page-hero-block .hero-copy {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(8, 18, 40, 0.22);
}

.page-hero-block .hero-image {
    position: relative;
    min-height: 280px;
}

.page-hero-block .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.page-hero-block .hero-image:hover img {
    transform: scale(1.03);
}

.page-hero-block .hero-copy {
    background: linear-gradient(180deg, rgba(14, 28, 64, 0.95), rgba(21, 37, 81, 0.95));
    padding: 2rem;
    color: var(--text-light);
}


.page-hero-block .hero-copy h2 {
    margin-top: 0;
    font-size: clamp(2rem, 3vw, 2.5rem);
}

.page-hero-block .hero-copy p {
    margin: 1rem 0 1.5rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.photo-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(8, 18, 40, 0.18);
    background: #09182d;
}

.photo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.photo-card::after {
    content: '';
    display: block;
    padding-bottom: 0.2%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: clamp(6px, 1vw, 16px);
    flex-wrap: nowrap;
    align-items: center;
}

.nav-links li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: clamp(5px, 0.7vh, 8px) clamp(8px, 0.75vw, 12px);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    font-size: clamp(0.82rem, 0.88vw, 0.94rem);
    white-space: nowrap;
}

.nav-links li a:hover {
    background-color: rgba(199, 125, 125, 0.17);
    color: var(--text-light);
    transform: translateY(-2px);
}

.nav-links li a.active,
.nav-links li a.active:hover {
    background-color: rgba(229, 183, 93, 0.18);
    color: var(--text-light);
    box-shadow: inset 0 0 0 1px rgba(229, 183, 93, 0.35);
    transform: translateY(-1px);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-rose);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 6px;
    font-size: 0.7rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 290px;
    padding: 10px 0 6px 0;
    list-style: none;
    border: 1px solid rgba(223, 190, 122, 0.35);
    background: linear-gradient(145deg, rgba(8, 18, 45, 0.98), rgba(16, 32, 75, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(223, 190, 122, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    z-index: 1000;
}

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

/* Seamless Hover Bridge from Nav Item to Dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 14px;
    background: transparent;
    pointer-events: auto;
}

/* Right-align dropdowns near the viewport right edge to prevent overflow */
.dropdown-menu.dropdown-menu-end,
.nav-links li.dropdown:last-child .dropdown-menu,
.nav-links li.dropdown:nth-last-child(2) .dropdown-menu {
    left: auto !important;
    right: 0 !important;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 0.92rem;
    white-space: nowrap;
}

.dropdown-menu a.active {
    color: var(--primary-gold);
    background-color: rgba(197, 160, 89, 0.18);
    font-weight: 700;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--primary-gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.dropdown-menu a.active::before,
.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:hover {
    background-color: rgba(197, 160, 89, 0.15);
    color: var(--primary-gold);
    padding-left: 26px;
}

/* Suppress simple a::before on rich items that already have border-left or custom button styling */
.dropdown-menu .dropdown-item::before,
.dropdown-menu .submenu a::before,
.dropdown-cta-link::before {
    display: none !important;
}

.dropdown-menu .dropdown-cta-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px !important;
    border-left: none !important;
}

.dropdown-menu .dropdown-cta-link:hover {
    padding-left: 18px !important;
}

/* ── Ultra-Luxury Banquet & Navbar Dropdown Styles ── */
.has-submenu {
    position: relative;
}

.banquet-dropdown-menu,
.dropdown-menu {
    min-width: 290px;
    padding: 10px 0 6px 0;
    border: 1px solid rgba(223, 190, 122, 0.35);
    background: linear-gradient(145deg, rgba(8, 18, 45, 0.98), rgba(16, 32, 75, 0.98));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(223, 190, 122, 0.12);
}

.dropdown-menu .dropdown-item,
.dropdown-menu .submenu-toggle,
.banquet-dropdown-menu .dropdown-item,
.banquet-dropdown-menu .submenu-toggle {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 18px !important;
    font-size: 0.9rem;
    color: #f1f5f9 !important;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    cursor: pointer;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .submenu-toggle:hover,
.banquet-dropdown-menu .dropdown-item:hover,
.banquet-dropdown-menu .submenu-toggle:hover,
.has-submenu:hover > .submenu-toggle,
.has-submenu.active > .submenu-toggle {
    background: rgba(223, 190, 122, 0.14) !important;
    border-left-color: #dfbe7a !important;
    padding-left: 22px !important;
    color: #dfbe7a !important;
}

.menu-item-icon {
    font-size: 1.15rem;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.dropdown-menu .dropdown-item:hover .menu-item-icon,
.dropdown-menu .submenu-toggle:hover .menu-item-icon,
.banquet-dropdown-menu .dropdown-item:hover .menu-item-icon,
.banquet-dropdown-menu .submenu-toggle:hover .menu-item-icon {
    transform: scale(1.15);
}

.menu-item-text {
    flex-grow: 1;
    font-weight: 500;
}

.submenu-arrow-indicator {
    margin-left: auto;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    color: #dfbe7a;
    padding-left: 10px;
    transition: transform 0.25s ease, color 0.25s ease;
}

.has-submenu:hover .submenu-arrow-indicator,
.has-submenu.active .submenu-arrow-indicator {
    transform: translateX(4px);
    color: #ffd98f;
}

/* Submenu Flyout (Desktop) */
.submenu {
    position: absolute;
    top: -6px;
    left: calc(100% + 4px);
    background: linear-gradient(145deg, rgba(8, 18, 45, 0.98), rgba(16, 32, 75, 0.98));
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    list-style: none;
    padding: 10px 0;
    min-width: 310px;
    max-width: 340px;
    border-radius: 12px;
    border: 1px solid rgba(223, 190, 122, 0.35);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(223, 190, 122, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1050;
    pointer-events: none;
}

/* Seamless Hover Bridge - Prevents Diagonal Mouse Slip */
.submenu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 20px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
}

.has-submenu:hover > .submenu,
.has-submenu.active > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

/* Smart Boundary Flip for Viewport Edges */
.submenu.flip-left {
    left: auto !important;
    right: calc(100% + 4px) !important;
    transform-origin: top right;
}

.submenu.flip-left::before {
    left: auto !important;
    right: -20px !important;
}

.submenu-header-item {
    padding: 8px 18px 6px !important;
    font-size: 0.7rem !important;
    font-weight: 800 !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    color: #dfbe7a !important;
    border-bottom: 1px solid rgba(223, 190, 122, 0.2) !important;
    margin-bottom: 4px !important;
    background: transparent !important;
}

.submenu a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 9px 18px !important;
    color: #f1f5f9 !important;
    text-decoration: none;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
    white-space: normal !important;
}

.submenu a:hover,
.submenu a.active {
    background: rgba(223, 190, 122, 0.15) !important;
    border-left-color: #dfbe7a !important;
    padding-left: 24px !important;
}

.sub-item-icon {
    font-size: 1.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.sub-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sub-item-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    transition: color 0.2s ease;
}

.submenu a:hover .sub-item-title,
.submenu a.active .sub-item-title {
    color: #dfbe7a;
}

.sub-item-meta {
    font-size: 0.73rem;
    color: #dfbe7a;
    font-weight: 500;
    opacity: 0.9;
}

/* Banquet Dropdown CTA Button */
.dropdown-cta-wrapper {
    padding: 8px 14px 6px !important;
    margin-top: 6px;
    border-top: 1px solid rgba(223, 190, 122, 0.25);
}

.dropdown-cta-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #dfbe7a, #c5a059) !important;
    color: #081228 !important;
    font-weight: 700 !important;
    font-size: 0.86rem !important;
    padding: 10px 18px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 14px rgba(223, 190, 122, 0.35);
    text-decoration: none !important;
    transition: all 0.25s ease;
}

.dropdown-cta-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(223, 190, 122, 0.5) !important;
    background: linear-gradient(135deg, #ffd98f, #dfbe7a) !important;
}

/* CTA Link */
.cta-link {
    background: linear-gradient(135deg, var(--primary-gold), #d4a574);
    color: var(--secondary-navy) !important;
    border-radius: var(--border-radius);
    padding: 8px 14px !important;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(229, 183, 93, 0.25);
}

.cta-link:hover {
    box-shadow: 0 5px 20px rgba(229, 183, 93, 0.4) !important;
    transform: translateY(-1px) !important;
    background: linear-gradient(135deg, #d4a574, var(--primary-gold)) !important;
}

.cta-link::after {
    display: none !important;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        gap: 0;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, rgba(14, 28, 64, 0.98), rgba(21, 37, 81, 0.95));
        padding: 15px 0;
        border-bottom: 2px solid var(--primary-gold);
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 14px 20px;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .menu-toggle.active .hamburger {
        background-color: transparent;
    }

    .menu-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0);
        transform-origin: top;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
        background: rgba(21, 37, 81, 0.95);
        box-shadow: none;
        margin-top: 0;
        border: none;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
        max-height: 800px;
        overflow: visible;
    }

    .dropdown-menu a {
        padding-left: 40px;
    }

    .has-submenu {
        position: static;
    }

    .has-submenu .submenu {
        position: static !important;
        max-height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        border-left: 2px solid rgba(223, 190, 122, 0.4) !important;
        background: rgba(6, 14, 34, 0.75) !important;
        border-radius: 0 0 8px 8px !important;
        margin: 0 10px 6px 20px !important;
        padding: 0 !important;
        min-width: unset !important;
        max-width: 100% !important;
        transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
    }

    .has-submenu.active .submenu {
        max-height: 650px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 6px 0 !important;
    }

    .has-submenu.active .submenu-arrow-indicator {
        transform: rotate(90deg) !important;
        color: #dfbe7a !important;
    }

    .has-submenu .submenu a {
        padding-left: 18px !important;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: auto;
        padding: 10px 12px;
        gap: 8px;
    }

    .brand-logo {
        width: 40px;
    }

    .brand-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links li a {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .cta-link {
        padding: 6px 10px !important;
        font-size: 0.85rem !important;
    }

    h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.75rem);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links li {
    animation: slideDown 0.3s ease forwards;
}

.content {
    flex: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(20px, 2.5vw, 36px) clamp(16px, 2vw, 32px);
    width: 100%;
    overflow-x: clip;
}

.content:has(.admin-dashboard),
body:has(.admin-dashboard) .content {
    max-width: 1600px;
}

/* Palace Full-Bleed Dark Pages Support (Only when explicitly enabled via class) */
body.palace-dark-page {
    background: #071022 !important;
}

main.content.palace-fullbleed-main {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
}


/* Footer */
.footer {
    background: linear-gradient(180deg, var(--secondary-navy), var(--accent-dark));
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    margin-top: auto;
    border-top: 2px solid rgba(229, 183, 93, 0.45);
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 20px 15px;
    }

    .brand {
        font-size: 1.5rem;
    }

    .page-hero-block {
        grid-template-columns: 1fr;
    }

    .page-hero-block .hero-copy {
        padding: 1.5rem;
    }

    .photo-card img {
        height: 200px;
    }
}

/* Utility Classes */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 2vw, 28px);
    width: 100%;
}

.container.admin-dashboard {
    max-width: 1600px;
    padding: 0 clamp(12px, 1.5vw, 24px);
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-gold);
    color: var(--secondary-navy);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-dark);
    color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.hero {
    background: linear-gradient(135deg, rgba(14, 28, 64, 0.96), rgba(21, 37, 81, 0.92));
    border-radius: clamp(16px, 2vw, 26px);
    padding: clamp(1.75rem, 3.2vw, 3.25rem) clamp(1.5rem, 2.8vw, 2.75rem);
    margin-bottom: clamp(1.75rem, 2.5vw, 2.5rem);
    overflow: hidden;
    position: relative;
    color: #fff;
    box-shadow: 0 16px 40px rgba(8, 18, 40, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(229, 183, 93, 0.16);
    filter: blur(30px);
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero .eyebrow {
    display: inline-block;
    margin-bottom: 0.65rem;
    color: var(--primary-gold);
    font-size: clamp(0.8rem, 0.9vw, 0.95rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: center;
}

.hero-image {
    border-radius: clamp(14px, 1.8vw, 20px);
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(8, 18, 40, 0.3);
    max-height: none;
    height: 100%;
}

.hero-image img,
.hero-image video {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.hero-image:hover img,
.hero-image:hover video {
    transform: scale(1.02);
}

.hero h1 {
    font-size: clamp(1.85rem, 2.65vw, 3rem);
    margin-bottom: 0.75rem;
    line-height: 1.18;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: clamp(0.92rem, 1.02vw, 1.04rem);
    max-width: 620px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.hero-eyebrow-row {
    margin-bottom: 0.85rem;
}

.hero-eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(223, 190, 122, 0.12);
    border: 1px solid rgba(223, 190, 122, 0.35);
    color: #dfbe7a;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
}

.hero-main-heading {
    font-size: clamp(1.9rem, 2.7vw, 2.9rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.18 !important;
    letter-spacing: -0.015em !important;
    margin-bottom: 0.85rem !important;
}

.hero-main-desc {
    font-size: 1.02rem !important;
    color: #cbd5e1 !important;
    line-height: 1.65 !important;
    max-width: 560px !important;
    margin-bottom: 1.35rem !important;
}

/* ── Royal Trust Bar ── */
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(223, 190, 122, 0.22);
    border-radius: 12px;
    padding: 0.65rem 1rem;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    font-size: 1.1rem;
}

.trust-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.trust-text strong {
    font-size: 0.86rem;
    color: #dfbe7a;
    font-weight: 800;
}

.trust-text small {
    font-size: 0.72rem;
    color: #94a3b8;
}

.trust-badge-sep {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.12);
}

.hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    max-width: 520px;
    margin-top: 1rem;
}

.hero-actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    white-space: nowrap;
    box-sizing: border-box;
    padding: clamp(10px, 1.2vh, 12px) clamp(14px, 1.2vw, 20px);
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    border-radius: 10px;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #dfbe7a 0%, #c49e52 100%) !important;
    color: #071022 !important;
    font-weight: 800 !important;
    border: none !important;
    box-shadow: 0 4px 18px rgba(223, 190, 122, 0.38) !important;
    transition: all 0.25s ease !important;
}

.hero-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(223, 190, 122, 0.55) !important;
    color: #071022 !important;
}

.hero-btn-glass {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    border: 1px solid rgba(223, 190, 122, 0.3) !important;
    font-weight: 600 !important;
    backdrop-filter: blur(8px) !important;
    transition: all 0.25s ease !important;
}

.hero-btn-glass:hover {
    background: rgba(223, 190, 122, 0.15) !important;
    border-color: #dfbe7a !important;
    color: #dfbe7a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
}

@media (max-width: 520px) {
    .hero-actions {
        grid-template-columns: 1fr;
    }

    .trust-badge-sep {
        display: none;
    }
}

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

    .hero {
        padding: 30px 20px;
    }

    .hero-image img,
    .hero-image video {
        max-height: 320px;
    }
}

.section-title {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.stat-grid,
.testimonial-grid {
    display: grid;
    gap: clamp(1rem, 1.5vw, 1.5rem);
    grid-template-columns: repeat(auto-fit, minmax(clamp(200px, 20vw, 260px), 1fr));
}

.feature-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 28, 64, 0.08);
    border-radius: var(--border-radius);
    padding: clamp(18px, 2vw, 26px);
    box-shadow: 0 8px 24px rgba(14, 28, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}

.stat-card,
.testimonial-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(14, 28, 64, 0.08);
    border-radius: var(--border-radius);
    padding: clamp(18px, 2vw, 26px);
    box-shadow: 0 8px 24px rgba(14, 28, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.stat-card:hover,
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(14, 28, 64, 0.12);
}

.feature-card h3,
.stat-card h3,
.testimonial-card h3 {
    color: var(--secondary-navy);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p,
.stat-card p,
.testimonial-card p {
    color: var(--text-dark);
    line-height: 1.75;
}

.stat-card {
    text-align: center;
}

.stat-card .stat-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-rose);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--secondary-navy);
    font-weight: 600;
}

.testimonial-card {
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 18px;
    left: 18px;
    font-size: 4rem;
    color: rgba(199, 125, 125, 0.18);
}

.testimonial-card p {
    margin-top: 1rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--secondary-navy);
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 24px;
    }

    .hero-actions {
        flex-direction: column;
    }
}

.card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px var(--shadow);
    padding: 20px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-navy);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h5 {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
}

h6 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

/* Links */
a {
    color: var(--primary-gold);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-dark);
}

/* Form Elements */
input,
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    margin-bottom: 10px;
}

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

.auth-page {
    padding: 3rem 0;
}

.auth-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(8, 18, 40, 0.24);
}

.auth-card-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.auth-image {
    position: relative;
    min-height: 420px;
    background: linear-gradient(180deg, rgba(14, 28, 64, 0.96), rgba(21, 37, 81, 0.94));
}

.auth-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.95;
    transition: transform 0.4s ease;
}

.auth-image:hover img {
    transform: scale(1.03);
}

.auth-image-copy {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    color: var(--text-light);
    z-index: 2;
}

.auth-image-copy span {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(229, 183, 93, 0.92);
}

.auth-image-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
}

.auth-image-copy p {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 420px;
}

.auth-form {
    padding: 3rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 246, 244, 0.96));
}

.auth-form h2 {
    margin-top: 0;
    font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.auth-form .muted {
    color: #5b6877;
    margin-bottom: 1.75rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.field-grid div {
    display: flex;
    flex-direction: column;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.auth-footer p {
    margin: 0;
    color: #5b6877;
}

.auth-footer a {
    color: var(--primary-gold);
    font-weight: 700;
}

.btn.btn-primary {
    width: 100%;
    padding: 14px 24px;
}

@media (max-width: 992px) {

    .auth-card,
    .page-hero-block {
        grid-template-columns: 1fr;
    }

    .auth-image {
        min-height: 280px;
    }

    .auth-image img {
        max-height: 250px;
    }

    .auth-form {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 680px) {
    .auth-card {
        box-shadow: none;
        border: none;
    }

    .auth-image-copy {
        bottom: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Food Slideshow */
.food-slideshow {
    margin: 3rem 0;
    text-align: center;
}

.food-slideshow h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-navy);
}

.slide-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(8, 18, 40, 0.18);
}

.hall-slideshow .slide,
.slide-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 1.2s ease;
    transform: scale(1.05);
    animation: none !important;
}

.hall-slideshow .slide.active,
.slide-container .slide.active {
    opacity: 1 !important;
    transform: scale(1);
    z-index: 2;
}

/* Pricing and Add-on Tiers */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 28, 64, 0.05);
    transition: var(--transition);
}

/* Highly Impressive Package Tier Visuals */
.pricing-card.diamond {
    background: linear-gradient(135deg, #e0f2fe 0%, #ffffff 100%);
    border: 1px solid #7dd3fc;
    border-top: 15px solid #0284c7;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.1);
}

.pricing-card.gold {
    background: linear-gradient(135deg, #fffdf0 0%, #ffffff 100%);
    border: 1px solid #fde68a;
    border-top: 15px solid #ca8a04;
    box-shadow: 0 10px 30px rgba(202, 138, 4, 0.1);
}

.pricing-card.silver {
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    border: 1px solid #cbd5e1;
    border-top: 15px solid #475569;
    box-shadow: 0 10px 30px rgba(71, 85, 105, 0.1);
}

.pricing-card.bronze {
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    border: 1px solid #fecaca;
    border-top: 15px solid #991b1b;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.1);
}

.pricing-card.highlight {
    border: 2px solid var(--primary-gold);
    transform: scale(1.03);
    z-index: 1;
    box-shadow: 0 20px 40px rgba(229, 183, 93, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(8, 18, 40, 0.15);
}

.pricing-card.diamond:hover {
    box-shadow: 0 30px 60px rgba(2, 132, 199, 0.35);
    border-color: #0284c7;
}

.pricing-card.gold:hover {
    box-shadow: 0 30px 60px rgba(202, 138, 4, 0.35);
    border-color: #ca8a04;
}

.pricing-card.silver:hover {
    box-shadow: 0 30px 60px rgba(71, 85, 105, 0.35);
    border-color: #475569;
}

.pricing-card.bronze:hover {
    box-shadow: 0 30px 60px rgba(153, 27, 27, 0.35);
    border-color: #991b1b;
}

.pricing-card h3 {
    color: var(--secondary-navy);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.pricing-card .audience {
    color: var(--primary-rose);
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    flex: 1;
}

.pricing-card ul li {
    margin-bottom: 0.9rem;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
    color: var(--text-dark);
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
}

.addon-section {
    background: linear-gradient(135deg, var(--secondary-navy), var(--accent-dark));
    color: #fff;
    padding: 5rem 2rem;
    border-radius: 30px;
    margin: 4rem 0;
}

.addon-section h2 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 1rem;
}

.addon-section .subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.addon-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfdfd 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(229, 183, 93, 0.15);
    border-top: 8px solid var(--primary-gold);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.addon-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 50px rgba(229, 183, 93, 0.25);
    border-color: var(--primary-gold);
}

.addon-card h4 {
    color: var(--secondary-navy);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.addon-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin: 0;
}

/* Imperial Hotel Package Categorization */
.hotel-card {
    background: linear-gradient(135deg, #081228 0%, #112a4a 100%);
    color: #fff;
    border-radius: 25px;
    padding: 3rem;
    border: 2px solid var(--primary-gold);
    transition: var(--transition);
}

.hotel-card h3 {
    color: var(--primary-gold);
}

.hotel-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hotel-card {
    background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    border: 1px solid #d1d5db;
    border-top: 15px solid var(--secondary-navy);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(8, 18, 40, 0.1);
}

.hotel-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 60px rgba(8, 18, 40, 0.3);
    border-color: var(--secondary-navy);
}

/* Floating Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-gold, #C5A059), #d4a574);
    color: #081228;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(8, 18, 40, 0.25);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
    background: linear-gradient(135deg, #dfbe7a, #C5A059);
}

/* ========================================================================= */
/* VERTICAL SIDEBAR NAVIGATION MENU ON THE LEFT SIDE OF WEB APPLICATION     */
/* 9 Tabs in Order: 👑 Super Admin, Home, Banquet, Hotels, Restaurant,      */
/* Shops, Staff & HR, Inventory, Billing                                     */
/* ========================================================================= */

.app-left-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 260px;
    background: linear-gradient(180deg, #0c162d 0%, #070d19 100%);
    border-right: 1.5px solid rgba(197, 160, 89, 0.35);
    box-shadow: 4px 0 25px rgba(0, 0, 0, 0.45), 0 0 15px rgba(197, 160, 89, 0.1);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.35) rgba(15, 23, 42, 0.6);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-left-sidebar::-webkit-scrollbar {
    width: 5px;
}

.app-left-sidebar::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.35);
    border-radius: 4px;
}

.app-left-sidebar::-webkit-scrollbar-thumb:hover {
    background: #c5a059;
}

body.has-app-sidebar {
    padding-left: 260px !important;
}

body.has-app-sidebar .palace-top-sticky-wrapper {
    left: 260px !important;
    width: calc(100% - 260px) !important;
    max-width: calc(100vw - 260px) !important;
}

.app-sidebar-header {
    padding: 0.85rem 0.85rem 0.65rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    position: sticky;
    top: 0;
    z-index: 20;
    background: #070d19;
}

html.sa-light-mode .app-sidebar-header,
body.sa-light-mode .app-sidebar-header {
    background: #f4f6fb;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
}

.app-sidebar-brand-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.app-brand-avatar {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(197, 160, 89, 0.2);
    border: 1.5px solid #c5a059;
    border-radius: 8px;
    flex-shrink: 0;
}

.app-brand-meta {
    flex: 1;
    min-width: 0;
}

.app-brand-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #dfbe7a;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-brand-admin-user {
    font-size: 0.74rem;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.25;
    margin: 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 4px;
}

.app-brand-admin-user .admin-user-icon {
    font-size: 0.7rem;
    color: #38bdf8;
    flex-shrink: 0;
}

.app-brand-admin-user .admin-user-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

html.sa-light-mode .app-brand-admin-user,
body.sa-light-mode .app-brand-admin-user {
    color: #0f172a;
}

html.sa-light-mode .app-brand-admin-user .admin-user-icon,
body.sa-light-mode .app-brand-admin-user .admin-user-icon {
    color: #0284c7;
}

.app-brand-role {
    margin-top: 2px;
}

.app-role-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
}

.app-role-pill.gold {
    background: rgba(197, 160, 89, 0.25);
    color: #fce7b2;
    border: 1px solid rgba(197, 160, 89, 0.45);
}

.app-role-pill.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.35);
}

html.sa-light-mode .app-role-pill.gold,
body.sa-light-mode .app-role-pill.gold {
    background: rgba(197, 160, 89, 0.3);
    color: #78350f;
    border: 1px solid rgba(180, 83, 9, 0.6);
    font-weight: 800;
}

html.sa-light-mode .app-role-pill.blue,
body.sa-light-mode .app-role-pill.blue {
    background: rgba(59, 130, 246, 0.18);
    color: #1e40af;
    border: 1px solid rgba(30, 64, 175, 0.4);
    font-weight: 800;
}

html.sa-light-mode .app-role-pill,
body.sa-light-mode .app-role-pill {
    background: #e2e8f0;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    font-weight: 800;
}

.app-sidebar-nav {
    flex: 1;
    padding: 0.85rem 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.app-nav-item {
    width: 100%;
}

.app-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #cbd5e1;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.app-nav-link:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: rgba(197, 160, 89, 0.4);
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.app-nav-link.active {
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25) 0%, rgba(197, 160, 89, 0.08) 100%);
    border-color: #c5a059;
    color: #dfbe7a;
    font-weight: 700;
    box-shadow: 0 0 12px rgba(197, 160, 89, 0.2);
}

.app-nav-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.app-nav-icon {
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.app-nav-link:hover .app-nav-icon,
.app-nav-link.active .app-nav-icon {
    transform: scale(1.08);
}

/* Vibrant colored icon box variants matching section identities */
.app-nav-icon.icon-gold {
    background: rgba(197, 160, 89, 0.22);
    border-color: rgba(197, 160, 89, 0.45);
}

.app-nav-icon.icon-orange {
    background: rgba(251, 146, 60, 0.22);
    border-color: rgba(251, 146, 60, 0.40);
}

.app-nav-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.22);
    border-color: rgba(6, 182, 212, 0.45);
    color: #22d3ee;
}

.app-nav-icon.icon-purple {
    background: rgba(168, 85, 247, 0.22);
    border-color: rgba(168, 85, 247, 0.40);
}

.app-nav-icon.icon-blue {
    background: rgba(59, 130, 246, 0.22);
    border-color: rgba(59, 130, 246, 0.40);
}

.app-nav-icon.icon-red {
    background: rgba(239, 68, 68, 0.22);
    border-color: rgba(239, 68, 68, 0.40);
}

.app-nav-icon.icon-teal {
    background: rgba(20, 184, 166, 0.22);
    border-color: rgba(20, 184, 166, 0.40);
}

.app-nav-icon.icon-violet {
    background: rgba(139, 92, 246, 0.22);
    border-color: rgba(139, 92, 246, 0.40);
}

.app-nav-icon.icon-amber {
    background: rgba(245, 158, 11, 0.22);
    border-color: rgba(245, 158, 11, 0.40);
}

.app-nav-icon.icon-emerald {
    background: rgba(16, 185, 129, 0.22);
    border-color: rgba(16, 185, 129, 0.40);
}

.app-nav-text {
    font-size: 0.86rem;
}

.app-nav-badge {
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.app-nav-badge.gold {
    background: rgba(197, 160, 89, 0.25);
    color: #fbbf24;
    border: 1px solid rgba(197, 160, 89, 0.45);
}

.app-nav-arrow {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.app-nav-link:hover .app-nav-arrow {
    color: #dfbe7a;
    transform: translateX(2px);
}

.app-nav-arrow.open {
    transform: rotate(90deg) !important;
    color: #dfbe7a !important;
}

.app-item-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Sub-navigation accordion inside sidebar */
.app-subnav {
    display: none;
    flex-direction: column !important;
    gap: 2px;
    padding: 4px 0 6px 0.75rem;
    border-left: 2px solid rgba(197, 160, 89, 0.30);
    margin: 4px 0 6px 0.85rem;
}

.app-subnav.app-subnav-open {
    display: flex !important;
    flex-direction: column !important;
    animation: appSubIn 0.18s ease;
}

@keyframes appSubIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-sublink {
    display: flex !important;
    align-items: center;
    width: 100%;
    padding: 0.38rem 0.65rem;
    font-size: 0.79rem;
    color: #94a3b8;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.14s ease;
    white-space: nowrap;
    box-sizing: border-box;
}

.app-sublink:hover {
    color: #f1f5f9;
    background: rgba(197, 160, 89, 0.16);
    transform: translateX(3px);
}

.app-sublink-active,
.app-sublink.app-sublink-active {
    color: #dfbe7a !important;
    font-weight: 700;
    background: rgba(197, 160, 89, 0.22);
    border-left: 2.5px solid #dfbe7a;
    padding-left: 0.8rem;
}

.app-sidebar-footer {
    padding: 0.75rem 0.85rem;
    border-top: 1px solid rgba(197, 160, 89, 0.25);
    background: rgba(7, 13, 25, 0.7);
    margin-top: auto;
    flex-shrink: 0;
}

.app-sidebar-profile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.52rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.35);
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.app-sidebar-profile-btn:hover,
.app-sidebar-profile-btn.active {
    background: rgba(56, 189, 248, 0.25);
    color: #ffffff;
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.25);
    transform: translateY(-1px);
}

.app-sidebar-logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.58rem;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #f87171;
    background: rgba(239, 68, 68, 0.10);
    border: 1px solid rgba(239, 68, 68, 0.30);
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    cursor: pointer;
}

.app-sidebar-logout-btn:hover {
    background: #ef4444;
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    body.has-app-sidebar {
        padding-left: 0 !important;
    }

    body.has-app-sidebar .palace-top-sticky-wrapper {
        left: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .app-left-sidebar {
        transform: translateX(-100%);
    }

    .app-left-sidebar.open {
        transform: translateX(0);
    }
}

/* ==========================================================================
   VARS ROYAL PALACE - LUXURY GUEST HOME PAGE & GLASSMORPHISM DESIGN SYSTEM
   ========================================================================== */

/* ── Luxury Palace Announcement Bulletin Board ────────────────────────────── */
.palace-announcement-board {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 0.75rem 1.4rem;
    margin: 1.25rem 0 1.85rem 0;
    background: linear-gradient(90deg, rgba(9, 19, 42, 0.92) 0%, rgba(15, 31, 68, 0.88) 50%, rgba(9, 19, 42, 0.92) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(223, 190, 122, 0.45);
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(6, 12, 28, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.palace-announcement-board::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(223, 190, 122, 0.2), transparent);
    animation: goldShimmer 5s infinite linear;
    pointer-events: none;
}

@keyframes goldShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: linear-gradient(135deg, #dfbe7a 0%, #b89548 60%, #9a762e 100%);
    color: #071124;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    padding: 0.38rem 0.95rem;
    border-radius: 30px;
    box-shadow: 0 3px 12px rgba(223, 190, 122, 0.35);
    text-transform: uppercase;
    flex-shrink: 0;
}

.announcement-text-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 260px;
    font-size: 0.92rem;
    color: #f1f5f9;
    font-weight: 500;
}

.announcement-message-text {
    line-height: 1.45;
    color: #f1f5f9;
}

.announcement-meta {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #94a3b8;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.live-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: liveGreenPulse 2s infinite;
    display: inline-block;
}

@keyframes liveGreenPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 7px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.announcement-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.32rem 0.85rem;
    background: rgba(223, 190, 122, 0.15);
    border: 1px solid rgba(223, 190, 122, 0.4);
    border-radius: 20px;
    color: #dfbe7a;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-action-btn:hover {
    background: linear-gradient(135deg, #dfbe7a 0%, #c29d50 100%);
    color: #071022;
    border-color: #dfbe7a;
    box-shadow: 0 4px 14px rgba(223, 190, 122, 0.45);
    transform: translateY(-1px);
}

/* ── Palace Multimedia Stage & Hero Glass Frame ─────────────────────────── */
.hero-glass-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(223, 190, 122, 0.45);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    background: radial-gradient(circle at center, #0e1c3e 0%, #050b18 100%);
}

.palace-media-stage {
    min-height: 420px;
    max-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.stage-ambient-backdrop {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px);
    height: calc(100% + 60px);
    object-fit: cover;
    filter: blur(35px) brightness(0.35);
    opacity: 0.65;
    pointer-events: none;
    z-index: 1;
}

.stage-ambient-tint {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 26, 0.45);
    z-index: 2;
    pointer-events: none;
}

.stage-video-card {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-height: 450px;
    padding: 0.6rem;
    box-sizing: border-box;
    width: 100%;
}

.stage-core-video {
    max-height: 430px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 14px;
    border: 1.5px solid rgba(223, 190, 122, 0.5);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(223, 190, 122, 0.2);
    display: block;
    background: #000000;
}

.stage-core-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.hero-stage-badge {
    position: absolute;
    z-index: 5;
    background: rgba(8, 17, 38, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(223, 190, 122, 0.45);
    color: #ffffff;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-stage-badge.top-left {
    top: 14px;
    left: 14px;
}

.stage-beacon {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dfbe7a;
    box-shadow: 0 0 8px #dfbe7a;
}

.hero-stage-audio-toggle {
    position: absolute;
    z-index: 5;
    bottom: 14px;
    right: 14px;
    background: rgba(8, 17, 38, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(223, 190, 122, 0.4);
    color: #dfbe7a;
    padding: 0.45rem 0.85rem;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

.hero-stage-audio-toggle:hover {
    background: #dfbe7a;
    color: #081124;
    box-shadow: 0 6px 18px rgba(223, 190, 122, 0.4);
    transform: scale(1.04);
}

/* ── Interactive Palace Venue Gallery Slideshow (Slide Mode) ────────────── */
.home-venue-slideshow {
    position: relative;
    margin: 4rem 0 2.5rem 0;
    text-align: center;
}

.gallery-mode-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.35);
    border-radius: 50px;
    padding: 5px;
    gap: 6px;
    margin: 1.5rem auto 1.75rem auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.gallery-toggle-btn {
    border: none;
    background: transparent;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-toggle-btn:hover {
    color: #0f172a;
}

.gallery-toggle-btn.active {
    background: #0f172a;
    color: #dfbe7a;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.35);
}

.home-slide-container {
    position: relative;
    max-width: 1120px;
    width: 100%;
    height: 540px;
    margin: 1rem auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(8, 18, 40, 0.35);
    background-color: #081228;
    border: 1px solid rgba(197, 160, 89, 0.4);
}

.slide-item {
    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 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    z-index: 1;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

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

/* Matching Banquet Venue Gallery Prev/Next Button Style */
.home-slide-container .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #dfbe7a;
    border: 1px solid rgba(223, 190, 122, 0.45);
    width: 52px;
    height: 52px;
    padding: 0;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.home-slide-container .slider-btn:hover {
    background: #c5a059;
    color: #081228;
    border-color: #fef08a;
    transform: translateY(-50%) scale(1.12);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.5);
}

.home-slide-container .slider-btn.prev {
    left: 28px;
}

.home-slide-container .slider-btn.next {
    right: 28px;
}

/* Glassmorphism Caption Card Overlay on Slide */
.slide-caption-glass {
    position: absolute;
    bottom: 35px;
    left: 35px;
    right: 35px;
    max-width: 650px;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(223, 190, 122, 0.4);
    border-radius: 14px;
    padding: 1.15rem 1.6rem;
    text-align: left;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
    z-index: 5;
    pointer-events: none;
}

.slide-caption-glass .slide-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dfbe7a 0%, #b3924f 100%);
    color: #081228;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.75px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.4rem;
}

.slide-caption-glass .slide-caption-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.slide-caption-glass .slide-caption-desc {
    font-size: 0.88rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.45;
}

/* Slide Indicator Dots */
.slide-dots-container {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 6;
    padding: 4px 10px;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot:hover {
    background: rgba(223, 190, 122, 0.7);
}

.slide-dot.active {
    background: #dfbe7a;
    border-color: #dfbe7a;
    transform: scale(1.35);
    box-shadow: 0 0 8px rgba(223, 190, 122, 0.8);
}

/* Palace Video Tour Container */
.home-video-tour-container {
    max-width: 1120px;
    margin: 1rem auto;
    text-align: left;
}

.home-video-tour-card {
    background: #0f172a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 45px rgba(8, 18, 40, 0.35);
    padding: 1.25rem;
}

.video-tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0.5rem 0.5rem 0.5rem;
    color: #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-tour-meta h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fef08a;
    margin: 0 0 0.25rem 0;
}

.video-tour-meta p {
    font-size: 0.86rem;
    color: #94a3b8;
    margin: 0;
}

.no-video-placeholder {
    padding: 3.5rem 2rem;
    text-align: center;
    color: #94a3b8;
}

.no-video-placeholder h3 {
    color: #e2e8f0;
    margin: 1rem 0 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .home-slide-container {
        height: 360px;
        border-radius: 14px;
    }

    .slide-caption-glass {
        bottom: 18px;
        left: 15px;
        right: 15px;
        padding: 0.85rem 1rem;
    }

    .slide-caption-glass .slide-caption-title {
        font-size: 1.05rem;
    }

    .slide-caption-glass .slide-caption-desc {
        display: none;
    }

    .home-slide-container .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .home-slide-container .slider-btn.prev {
        left: 12px;
    }

    .home-slide-container .slider-btn.next {
        right: 12px;
    }
}

/* ── Trusted by Clients Worldwide (Dynamic Glassmorphic Stats) ─────────── */
.stat-grid-luxury {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 992px) {
    .stat-grid-luxury {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

@media (max-width: 560px) {
    .stat-grid-luxury {
        grid-template-columns: 1fr;
    }
}

.stat-card-luxury {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(223, 190, 122, 0.4);
    border-radius: 16px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 10px 28px rgba(10, 20, 48, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dfbe7a, #f59e0b);
}

.stat-card-luxury:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 20, 48, 0.16);
    border-color: #dfbe7a;
}

.stat-card-luxury .stat-value {
    font-size: clamp(2.2rem, 3vw, 2.9rem);
    font-weight: 800;
    color: #0e1c40;
    margin-bottom: 0.35rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.stat-card-luxury .stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 0.35rem;
}

.stat-card-luxury .stat-subtext {
    font-size: 0.78rem;
    color: #92400e;
    font-weight: 600;
    background: #fef3c7;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    display: inline-block;
}

/* ── Google Reviews Section (Guest Experiences) ────────────────────────── */
.google-reviews-header-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(223, 190, 122, 0.4);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.google-reviews-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-g-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.4rem;
    color: #4285F4;
    border: 1px solid #e2e8f0;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.google-review-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.6rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    position: relative;
}

.google-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
    border-color: #dfbe7a;
}

.google-review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.85rem;
}

.google-reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.google-reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #0f172a;
}

.google-verified-tag {
    font-size: 0.72rem;
    color: #16a34a;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.google-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.google-review-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 1rem;
    font-style: italic;
}

.google-review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: #64748b;
    border-top: 1px dashed #f1f5f9;
    padding-top: 0.75rem;
}

/* ── 4-Column Luxury Palace Footer ───────────────────────────────────────── */
.footer-luxury {
    background: linear-gradient(180deg, #091328 0%, #040813 100%);
    color: #cbd5e1;
    padding: 2.75rem 1.5rem 2.25rem 1.5rem;
    border-top: 3px solid rgba(223, 190, 122, 0.65);
    margin-top: 4rem;
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.45);
}

.footer-unified-wrap {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.footer-copyright-line {
    margin: 0;
    font-size: 0.95rem;
    color: #f1f5f9;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-address-line {
    margin: 0;
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.5;
    font-weight: 400;
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin: 0.25rem 0;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.92rem;
    color: #cbd5e1;
}

.footer-contact-link {
    color: #cbd5e1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: color 0.2s ease;
}

.footer-contact-link .contact-val {
    color: #dfbe7a;
    font-weight: 600;
}

.footer-contact-link:hover {
    color: #dfbe7a;
}

.footer-contact-link:hover .contact-val {
    text-decoration: underline;
}

.contact-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(223, 190, 122, 0.12);
    border: 1px solid rgba(223, 190, 122, 0.3);
    color: #dfbe7a;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.footer-contact-link:hover .contact-icon-svg {
    background: rgba(223, 190, 122, 0.25);
    border-color: #dfbe7a;
    transform: scale(1.08);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.15rem;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(223, 190, 122, 0.3);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.social-icon-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px) scale(1.06);
}

.social-icon-btn.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(214, 36, 159, 0.45);
    transform: translateY(-2px) scale(1.06);
}

.social-icon-btn.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.45);
    transform: translateY(-2px) scale(1.06);
}

.social-icon-btn.twitter:hover {
    background: #000000;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.06);
}

.footer-nav-line {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.84rem;
}

.footer-nav-line a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav-line a:hover {
    color: #dfbe7a;
    text-decoration: underline;
}

.footer-dot {
    color: #475569;
}

@media (max-width: 640px) {
    .footer-connect-section {
        padding-bottom: 1.5rem;
    }

    .footer-contact-direct {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-social-pill-group {
        gap: 0.5rem;
    }

    .palace-announcement-board {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-glass-floating-badge {
        position: static;
        margin: 0.5rem 0;
    }
}

/* ── Flash Alert Messages ────────────────────────────────────────────────── */
.message-container {
    max-width: 1400px;
    margin: 1rem auto;
    padding: 0 clamp(16px, 2vw, 28px);
}

.alert {
    padding: 0.85rem 1.4rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    box-sizing: border-box;
}

.alert.success {
    background: #ecfdf5 !important;
    color: #065f46 !important;
    border: 1.5px solid #a7f3d0 !important;
}

.alert.info {
    background: #eff6ff !important;
    color: #1e40af !important;
    border: 1.5px solid #bfdbfe !important;
}

.alert.warning {
    background: #fffbeb !important;
    color: #92400e !important;
    border: 1.5px solid #fde68a !important;
}

.alert.error,
.alert.danger {
    background: #fef2f2 !important;
    color: #991b1b !important;
    border: 1.5px solid #fecaca !important;
}

.alert-close-btn {
    background: none;
    border: none;
    font-size: 1.35rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
    line-height: 1;
    transition: opacity 0.2s ease;
    padding: 0;
}

.alert-close-btn:hover {
    opacity: 1;
}

/* ==========================================================================
   UNIVERSAL STRICT CAPTION REMOVAL ACROSS ALL PAGES
   Ensure all images throughout the project are completely clean without
   any overlay captions, glass capsules, or floating description panels.
   ========================================================================== */
.dining-card-glass-capsule,
.layer-glass-caption,
.photo-card-caption,
.gallery-hover-overlay,
.gallery-caption-panel,
.gallery-glass-caption-panel,
.gallery-caption-badge,
.gallery-caption-meta,
.gallery-caption-actions,
.slide-caption-glass,
.image-caption-pill,
.visual-badge-overlay,
.visual-gradient-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}