/* ============================================
   ZAQARO - Ultra-Modern Hotel Website
   Color Scheme: Dark + Neon (Purple/Cyan/Pink)
   ============================================ */

/* --- CSS Variables --- */
:root {
    --bg-primary: #06060f;
    --bg-secondary: #0c0c1d;
    --bg-card: #11112a;
    --bg-glass: rgba(12, 12, 29, 0.7);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-purple: #7c3aed;
    --accent-cyan: #06b6d4;
    --accent-pink: #ec4899;
    --accent-gold: #f59e0b;
    --gradient-main: linear-gradient(135deg, #7c3aed, #06b6d4);
    --gradient-pink: linear-gradient(135deg, #ec4899, #7c3aed);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(6, 182, 212, 0.3));
    --shadow-neon: 0 0 30px rgba(124, 58, 237, 0.3), 0 0 60px rgba(6, 182, 212, 0.1);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-main: 'Noto Sans Georgian', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

::selection {
    background: var(--accent-purple);
    color: white;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    background: none;
}

/* --- Focus visible (keyboard nav) --- */
a:focus-visible,
button:focus-visible,
[tabindex="0"]:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 3px;
    border-radius: 4px;
}

/* --- Skip link --- */
.skip-link {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: 99999;
    padding: 10px 20px;
    background: var(--accent-cyan);
    color: #06060f;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: loader-spin 1.5s linear infinite;
}

.loader-ring:first-child {
    border-top-color: var(--accent-purple);
    border-right-color: var(--accent-purple);
}

.loader-ring:nth-child(2) {
    width: 90px;
    height: 90px;
    border-bottom-color: var(--accent-cyan);
    border-left-color: var(--accent-cyan);
    animation-direction: reverse;
    animation-duration: 1s;
}

.loader-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(124, 58, 237, 0.5);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

.cursor-outline.hover {
    width: 50px;
    height: 50px;
    border-color: var(--accent-cyan);
}

@media (max-width: 768px), (hover: none), (pointer: coarse) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* --- Container --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    padding: 10px 0;
    background: rgba(6, 6, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.6rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
}

.logo-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 24px;
    background: var(--gradient-main);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6, 6, 15, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-slow);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.open .mobile-link {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-link:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu.open .mobile-link:nth-child(8) { transition-delay: 0.45s; }

.mobile-link:hover { color: var(--text-primary); }

.mobile-cta {
    margin-top: 16px;
    padding: 14px 40px;
    background: var(--gradient-main);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    transition-delay: 0.5s;
}

.mobile-menu.open .mobile-cta {
    transform: translateY(0);
    opacity: 1;
}

/* --- Hero Section --- */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #050612;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.9;
    filter: saturate(1.1) contrast(1.03) brightness(0.9);
    z-index: 0;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(6, 6, 15, 0.12) 0%, rgba(6, 6, 15, 0.34) 45%, rgba(6, 6, 15, 0.7) 100%),
        radial-gradient(ellipse at center, rgba(6, 182, 212, 0.14) 0%, rgba(6, 6, 15, 0.54) 68%);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    background: rgba(124, 58, 237, 0.05);
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 40px rgba(124, 58, 237, 0.4));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Pulsing live-dot inside hero badge */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Hero trust bar */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0 auto 40px;
    padding: 0;
    max-width: 760px;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-trust li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.16);
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: 800;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-main);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.5);
}

.btn-outline {
    border: 1px solid rgba(124, 58, 237, 0.5);
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.05);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--accent-purple);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Hero Stats --- */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(124, 58, 237, 0.3);
}

/* --- Hero Scroll Indicator --- */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.hero-scroll span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 2px;
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* --- Sections --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-cyan);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(124, 58, 237, 0.05);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Reveal Animations --- */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: var(--transition-slow);
    transition-delay: var(--delay, 0s);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* --- About Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-lead {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.feature-icon {
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 70%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 3px solid var(--bg-primary);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    top: 50%;
    left: 30%;
    width: 120px;
    height: 120px;
    background: var(--gradient-main);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

/* --- Pool Map Section --- */
.pool-map-container {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: var(--shadow-neon);
}

.pool-map-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    justify-content: center;
}

.map-control {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: var(--transition);
    font-family: var(--font-main);
}

.map-control.active, .map-control:hover {
    background: var(--accent-purple);
    color: white;
    border-color: var(--accent-purple);
}

.pool-map-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 16px 0;
}

