/* ============================================================
   PIXELGO HMS — Premium Design System v2.0
   Light-mode-first with [data-theme="dark"] toggle
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* ── Typography ── */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Space Grotesk', 'Inter', sans-serif;

    /* ── Accent Colors ── */
    --accent-1: #6366f1;         /* Indigo */
    --accent-2: #a855f7;         /* Purple */
    --accent-3: #ec4899;         /* Pink */
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --accent-gradient-hover: linear-gradient(135deg, var(--accent-3), var(--accent-2), var(--accent-1));

    /* ── Light Mode (default) ── */
    --bg-body: #f8f9fc;
    --bg-surface: rgba(255, 255, 255, 0.75);
    --bg-surface-solid: #ffffff;
    --bg-surface-hover: rgba(255, 255, 255, 0.95);
    --bg-elevated: #ffffff;
    --bg-muted: #f1f3f9;

    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --text-muted: #6b7280;
    --text-inverse: #f1f5f9;

    --border-color: rgba(0, 0, 0, 0.06);
    --border-color-strong: rgba(0, 0, 0, 0.12);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.15);

    --glass-blur: blur(20px);
    --glass-border: 1px solid var(--border-color);

    /* ── Spacing ── */
    --section-py: 100px;
    --section-px: 0;
    --gap-xs: 4px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 40px;
    --gap-2xl: 64px;

    /* ── Radii ── */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 999px;

    /* ── Transitions ── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.6s;

    /* ── Nav ── */
    --nav-height: 80px;

    /* ── Overlay ── */
    --overlay-light: rgba(255, 255, 255, 0.6);
    --overlay-dark: rgba(0, 0, 0, 0.4);
}

/* ── Dark Mode ── */
[data-theme="dark"] {
    --bg-body: #0c0c14;
    --bg-surface: rgba(255, 255, 255, 0.04);
    --bg-surface-solid: #16161e;
    --bg-surface-hover: rgba(255, 255, 255, 0.08);
    --bg-elevated: #1c1c28;
    --bg-muted: #12121a;

    --text-primary: #f1f5f9;
    --text-secondary: #b0b3c7;
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-inverse: #1a1a2e;

    --border-color: rgba(255, 255, 255, 0.06);
    --border-color-strong: rgba(255, 255, 255, 0.12);

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.25);

    --overlay-light: rgba(0, 0, 0, 0.5);
    --overlay-dark: rgba(0, 0, 0, 0.7);
}


/* ============================================================
   2. BASE RESET & TYPOGRAPHY
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.premium-body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    transition: background-color var(--duration-slow) var(--ease-out),
                color var(--duration-slow) var(--ease-out);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2, .h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3, .h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4, .h4 { font-size: 1.35rem; }
h5, .h5 { font-size: 1.15rem; }
h6, .h6 { font-size: 1rem; }

p { color: var(--text-secondary); line-height: 1.7; }

a {
    color: var(--accent-1);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}
a:hover { color: var(--accent-2); }


/* ============================================================
   3. GLASS CARD
   ============================================================ */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
}
.glass-card:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-2px);
    border-color: rgba(99, 102, 241, 0.15);
}
.glass-card-static {
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.glass-card-solid {
    background: var(--bg-surface-solid);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--duration-normal) var(--ease-out);
}
.glass-card-solid:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}


/* ============================================================
   4. GRADIENT TEXT
   ============================================================ */
.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.glow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--accent-gradient);
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.glow-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient-hover);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
    border-radius: inherit;
}
.glow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: #fff;
}
.glow-btn:hover::before { opacity: 1; }
.glow-btn span, .glow-btn i { position: relative; z-index: 1; }

.glow-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--border-color-strong);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
}
.glow-btn-outline:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(99, 102, 241, 0.05);
    transform: translateY(-2px);
}

.glow-btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}
.glow-btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}


/* ============================================================
   6. BADGE / PILL
   ============================================================ */