#poolMap {
    min-width: 800px;
    margin: 0 auto;
}

#poolMap svg {
    width: 100%;
    height: auto;
}

.pool-legend {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.legend-dot.reserved {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.5);
}

.legend-dot.selected {
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.lounger-info {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 100;
    box-shadow: var(--shadow-neon);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.lounger-info.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(20px);
}

.lounger-info h4 {
    font-size: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lounger-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- Experience Story --- */
.experience-story {
    position: relative;
    overflow: hidden;
}

.experience-story::before {
    content: '';
    position: absolute;
    inset: -10% 0 auto;
    height: 420px;
    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.28), transparent 45%),
        radial-gradient(circle at 80% 0%, rgba(6, 182, 212, 0.18), transparent 40%);
    pointer-events: none;
}

.experience-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.experience-stage {
    position: relative;
    min-height: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #050612;
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: var(--shadow-neon);
    isolation: isolate;
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    --lift: 0px;
    --pointer-x: 50%;
    --pointer-y: 50%;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow), border-color var(--transition);
    transform: perspective(1400px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--lift));
}

.experience-stage:hover {
    --lift: -8px;
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: 0 24px 90px rgba(6, 182, 212, 0.12), 0 24px 100px rgba(124, 58, 237, 0.2);
}

.experience-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.22), transparent 28%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 2;
    pointer-events: none;
}

.experience-stage:hover::before {
    opacity: 1;
}

.experience-stage-media,
.experience-stage-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.experience-stage-media img {
    object-fit: cover;
    transform: scale(1.03);
    transition: transform var(--transition-slow), opacity var(--transition);
}

.experience-stage.is-updating .experience-stage-media img {
    opacity: 0.8;
    transform: scale(1.08);
}

.experience-stage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 6, 15, 0.12) 0%, rgba(6, 6, 15, 0.45) 42%, rgba(6, 6, 15, 0.96) 100%);
    z-index: 1;
}

.experience-stage-content {
    position: relative;
    z-index: 3;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    padding: 40px;
}

.experience-stage-content > * {
    transform: translateZ(28px);
}

.experience-index {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--text-primary);
    background: rgba(6, 6, 15, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
}

.experience-kicker {
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.16);
    border: 1px solid rgba(124, 58, 237, 0.32);
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.experience-stage h3 {
    max-width: 12ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.experience-stage p {
    max-width: 560px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.experience-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-pills span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    font-size: 0.82rem;
}

.experience-tabs {
    display: grid;
    gap: 16px;
    align-content: start;
}

.experience-tab {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: rgba(17, 17, 42, 0.78);
    border: 1px solid rgba(124, 58, 237, 0.14);
    text-align: left;
    color: var(--text-secondary);
    overflow: hidden;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.experience-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(6, 182, 212, 0.12));
    opacity: 0;
    transition: opacity var(--transition);
}

.experience-tab:hover,
.experience-tab.active {
    transform: translateX(8px);
    color: var(--text-primary);
    border-color: rgba(6, 182, 212, 0.28);
    box-shadow: 0 16px 36px rgba(6, 182, 212, 0.08);
}

.experience-tab:hover::before,
.experience-tab.active::before {
    opacity: 1;
}

.experience-tab-no,
.experience-tab-copy {
    position: relative;
    z-index: 1;
}

.experience-tab-no {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--accent-cyan);
}

.experience-tab-copy {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.experience-tab-copy strong {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
}

.experience-tab-copy small {
    font-size: 0.9rem;
    line-height: 1.6;
    color: inherit;
}

/* --- Rooms Section --- */
[data-tilt-card] {
    transform-style: preserve-3d;
    will-change: transform;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rooms-booking-note {
    margin: 0 auto 28px;
    max-width: 920px;
    padding: 24px 28px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.18);
    box-shadow: 0 24px 60px rgba(6, 6, 15, 0.18);
}

.rooms-booking-note strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.rooms-booking-note p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.room-card {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.1);
    --rotate-x: 0deg;
    --rotate-y: 0deg;
    --lift: 0px;
    --pointer-x: 50%;
    --pointer-y: 50%;
    transition: transform var(--transition-slow), border-color var(--transition), box-shadow var(--transition);
    transform: perspective(1400px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--lift));
}

.room-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.15), transparent 30%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.room-card:hover {
    --lift: -8px;
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-neon);
}

.room-card:hover::after {
    opacity: 1;
}

.room-card.featured {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.15);
}

.room-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

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

.room-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: rgba(6, 6, 15, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(124, 58, 237, 0.3);
    z-index: 2;
}

.room-popular {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 16px;
    background: var(--gradient-pink);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.room-content {
    padding: 24px;
    position: relative;
    z-index: 2;
}

.room-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.room-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.amenity {
    padding: 6px 12px;
    background: rgba(124, 58, 237, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.room-footer {
    display: flex;
    justify-content: flex-start;
}

.room-status {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    color: var(--text-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.rooms-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.rooms-cta p {
    max-width: 56ch;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Events Section --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-8px);
    border-color: rgba(124, 58, 237, 0.3);
}

.event-card:hover::before {
    opacity: 1;
}

.event-icon {
    position: relative;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.event-card h3 {
    position: relative;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.event-card p {
    position: relative;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Entertainment Section --- */
.entertainment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.ent-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 250px;
    transition: var(--transition);
}

.ent-card:hover {
    transform: translateY(-4px);
}

.ent-large {
    grid-row: span 2;
    min-height: 520px;
}

.ent-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.ent-card:hover .ent-bg {
    transform: scale(1.05);
}

.ent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 15, 0.95) 0%, rgba(6, 6, 15, 0.4) 100%);
}

.ent-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.ent-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.ent-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ent-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Gallery Section --- */
.gallery-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-filter {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(17, 17, 42, 0.65);
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    color: var(--text-primary);
    border-color: rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.28), rgba(6, 182, 212, 0.22));
    box-shadow: 0 10px 24px rgba(6, 182, 212, 0.12);
}

.gallery-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.gallery-count span {
    color: var(--text-primary);
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: transform var(--transition), border-color var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.24);
    box-shadow: 0 14px 28px rgba(6, 182, 212, 0.08);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 6, 15, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-size: 1rem;
    font-weight: 600;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(6, 6, 15, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.lightbox.hidden {
    opacity: 0;
    visibility: hidden;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--accent-purple);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent-purple);
}

/* --- Contact Section --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.contact-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent-purple);
    color: white;
    transform: translateY(-3px);
}

/* --- Contact Form --- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.form-group label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.95rem;
    pointer-events: none;
    transition: var(--transition);
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    top: -10px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--accent-cyan);
    background: var(--bg-secondary);
    padding: 0 6px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Invalid state */
.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
    animation: formShake 0.35s ease;
}

@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    50% { transform: translateX(6px); }
    75% { transform: translateX(-4px); }
}

.form-error {
    display: block;
    min-height: 18px;
    margin-top: 6px;
    padding-left: 4px;
    font-size: 0.8rem;
    color: #f87171;
    line-height: 1.3;
    transition: var(--transition);
}

.form-error:empty {
    min-height: 0;
    margin: 0;
}

/* Honeypot — hidden from humans, visible to naive bots */
.form-honeypot {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-note {
    margin-top: 4px;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* Status bar (success / error / loading) */
.form-status {
    display: none;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    border: 1px solid transparent;
    transition: var(--transition);
}

.form-status.show {
    display: block;
    animation: statusFadeIn 0.3s ease;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.4);
    color: #4ade80;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.form-status.loading {
    background: rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.4);
    color: var(--accent-cyan);
}

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

/* Submit button states */
#contactSubmit:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

#contactSubmit.is-loading .btn-label::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 10px;
    vertical-align: -2px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin 0.8s linear infinite;
}