.badge-glow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-1);
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius-pill);
    letter-spacing: 0.02em;
}
[data-theme="dark"] .badge-glow {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}


/* ============================================================
   7. SECTIONS
   ============================================================ */
.section-premium {
    padding: var(--section-py) var(--section-px);
    position: relative;
    overflow: hidden;
}
.section-premium-sm {
    padding: calc(var(--section-py) * 0.6) var(--section-px);
}
.section-heading-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--gap-2xl);
}
.section-heading-center h2 {
    margin-bottom: var(--gap-md);
}
.section-heading-center p {
    font-size: 1.1rem;
    color: var(--text-muted);
}


/* ============================================================
   8. ICON BOX
   ============================================================ */
.icon-box-gradient {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}
.icon-box-soft {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(99, 102, 241, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent-1);
    flex-shrink: 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.glass-card:hover .icon-box-soft {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}
[data-theme="dark"] .icon-box-soft {
    background: rgba(99, 102, 241, 0.12);
}


/* ============================================================
   9. FORM INPUTS (Dark-aware floating labels)
   ============================================================ */
.form-floating-premium .form-control,
.form-floating-premium .form-select {
    background: var(--bg-surface-solid);
    border: 1px solid var(--border-color-strong);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    transition: border-color var(--duration-fast) var(--ease-out),
                box-shadow var(--duration-fast) var(--ease-out);
}
.form-floating-premium .form-control:focus,
.form-floating-premium .form-select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: var(--bg-surface-solid);
}
.form-floating-premium label {
    color: var(--text-muted);
    font-family: var(--font-body);
}
[data-theme="dark"] .form-floating-premium .form-control,
[data-theme="dark"] .form-floating-premium .form-select {
    background: var(--bg-elevated);
    border-color: var(--border-color-strong);
    color: var(--text-primary);
}
[data-theme="dark"] .form-floating-premium .form-control:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}


/* ============================================================
   10. NAVIGATION
   ============================================================ */
.premium-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.premium-nav.scrolled {
    padding: 8px 0;
    background: var(--bg-surface);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: var(--glass-border);
    box-shadow: var(--shadow-sm);
}
.nav-brand img {
    height: 40px;
    transition: height var(--duration-normal) var(--ease-out);
}
.premium-nav.scrolled .nav-brand img { height: 34px; }

.nav-link-premium {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary) !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
}
.nav-link-premium:hover {
    color: var(--accent-1) !important;
    background: rgba(99, 102, 241, 0.05);
}

/* Theme Toggle */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color-strong);
    background: var(--bg-surface-solid);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--duration-fast) var(--ease-out);
}
.theme-toggle:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    transform: rotate(30deg);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color-strong);
    background: var(--bg-surface-solid);
    color: var(--text-primary);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
@media (max-width: 991px) {
    .nav-toggle { display: flex; }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-surface-solid);
    z-index: 1100;
    padding: 24px;
    transition: right var(--duration-normal) var(--ease-out);
    box-shadow: var(--shadow-xl);
    overflow-y: auto;
}
.mobile-drawer.open { right: 0; }
.mobile-drawer .nav-link-premium {
    display: block;
    padding: 12px 0 !important;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ============================================================
   11. FOOTER
   ============================================================ */
.premium-footer {
    background: var(--bg-surface-solid);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}
[data-theme="dark"] .premium-footer {
    background: #0a0a10;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--duration-fast) var(--ease-out);
}
.footer-links a:hover { color: var(--accent-1); }

.social-link-premium {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-color-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all var(--duration-fast) var(--ease-out);
}
.social-link-premium:hover {
    border-color: var(--accent-1);
    color: #fff;
    background: var(--accent-gradient);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.3);
}


/* ============================================================
   12. HERO SECTION
   ============================================================ */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: calc(var(--nav-height) + 40px);
    overflow: hidden;
}
.hero-mesh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.08), transparent),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(236, 72, 153, 0.06), transparent);
    z-index: 0;
}
[data-theme="dark"] .hero-mesh-bg {
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(168, 85, 247, 0.15), transparent),
        radial-gradient(ellipse 40% 50% at 20% 80%, rgba(236, 72, 153, 0.1), transparent);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}