#contactSubmit.is-success {
    background: linear-gradient(135deg, #22c55e, #06b6d4);
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Date input calendar icon in dark theme */
.form-group input[type="date"]::-webkit-calendar-picker-indicator,
.form-group input[type="number"]::-webkit-inner-spin-button {
    filter: invert(0.8);
    cursor: pointer;
}

/* --- Footer --- */
#footer {
    padding: 60px 0 30px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

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

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo-icon,
.footer-brand .logo-text {
    font-size: 1.4rem;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-images { height: 400px; }
    .experience-shell { grid-template-columns: 1fr; }
    .experience-stage,
    .experience-stage-content { min-height: 500px; }
    .rooms-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 2rem; }
    .experience-stage,
    .experience-stage-content { min-height: 420px; }
    .experience-stage-content { padding: 28px; }
    .experience-stage h3 { max-width: none; font-size: 2rem; }
    .experience-tab { transform: none !important; }
    .gallery-toolbar { align-items: flex-start; }
    .gallery-filters {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
    }
    .gallery-filter { white-space: nowrap; }
    .events-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .entertainment-grid { grid-template-columns: 1fr; }
    .ent-large { grid-row: span 1; min-height: 300px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .hero-scroll { display: none; }
    .pool-map-container { padding: 16px; }
}

@media (max-width: 480px) {
    .experience-stage,
    .experience-stage-content { min-height: 380px; }
    .experience-tab { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .gallery-item.large { grid-column: span 1; }
    .hero-actions { flex-direction: column; align-items: center; }
    .about-features { grid-template-columns: 1fr; }
}

/* --- Utility --- */
.hidden { opacity: 0; visibility: hidden; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--accent-cyan); }

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .hero-video { display: none; }
    .reveal-up, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   PREMIUM LAYER — Dark + Neon visual overhaul
   ============================================ */

/* --- Ambient noise + layered background --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(ellipse 60% 60% at 15% 20%, rgba(124, 58, 237, 0.08), transparent 60%),
        radial-gradient(ellipse 50% 50% at 85% 80%, rgba(6, 182, 212, 0.06), transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(236, 72, 153, 0.03), transparent 60%);
    mix-blend-mode: screen;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Ambient stacking — use z-index only, don't force position on fixed/overlay elements */
#hero, .section, #footer {
    position: relative;
    z-index: 10;
}

/* Cursor follower stays fixed — must not take flow space */
.cursor-dot, .cursor-outline {
    position: fixed !important;
    z-index: 9999;
}

#navbar { z-index: 1000; }
#preloader { z-index: 10000; }
#lightbox { z-index: 9000; }
.mobile-menu { z-index: 800; }

/* --- Typography polish --- */
body {
    font-feature-settings: "case", "ss01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.section-tag {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.14), rgba(6, 182, 212, 0.14));
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    font-weight: 900;
}

.section-desc {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height: 1.75;
    max-width: 640px;
}

/* --- Animated gradient text (shimmering) --- */
.gradient-text,
.title-line {
    background: linear-gradient(90deg, #c4b5fd 0%, #7c3aed 25%, #06b6d4 55%, #22d3ee 75%, #c4b5fd 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
    to { background-position: 200% 0; }
}

.hero-title .title-line {
    letter-spacing: -0.04em;
    filter: drop-shadow(0 8px 32px rgba(124, 58, 237, 0.35));
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    max-width: 720px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--accent-cyan);
    font-weight: 700;
    text-shadow: 0 0 24px rgba(6, 182, 212, 0.5);
}

/* --- Hero badge — more premium --- */
.hero-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.18));
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-color: rgba(124, 58, 237, 0.45);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
}

/* --- Stats — luminous numbers --- */
.stat-number {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    letter-spacing: -0.04em;
    filter: drop-shadow(0 0 24px rgba(124, 58, 237, 0.45));
}

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

/* --- Buttons — shimmer + glow --- */
.btn {
    padding: 16px 38px;
    font-weight: 700;
    letter-spacing: 0.01em;
    isolation: isolate;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: inherit;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6, #06b6d4 60%, #22d3ee);
    background-size: 200% 200%;
    background-position: 0% 50%;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: background-position 0.5s, transform 0.25s, box-shadow 0.3s;
}

.btn-primary:hover {
    background-position: 100% 50%;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.55), 0 0 40px rgba(6, 182, 212, 0.35);
}