/* ============================================================
   13. STATS CARDS (Floating)
   ============================================================ */
.stat-float-card {
    position: absolute;
    z-index: 20;
}
.stat-float-card .glass-card {
    padding: 16px 24px;
}


/* ============================================================
   14. FEATURE / BENTO GRID
   ============================================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
}
.bento-grid .bento-item:nth-child(1) {
    grid-column: span 2;
}
.bento-grid .bento-item:nth-child(4) {
    grid-column: span 2;
}
.bento-item {
    overflow: hidden;
}
.bento-item .feature-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: var(--gap-md);
    transition: transform var(--duration-slow) var(--ease-out);
}
.bento-item:hover .feature-img {
    transform: scale(1.03);
}
@media (max-width: 991px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid .bento-item:nth-child(1),
    .bento-grid .bento-item:nth-child(4) {
        grid-column: span 1;
    }
}
@media (max-width: 576px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   15. TESTIMONIAL MARQUEE
   ============================================================ */
.marquee-track {
    display: flex;
    gap: var(--gap-lg);
    animation: marquee-scroll 40s linear infinite;
    width: max-content;
}
.marquee-track-reverse {
    animation-direction: reverse;
}
.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card-premium {
    width: 380px;
    flex-shrink: 0;
    padding: var(--gap-lg);
}
.testimonial-card-premium .stars { color: #f59e0b; font-size: 0.85rem; }
.testimonial-card-premium .review-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: var(--gap-md) 0;
}
.testimonial-card-premium .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
}
.testimonial-card-premium .author-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}
.testimonial-card-premium .author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}


/* ============================================================
   16. BRAND LOGO MARQUEE
   ============================================================ */
.brand-logo-item {
    flex-shrink: 0;
    padding: 0 40px;
    display: flex;
    align-items: center;
}
.brand-logo-item img {
    height: 32px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all var(--duration-normal) var(--ease-out);
}
.brand-logo-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}
[data-theme="dark"] .brand-logo-item img {
    filter: grayscale(100%) brightness(2);
    opacity: 0.3;
}
[data-theme="dark"] .brand-logo-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}


/* ============================================================
   17. CTA SECTION
   ============================================================ */
.cta-premium {
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}
.cta-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-premium h2,
.cta-premium p { color: #fff; position: relative; z-index: 1; }
.cta-premium .cta-input-group {
    position: relative;
    z-index: 1;
    max-width: 480px;
    display: flex;
    gap: 12px;
}
.cta-premium .cta-input-group input {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
}
.cta-premium .cta-input-group input::placeholder { color: rgba(255, 255, 255, 0.6); }
.cta-premium .cta-input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}
.cta-premium .cta-input-group button {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    background: #fff;
    color: var(--accent-1);
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease-out);
    white-space: nowrap;
}
.cta-premium .cta-input-group button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .cta-premium { padding: 50px 24px; border-radius: var(--radius-lg); }
    .cta-premium .cta-input-group { flex-direction: column; }
}


/* ============================================================
   18. ROOM CARDS
   ============================================================ */
.room-card-premium {
    overflow: hidden;
    position: relative;
}
.room-card-premium .room-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: transform var(--duration-slow) var(--ease-out);
}
.room-card-premium:hover .room-img { transform: scale(1.05); }
.room-card-premium .room-body {
    padding: var(--gap-lg);
}
.room-card-premium .room-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-1);
}
.room-amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--bg-muted);
    border-radius: var(--radius-pill);
}


/* ============================================================
   19. SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--accent-gradient);
    z-index: 9999;
    width: 0%;
    transition: none;
}


/* ============================================================
   20. PRELOADER
   ============================================================ */