.btn-outline {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* --- Section header polish --- */
.section-header { margin-bottom: 80px; }

/* Decorative section divider */
.section + .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(200px, 30%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), rgba(6, 182, 212, 0.5), transparent);
    filter: drop-shadow(0 0 8px rgba(124, 58, 237, 0.6));
}

/* --- Room cards — premium hover with magnetic glow --- */
.room-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(17, 17, 42, 0.9), rgba(12, 12, 29, 0.95));
    border: 1px solid rgba(124, 58, 237, 0.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), transparent 40%, rgba(6, 182, 212, 0.5) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.room-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: transparent;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35), 0 0 60px rgba(6, 182, 212, 0.15);
}

.room-card:hover::before { opacity: 1; }

.room-card .room-image img {
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.4s;
}

.room-card:hover .room-image img {
    transform: scale(1.08);
    filter: saturate(1.2) brightness(1.05);
}

.room-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.85), rgba(6, 182, 212, 0.85));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.room-popular {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

/* --- Event cards — glow border --- */
.event-card {
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.92), rgba(10, 10, 24, 0.98));
    border: 1px solid rgba(124, 58, 237, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
    position: relative;
    isolation: isolate;
}

.event-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(124, 58, 237, 0.6) 80deg, rgba(6, 182, 212, 0.6) 160deg, transparent 240deg);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(18px);
}

.event-card:hover {
    transform: translateY(-10px);
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 0 40px rgba(124, 58, 237, 0.3);
}

.event-card:hover::after { opacity: 0.6; }

.event-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.12));
    border: 1px solid rgba(124, 58, 237, 0.35);
    color: var(--accent-cyan);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.event-card:hover .event-icon {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
}

/* --- Entertainment cards polish --- */
.ent-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.15);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s, border-color 0.4s;
}

.ent-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 24px 60px rgba(124, 58, 237, 0.3);
}

.ent-card .ent-bg {
    transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.5s;
}

.ent-card:hover .ent-bg {
    transform: scale(1.12);
    filter: saturate(1.2) brightness(1.08);
}

.ent-content .ent-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, 0.5));
}

/* --- Gallery — premium tiles --- */
.gallery-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
}

.gallery-item img {
    transition: transform 0.9s cubic-bezier(0.2, 0.9, 0.3, 1), filter 0.4s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: saturate(1.15) brightness(1.05);
}

.gallery-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(6, 6, 15, 0.85) 100%);
    backdrop-filter: blur(2px);
}

.gallery-overlay span {
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* --- Gallery filter chips polish --- */
.gallery-filter {
    background: rgba(17, 17, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.gallery-filter:hover {
    border-color: rgba(6, 182, 212, 0.6);
    color: var(--accent-cyan);
    transform: translateY(-1px);
}

.gallery-filter.active {
    background: var(--gradient-main);
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
    color: #fff;
}

/* --- About section images — glass edge --- */
.about-img-main img,
.about-img-secondary img {
    transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.about-img-main:hover img,
.about-img-secondary:hover img {
    transform: scale(1.04);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15)) !important;
    border: 1px solid rgba(124, 58, 237, 0.35);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15);
    color: var(--accent-cyan);
}

/* --- Experience stage polish --- */
.experience-stage {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), 0 0 60px rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.experience-tab {
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
}

.experience-tab:hover {
    transform: translateY(-2px);
}

.experience-tab.active {
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
    border-color: rgba(6, 182, 212, 0.5) !important;
}

/* --- Contact section — premium card --- */
.contact-grid {
    gap: 72px;
    padding: 56px;
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.55), rgba(12, 12, 29, 0.75));
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    isolation: isolate;
}

.contact-grid::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.55), transparent 35%, transparent 65%, rgba(6, 182, 212, 0.55));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.contact-icon {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(6, 182, 212, 0.15)) !important;
    border: 1px solid rgba(124, 58, 237, 0.4);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.2);
}

.contact-item h4 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 1.02rem;
    color: var(--text-primary);
    font-weight: 500;
}

.social-link {
    background: rgba(124, 58, 237, 0.14);
    border: 1px solid rgba(124, 58, 237, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: var(--gradient-main);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
    transform: translateY(-4px) rotate(-4deg);
}

/* --- Form inputs — glass, luminous focus --- */
.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(6, 6, 15, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 500;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(124, 58, 237, 0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.18), 0 0 30px rgba(124, 58, 237, 0.2);
    background: rgba(6, 6, 15, 0.85);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label {
    background: var(--bg-primary);
    font-weight: 600;
}

/* --- Nav — glass on scroll --- */
#navbar.scrolled {
    background: rgba(6, 6, 15, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-cta {
    background: var(--gradient-main);
    color: #fff;
    padding: 10px 24px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(124, 58, 237, 0.55), 0 0 30px rgba(6, 182, 212, 0.3);
}

.nav-link {
    position: relative;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s, left 0.3s;
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.logo-icon {
    display: inline-block;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3em;
    animation: logoSpin 12s linear infinite;
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.6));
}

@keyframes logoSpin {
    to { transform: rotate(360deg); }
}

/* --- Footer — subtle premium --- */
#footer {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #030308 100%);
    border-top: 1px solid rgba(124, 58, 237, 0.15);
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.6), rgba(6, 182, 212, 0.6), transparent);
    filter: drop-shadow(0 0 12px rgba(124, 58, 237, 0.5));
}

#footer h4 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-cyan);
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.25s, padding-left 0.25s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 6px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 14px;
    line-height: 1.7;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(124, 58, 237, 0.12);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.88rem;
}

/* --- Room booking note — emphasize --- */
.rooms-booking-note {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    margin-bottom: 48px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.12);
    text-align: center;
}

.rooms-booking-note strong {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.rooms-cta {
    margin-top: 48px;
    text-align: center;
}

.rooms-cta p {
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Mobile refinements --- */
@media (max-width: 1024px) {
    .contact-grid {
        padding: 40px 28px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
    }
    .section-header { margin-bottom: 56px; }
    .hero-trust { gap: 10px 20px; font-size: 0.85rem; }
    .hero-trust li { font-size: 0.86rem; }
    .btn { padding: 14px 28px; }
}

/* --- Print-friendly skip (not really used but polite) --- */
@media print {
    .cursor-dot, .cursor-outline, #preloader, .hero-video,
    #heroCanvas, body::before, body::after { display: none !important; }
}

/* ============================================
   PREMIUM LAYER v2 — deeper visual polish
   ============================================ */

/* --- Hero scroll indicator with glow --- */
.hero-scroll {
    opacity: 0.85;
    animation: heroScrollFloat 2.4s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

.scroll-indicator {
    width: 26px;
    height: 44px;
    border: 1.5px solid rgba(124, 58, 237, 0.5);
    border-radius: 14px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.25), inset 0 0 10px rgba(124, 58, 237, 0.1);
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    box-shadow: 0 0 12px var(--accent-cyan);
    animation: scrollDotMove 1.8s ease-in-out infinite;
}

@keyframes heroScrollFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

@keyframes scrollDotMove {
    0% { transform: translateY(0); opacity: 1; }
    60% { transform: translateY(14px); opacity: 0.2; }
    100% { transform: translateY(0); opacity: 1; }
}

/* --- About feature items — card style --- */
.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(17, 17, 42, 0.5), rgba(12, 12, 29, 0.7));
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: var(--radius-md);
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(6, 182, 212, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(6, 182, 212, 0.05));
}

.feature-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.feature-item:hover .feature-icon {
    transform: rotate(-8deg) scale(1.1);
}

/* --- About images — layered depth --- */
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(124, 58, 237, 0.15);
    position: relative;
    isolation: isolate;
}

.about-img-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6, 6, 15, 0.4) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-img-secondary {
    border: 3px solid rgba(6, 6, 15, 0.9);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(6, 182, 212, 0.2);
}

.about-img-accent {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    filter: blur(60px);
    opacity: 0.35;
}

/* --- Pool map section polish --- */
.pool-map-container {
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.8), rgba(12, 12, 29, 0.95));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 32px;
    position: relative;
    isolation: isolate;
}