.premium-preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-body);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.premium-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}
.preloader-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border-color);
    border-top-color: var(--accent-1);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ============================================================
   21. SCROLL TO TOP
   ============================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--duration-normal) var(--ease-out);
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}


/* ============================================================
   22. ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
}
@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delay { animation: float 6s ease-in-out 2s infinite; }
.animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }


/* ============================================================
   23. UTILITY CLASSES
   ============================================================ */
.text-accent { color: var(--accent-1); }
.text-muted-premium { color: var(--text-muted); }
.bg-muted-premium { background: var(--bg-muted); }
.border-accent { border-color: var(--accent-1) !important; }

.reveal { opacity: 0; transform: translateY(40px); }
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s var(--ease-out);
}

/* ============================================================
   23. ELITE LAYOUT UTILITIES
   ============================================================ */
.section-rhythm {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.glass-card--elite {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-xl);
    transition: all var(--duration-normal) var(--ease-out);
}

.glass-card--elite:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
}

.gradient-text-alt {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-ambient-glow {
    position: absolute;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1), transparent);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.bento-master {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 24px;
}

.bento-card {
    grid-column: span 12;
    padding: var(--gap-lg);
}

@media (min-width: 992px) {
    .bento-card--lg { grid-column: span 8; grid-row: span 2; }
    .bento-card--md { grid-column: span 4; grid-row: span 2; }
    .bento-card--sm { grid-column: span 4; }
}

.reveal-stagger > * { opacity: 0; transform: translateY(20px); }

.floating-asset {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.layered-bg {
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 32px 32px;
}

/* Operation grid (registration) */
.op-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 12px;
}
.op-item { position: relative; }
.op-check {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.op-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 10px;
    background: var(--bg-surface-solid);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-out);
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    gap: 8px;
}
.op-label i { font-size: 1.3rem; }
.op-check:checked + .op-label {
    border-color: var(--accent-1);
    background: rgba(99, 102, 241, 0.06);
    color: var(--accent-1);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.15);
}
[data-theme="dark"] .op-label {
    background: var(--bg-elevated);
}
[data-theme="dark"] .op-check:checked + .op-label {
    background: rgba(99, 102, 241, 0.12);
}


/* ============================================================
   24. COOKIE CONSENT (Restyled)
   ============================================================ */
.cookies-card {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 400px;
    max-width: calc(100vw - 40px);
    padding: 24px;
    background: var(--bg-surface-solid);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 99999;
    transition: all 0.5s var(--ease-out);
}
.cookies-card.hide { bottom: -400px !important; }
.cookies-card .cookies-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient);
    color: #fff;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   25. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.08), transparent);
    z-index: 0;
}
[data-theme="dark"] .page-hero::before {
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.15), transparent);
}
.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2rem, 4vw, 3rem);
}
.page-hero .breadcrumb-text {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}


/* ============================================================
   26. RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    :root { --section-py: 80px; }
}
@media (max-width: 768px) {
    :root { --section-py: 60px; }
    .hero-title { margin-bottom: 16px; }
    .hero-subtitle { margin-bottom: 28px; }
    .cta-premium { padding: 50px 24px; }
}
@media (max-width: 576px) {
    :root { --section-py: 48px; --nav-height: 64px; }
    .glass-card { border-radius: var(--radius-md); }
    .glow-btn { padding: 12px 24px; font-size: 0.9rem; }
    .glow-btn-outline { padding: 12px 24px; font-size: 0.9rem; }
    .testimonial-card-premium { width: 300px; }
}


/* ============================================================
   27. DASHBOARD SCREENSHOT SECTION
   ============================================================ */
.dashboard-showcase {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
.dashboard-showcase img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}
.dashboard-glow {
    position: absolute;
    bottom: -40px;
    left: 10%;
    right: 10%;
    height: 100px;
    background: var(--accent-gradient);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
}


/* ============================================================
   28. REGISTRATION SUCCESS
   ============================================================ */
.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin: 0 auto 24px;
    animation: scale-in 0.5s var(--ease-bounce);
}