.pool-map-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), transparent 50%, rgba(6, 182, 212, 0.4));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.map-control {
    padding: 10px 22px;
    background: rgba(6, 6, 15, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 999px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.map-control:hover {
    color: var(--accent-cyan);
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.map-control.active {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.pool-legend {
    background: rgba(6, 6, 15, 0.5);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.legend-dot {
    box-shadow: 0 0 12px currentColor;
}

.legend-dot.available { color: #22c55e; background: #22c55e; }
.legend-dot.reserved { color: #ef4444; background: #ef4444; }
.legend-dot.selected { color: var(--accent-cyan); background: var(--accent-cyan); }

.lounger-info {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lounger-info h4 {
    color: var(--accent-cyan);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

/* --- Experience section polish --- */
.experience-kicker {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: 999px;
    color: var(--accent-cyan);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.experience-pills span {
    background: rgba(17, 17, 42, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

/* --- Rooms section — featured card distinct --- */
.room-card.featured {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3), 0 0 60px rgba(6, 182, 212, 0.15);
}

.room-card.featured .room-popular {
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
}

.room-amenities .amenity {
    background: rgba(17, 17, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.25s;
}

.room-amenities .amenity:hover {
    border-color: rgba(6, 182, 212, 0.5);
    color: var(--accent-cyan);
    transform: translateY(-1px);
}

.room-status {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 999px;
    color: var(--accent-cyan);
    font-size: 0.82rem;
    font-weight: 600;
}

/* --- Lightbox polish --- */
.lightbox {
    background: rgba(6, 6, 15, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    background: rgba(17, 17, 42, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gradient-main);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.55);
}

#lightboxImg {
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* --- Mobile menu polish --- */
.mobile-menu {
    background: linear-gradient(160deg, rgba(6, 6, 15, 0.96), rgba(12, 12, 29, 0.99));
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}

.mobile-link:hover {
    background: rgba(124, 58, 237, 0.12);
    color: var(--accent-cyan);
    transform: translateX(8px);
}

.mobile-cta {
    margin-top: 24px;
    background: var(--gradient-main);
    color: #fff !important;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
    text-align: center;
}

/* --- Reveal animations — smoother --- */
.reveal-up, .reveal-left, .reveal-right {
    transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.3, 1),
                transform 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Selection colour update --- */
::selection {
    background: rgba(6, 182, 212, 0.4);
    color: #fff;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.8);
}

/* --- Scrollbar — thinner + gradient --- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-left: 1px solid rgba(124, 58, 237, 0.1);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-purple), var(--accent-cyan));
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
    background-clip: padding-box;
}

/* --- Gradient text overall tone + readability --- */
.gradient-text {
    font-weight: 900;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

/* --- Contact form: phone/name inputs bigger on mobile --- */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 18px 20px;
        font-size: 1rem;
    }
    .rooms-booking-note {
        padding: 20px 22px;
    }
    .pool-map-container { padding: 20px 14px; }
}

/* --- Section background accents --- */
.section-dark {
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 800px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-dark > .container { position: relative; z-index: 1; }

/* --- Make body sure text stays above ambient (nav stays on top layer) --- */
#hero > *, .section > *, #footer > * { z-index: 5; }

/* --- Big CTA inside rooms + contact: extra shine --- */
.rooms-cta .btn-primary,
.hero-actions .btn-primary,
#contactSubmit {
    position: relative;
}

.rooms-cta .btn-primary::after,
.hero-actions .btn-primary::after,
#contactSubmit::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan), var(--accent-purple));
    background-size: 200% 200%;
    filter: blur(16px);
    opacity: 0.4;
    z-index: -2;
    animation: ctaHalo 4s ease-in-out infinite;
}

@keyframes ctaHalo {
    0%, 100% { background-position: 0% 50%; opacity: 0.35; }
    50% { background-position: 100% 50%; opacity: 0.65; }
}

/* ============================================
   SALES LAYER — Conversion-focused additions
   ============================================ */

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan), var(--accent-pink));
    transform-origin: 0 50%;
    transform: scaleX(0);
    z-index: 10001;
    pointer-events: none;
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
    transition: transform 0.1s linear;
}

/* --- Hero rating stars --- */
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.14), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.18);
}

.hero-rating .stars {
    display: inline-flex;
    gap: 2px;
    font-size: 1.05rem;
    color: #fbbf24;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.6));
    letter-spacing: 1px;
}

.hero-rating .rating-value {
    font-weight: 800;
    color: #fbbf24;
}

.hero-rating .rating-divider {
    color: var(--text-muted);
    opacity: 0.6;
}

.hero-rating .rating-count {
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Live FOMO Notification --- */
.live-notify {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    max-width: 340px;
    background: linear-gradient(135deg, rgba(17, 17, 42, 0.92), rgba(10, 10, 24, 0.95));
    border: 1px solid rgba(6, 182, 212, 0.35);
    border-radius: var(--radius-md);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.18);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-24px) translateY(12px);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), visibility 0.4s;
    pointer-events: none;
}

.live-notify.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
    pointer-events: auto;
}

.live-notify-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #fff;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.4);
}

.live-notify-text {
    flex: 1;
    min-width: 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.live-notify-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

.live-notify-text em {
    display: block;
    margin-top: 2px;
    font-style: normal;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.live-notify-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1;
    transition: all 0.2s;
}

.live-notify-close:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #fff;
}

@media (max-width: 540px) {
    .live-notify {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}

/* --- USP Strip --- */
.usp-strip {
    padding: 72px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.03) 50%, transparent 100%);
    position: relative;
    z-index: 10;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.7), rgba(12, 12, 29, 0.9));
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}

.usp-item:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 18px 50px rgba(124, 58, 237, 0.25);
}

.usp-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(6, 182, 212, 0.18));
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
    transition: transform 0.3s;
}

.usp-item:hover .usp-icon {
    transform: rotate(-8deg) scale(1.08);
}

.usp-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.usp-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

@media (max-width: 960px) {
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .usp-grid { grid-template-columns: 1fr; }
    .usp-strip { padding: 48px 0; }
}

/* --- Packages Section --- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 36px 28px;
    background: linear-gradient(180deg, rgba(17, 17, 42, 0.85), rgba(12, 12, 29, 0.95));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
    isolation: isolate;
}

.package-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), transparent 45%, rgba(6, 182, 212, 0.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: -1;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(124, 58, 237, 0.3), 0 0 50px rgba(6, 182, 212, 0.15);
}

.package-card:hover::before { opacity: 1; }

.package-featured {
    border-color: rgba(6, 182, 212, 0.55);
    background: linear-gradient(180deg, rgba(22, 22, 50, 0.92), rgba(12, 12, 29, 0.98));
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.35), 0 0 60px rgba(6, 182, 212, 0.15);
    transform: translateY(-8px);
}

.package-featured::before {
    opacity: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(6, 182, 212, 0.8), rgba(236, 72, 153, 0.6));
}

.package-featured:hover {
    transform: translateY(-16px);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: linear-gradient(135deg, #f59e0b, #ec4899);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.package-kicker {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 999px;
    color: var(--accent-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.package-name {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.package-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
}

.package-features li {
    padding: 10px 0;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

.package-features li:first-child { border-top: none; }

.package-features li.muted {
    color: var(--text-muted);
    font-style: italic;
    font-weight: 400;
}

.packages-note {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .packages-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 32px; }
    .package-featured { transform: none; }
    .package-featured:hover { transform: translateY(-6px); }
}

/* --- Testimonials Section --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 28px;
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.7), rgba(12, 12, 29, 0.9));
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    right: 22px;
    font-size: 5rem;
    font-family: Georgia, serif;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.35;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 22px 60px rgba(124, 58, 237, 0.25);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
    filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.5));
}

.testimonial-quote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 22px;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.4);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-author small {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 960px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

/* --- FAQ Section --- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: linear-gradient(160deg, rgba(17, 17, 42, 0.6), rgba(12, 12, 29, 0.8));
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item[open] {
    border-color: rgba(6, 182, 212, 0.45);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.18);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background 0.25s;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { background: rgba(124, 58, 237, 0.06); }

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--accent-cyan);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
    color: #fff;
    border-color: transparent;
}

.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
    animation: faqFadeIn 0.35s ease;
}

.faq-answer p { margin: 0; }

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Nav — more items, tighter --- */
@media (max-width: 1200px) {
    .nav-links { gap: 20px; }
    .nav-link { font-size: 0.92rem; }
}

@media (max-width: 1060px) {
    .nav-links { display: none; }
}
