/* ==========================================================================
   NIGHTLIFE / DUBAIEVENTS.AE - HIGH-ENERGY CRIMSON & DEEP ONYX DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & TOKENS
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #08080a;
    --bg-card: #121316;
    --bg-card-hover: #1a1b22;
    --bg-header-translucent: rgba(8, 8, 10, 0.55);
    --bg-header-scrolled: rgba(8, 8, 10, 0.94);
    
    --accent-red: #ff2a4b;
    --accent-red-bright: #ff4765;
    --accent-red-dark: #d61333;
    --accent-red-glow: rgba(255, 42, 75, 0.45);
    --whatsapp-green: #25d366;
    
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-red: rgba(255, 42, 75, 0.25);
    --border-red-hover: rgba(255, 42, 75, 0.7);
    
    --font-heading: 'Syne', -apple-system, sans-serif;
    --font-body: 'Outfit', -apple-system, sans-serif;
    
    --container-max: 1240px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL TYPOGRAPHY & LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6, .heading-font {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

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

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

.section-padding {
    padding: 5.5rem 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.25rem auto;
}

.section-title {
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    margin-bottom: 0.85rem;
}

.text-accent-red {
    color: var(--accent-red);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
}

.divider-line {
    width: 45px;
    height: 3px;
    background-color: var(--accent-red);
    margin: 0 auto 1.25rem auto;
    border-radius: 2px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff2a4b 0%, #c8102e 100%);
    color: #ffffff;
    box-shadow: 0 4px 18px var(--accent-red-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 42, 75, 0.65);
    background: linear-gradient(135deg, #ff415f 0%, #dc1436 100%);
    color: #ffffff;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-red);
    background: rgba(255, 42, 75, 0.12);
    color: #ffffff;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   3. TRANSLUCENT HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1.1rem 0;
    background: var(--bg-header-translucent);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header.scrolled {
    padding: 0.7rem 0;
    background: var(--bg-header-scrolled);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid rgba(255, 42, 75, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-heading);
    line-height: 0.95;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    padding: 2px 0;
}

.site-logo .logo-line-small {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.9);
}

.site-logo .logo-line-main {
    font-size: 1rem;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.site-logo .logo-line-sub {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--accent-red);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 0.35rem 0;
}

.nav-links a:hover,
.nav-links .current-menu-item > a {
    color: var(--accent-red);
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    border-left: 1px solid var(--border-color);
    padding-left: 1rem;
}

.lang-switcher span.active {
    color: var(--accent-red);
    font-weight: 800;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.4rem;
}

/* Mobile Drawer Menu */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: #0c0d10;
    z-index: 1001;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.9);
    border-left: 1px solid var(--border-red);
}

.mobile-menu-drawer.open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.mobile-drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.75rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-nav-links a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.mobile-nav-links a:hover {
    color: var(--accent-red);
}

/* --------------------------------------------------------------------------
   4. ASYMMETRIC HIGH-ENERGY HERO SECTION WITH AMBIENT VIDEO
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 7.5rem;
    padding-bottom: 5rem;
    overflow: hidden;
    background: #08080a;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    mix-blend-mode: luminosity;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, rgba(8, 8, 10, 0.96) 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-grid-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-content {
    text-align: left;
}

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-full, 9999px);
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #ffffff;
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.75rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-red, #D4AF37);
    box-shadow: 0 0 12px var(--accent-red, #D4AF37);
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-main-title {
    font-size: clamp(2.3rem, 3.8vw, 3.6rem);
    line-height: 1.18;
    margin-bottom: 1.5rem;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.title-line-1 {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.title-line-2 {
    display: block;
    color: var(--accent-red, #D4AF37);
    text-shadow: 0 0 35px rgba(212, 175, 55, 0.3);
}

.hero-lead-text {
    font-size: 1.05rem;
    line-height: 1.68;
    color: #94a3b8;
    max-width: 520px;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 2.75rem;
}

.hero-trust-pillars {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-pillar-item {
    display: flex;
    flex-direction: column;
}

.pillar-val {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-red, #D4AF37);
    line-height: 1.1;
}

.pillar-lbl {
    font-size: 0.68rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.35rem;
}

/* Hero Right Clean Video Card */
.hero-spotlight-card {
    background: var(--bg-card, #121316);
    border-radius: var(--radius-lg, 18px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    overflow: hidden;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-spotlight-card:hover {
    transform: translateY(-6px);
    border-color: rgba(246, 211, 101, 0.7);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.3);
}

.spotlight-media-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #000000;
}

.spotlight-video, .spotlight-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-sound-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.25s ease;
}

.spotlight-sound-btn:hover {
    background: var(--accent-red, #D4AF37);
    color: #000000;
    border-color: var(--accent-red, #D4AF37);
    transform: scale(1.1);
}

.spotlight-body {
    padding: 1.25rem 1.5rem;
    background: var(--bg-card, #121316);
}

.btn-spotlight-book {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.25rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(246, 211, 101, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: var(--radius-sm, 8px);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-spotlight-book:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 3.5rem;
    }
    .hero-main-title {
        font-size: 2.5rem;
    }
    .hero-trust-pillars {
        gap: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   5. INFINITE MARQUEE TICKER
   -------------------------------------------------------------------------- */
.marquee-ticker-section {
    background: #111216;
    border-top: 1px solid rgba(255, 42, 75, 0.15);
    border-bottom: 1px solid rgba(255, 42, 75, 0.15);
    padding: 0.75rem 0;
    overflow: hidden;
    position: relative;
}

/* Gradient edge fades for seamless look */
.marquee-ticker-section::before,
.marquee-ticker-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-ticker-section::before {
    left: 0;
    background: linear-gradient(to right, #111216 0%, transparent 100%);
}

.marquee-ticker-section::after {
    right: 0;
    background: linear-gradient(to left, #111216 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
}

.marquee-bullet {
    color: var(--accent-red);
    font-size: 0.55rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   6. WEEKLY EVENTS CALENDAR & VIDEO HOVER
   -------------------------------------------------------------------------- */
.events-filter-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.45rem 1.15rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
    box-shadow: 0 4px 15px var(--accent-red-glow);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
}

.event-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-red-hover);
    box-shadow: 0 16px 35px rgba(255, 42, 75, 0.2);
}

.event-poster-wrapper {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #0d0e11;
}

.event-poster-img,
.event-poster-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-poster-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.event-card:hover .event-poster-video {
    opacity: 1;
}

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

.event-poster-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 19, 22, 0.95) 0%, rgba(18, 19, 22, 0.35) 50%, transparent 100%);
    pointer-events: none;
}

.event-day-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    background: var(--accent-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
}

.event-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.25rem;
    z-index: 2;
}

.event-genre {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    color: var(--accent-red);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.event-title {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
    line-height: 1.15;
    color: #ffffff;
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.event-actions .btn-book {
    flex: 1;
    padding: 0.65rem 0.85rem;
    font-size: 0.72rem;
}

.whatsapp-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-fast);
}

.whatsapp-icon-btn:hover {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   7. THE VIP EXPERIENCE LUXURY CAROUSEL & SHOWCASE
   -------------------------------------------------------------------------- */
.vip-experience-section {
    position: relative;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, var(--bg-dark) 75%);
    overflow: hidden;
}

.vip-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.vip-section-header {
    text-align: center;
    margin-bottom: 2.75rem;
    position: relative;
    z-index: 2;
}

.vip-section-header .divider-line {
    margin: 0 auto 0.85rem auto;
}

.vip-section-header .section-subtitle {
    margin: 0 auto;
}

/* Slider Viewport & Track */
.vip-slider-viewport {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin: 0 -0.5rem;
    padding: 0.75rem 0.5rem 1.5rem 0.5rem;
    cursor: grab;
    touch-action: pan-y;
}

.vip-slider-viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.vip-slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Luxury Slider Cards */
.vip-slider-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--bg-card, #121316);
    border-radius: var(--radius-lg, 16px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-slider-card:hover {
    transform: translateY(-8px);
    border-color: rgba(246, 211, 101, 0.6);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.85), 0 0 30px rgba(212, 175, 55, 0.2);
}

.vip-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #000000;
}

.vip-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vip-card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 19, 22, 1) 0%, rgba(18, 19, 22, 0.4) 40%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.vip-card-badge-row {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
    gap: 0.5rem;
}

.vip-perk-badge {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-red, #D4AF37);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-full, 9999px);
}

.vip-tag-pill {
    display: inline-block;
    padding: 0.25rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: #e2e8f0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-full, 9999px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.vip-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background: var(--bg-card, #121316);
    position: relative;
    z-index: 3;
}

.vip-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0.65rem;
    letter-spacing: 0.02em;
}

.vip-card-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.vip-card-footer {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-vip-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: 'Syne', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(246, 211, 101, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-sm, 6px);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vip-book svg {
    color: var(--accent-red, #D4AF37);
    transition: transform 0.3s ease;
}

.btn-vip-book .arrow-icon {
    margin-left: auto;
    opacity: 0.7;
}

.btn-vip-book:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

.btn-vip-book:hover svg {
    color: #ffffff;
    transform: scale(1.1);
}

.btn-vip-book:hover .arrow-icon {
    transform: translateX(4px);
    opacity: 1;
}

/* SINGLE UNIFIED LUXURY BOTTOM CONTROLS BAR (PREV | DOTS | NEXT) */
.vip-bottom-controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.25rem;
    position: relative;
    z-index: 5;
}

.vip-bottom-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 19, 22, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-bottom-nav-btn:hover {
    background: var(--accent-red, #D4AF37);
    color: #000000;
    border-color: var(--accent-red, #D4AF37);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
}

.vip-bottom-nav-btn:active {
    transform: scale(0.95);
}

.vip-bottom-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vip-pagination-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.vip-dot.active {
    width: 28px;
    border-radius: var(--radius-full, 9999px);
    background: var(--accent-red, #D4AF37);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
    .vip-slider-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .vip-slider-card {
        flex: 0 0 86%;
    }
    .vip-slider-track {
        gap: 1rem;
    }
}

.vip-pagination-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vip-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.vip-dot.active {
    width: 28px;
    border-radius: var(--radius-full, 9999px);
    background: var(--accent-red, #D4AF37);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
    .vip-slider-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .vip-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    .vip-slider-controls {
        width: 100%;
        justify-content: space-between;
    }
    .vip-slider-card {
        flex: 0 0 86%;
    }
    .vip-slider-track {
        gap: 1rem;
    }
}

/* --------------------------------------------------------------------------
   8. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    border-color: var(--border-red-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 42, 75, 0.15);
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
}

.testimonial-quote {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 42, 75, 0.18);
    border: 1px solid var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-red);
    font-size: 0.85rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
}

.author-location {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. CONTACT INFO & FOOTER
   -------------------------------------------------------------------------- */
.contact-section {
    text-align: center;
    background: radial-gradient(circle at bottom, rgba(255, 42, 75, 0.08) 0%, var(--bg-dark) 70%);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
}

.contact-item-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--accent-red);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.contact-item-val {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.45;
}

.social-links-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.25rem;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition-fast);
}

.social-btn:hover {
    background: var(--accent-red);
    color: #ffffff;
    border-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 18px var(--accent-red-glow);
}

.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. FLOATING WHATSAPP VIP BUTTON (CORNER FAB)
   -------------------------------------------------------------------------- */
.floating-whatsapp-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: #ffffff;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    text-decoration: none;
    animation: fabPulse 2.5s infinite;
}

.floating-whatsapp-fab:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.65);
    background: #20bd5a;
    color: #ffffff;
}

.floating-whatsapp-fab svg {
    flex-shrink: 0;
}

@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --------------------------------------------------------------------------
   11. RESPONSIVE BREAKPOINTS (PIXEL-PERFECT MOBILE & TABLET UX)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-section {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3.5rem;
    }
    .hero-left-content {
        text-align: center;
    }
    .hero-lead-text {
        margin: 0 auto 2rem auto;
    }
    .hero-cta-group {
        justify-content: center;
    }
    .hero-trust-pillars {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    .section-padding {
        padding: 3.5rem 0;
    }
    /* Hide background video on mobile for lightweight performance */
    .hero-video-bg {
        display: none;
    }
    .hero-section {
        padding-top: 5.5rem;
        padding-bottom: 3rem;
        overflow-x: hidden;
        width: 100%;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, #08080a 70%);
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        width: 100%;
        max-width: 100%;
    }
    .hero-left-content {
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    .hero-live-badge {
        margin: 0 auto 1.25rem auto;
        font-size: 0.65rem;
        padding: 0.35rem 0.85rem;
        max-width: 95%;
        justify-content: center;
    }
    .hero-main-title {
        font-size: clamp(1.45rem, 6.4vw, 2.15rem);
        line-height: 1.25;
        letter-spacing: 0;
        margin: 0 auto 1.25rem auto;
        max-width: 100%;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .title-line-1,
    .title-line-2 {
        display: block;
        font-size: inherit;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .hero-lead-text {
        font-size: 0.92rem;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto 1.75rem auto;
        text-align: center;
        padding: 0 0.5rem;
    }
    .hero-cta-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
        margin: 0 auto 2rem auto;
        align-items: stretch;
    }
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
    }
    .hero-trust-pillars {
        display: flex;
        justify-content: center;
        gap: 1.25rem;
        flex-wrap: wrap;
        padding-top: 1.25rem;
    }
    .trust-pillar-item {
        text-align: center;
        align-items: center;
        min-width: 80px;
    }
    .pillar-val {
        font-size: 1.15rem;
    }
    .pillar-lbl {
        font-size: 0.62rem;
    }
    .hero-spotlight-card {
        max-width: 100%;
    }
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .floating-whatsapp-fab {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.75rem;
        border-radius: 50%;
    }
    .floating-whatsapp-fab span {
        display: none;
    }
    .contact-details-grid {
        text-align: center;
    }
    .footer-social-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 5rem;
    }
    .hero-main-title {
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }
    .hero-trust-pillars {
        gap: 0.85rem;
        justify-content: space-around;
    }
    .section-title {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem);
    }
    .vip-bottom-controls-bar {
        gap: 1rem;
    }
    .vip-bottom-nav-btn {
        width: 42px;
        height: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* --------------------------------------------------------------------------
   12. FOOTER SOCIAL ROW
   -------------------------------------------------------------------------- */
.footer-social-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-handle {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.footer-handle a {
    color: var(--accent-red);
    transition: var(--transition-fast);
}

.footer-handle a:hover {
    color: var(--accent-red-bright);
}

/* ==========================================================================
   13. THREE DISTINCT LANDING PAGE PRESENTATIONS & STYLES
   ========================================================================== */

/* --------------------------------------------------------------------------
   STYLE 1: ULTRA-LUXURY GOLD & CHAMPAGNE (MyTableDXB Signature)
   -------------------------------------------------------------------------- */
body.theme-style-gold,
:root:has(body.theme-style-gold) {
    --accent-red: #D4AF37;
    --accent-red-bright: #F6D365;
    --accent-red-dark: #AA771C;
    --accent-red-glow: rgba(212, 175, 55, 0.45);
    --border-red: rgba(212, 175, 55, 0.25);
    --border-red-hover: rgba(246, 211, 101, 0.8);
    --bg-dark: #08090C;
    --bg-card: #101217;
    --bg-card-hover: #171922;
}

body.theme-style-gold .btn-primary {
    background: linear-gradient(135deg, #F6D365 0%, #D4AF37 50%, #996E13 100%);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

body.theme-style-gold .btn-primary:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #F6D365 50%, #D4AF37 100%);
    box-shadow: 0 8px 30px rgba(246, 211, 101, 0.6);
    color: #000000;
    transform: translateY(-2px);
}

body.theme-style-gold .event-card:hover {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

body.theme-style-gold .hero-spotlight-card {
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

/* --------------------------------------------------------------------------
   STYLE 2: HIGH-ENERGY CRIMSON & NEON (DubaiEvents Arena)
   -------------------------------------------------------------------------- */
body.theme-style-crimson,
:root:has(body.theme-style-crimson) {
    --accent-red: #FF2A4B;
    --accent-red-bright: #FF4765;
    --accent-red-dark: #C8102E;
    --accent-red-glow: rgba(255, 42, 75, 0.5);
    --border-red: rgba(255, 42, 75, 0.25);
    --border-red-hover: rgba(255, 42, 75, 0.8);
    --bg-dark: #08080A;
    --bg-card: #121316;
    --bg-card-hover: #1A1B22;
}

body.theme-style-crimson .btn-primary {
    background: linear-gradient(135deg, #FF4765 0%, #FF2A4B 50%, #C8102E 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 18px rgba(255, 42, 75, 0.45);
}

body.theme-style-crimson .btn-primary:hover {
    background: linear-gradient(135deg, #FF5E7A 0%, #FF2A4B 100%);
    box-shadow: 0 8px 28px rgba(255, 42, 75, 0.7);
    color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   STYLE 3: MIDNIGHT ONYX & ELECTRIC CYAN (Minimalist Modern VIP Lounge)
   -------------------------------------------------------------------------- */
body.theme-style-cyan,
:root:has(body.theme-style-cyan) {
    --accent-red: #00F0FF;
    --accent-red-bright: #70E4EF;
    --accent-red-dark: #0088AA;
    --accent-red-glow: rgba(0, 240, 255, 0.45);
    --border-red: rgba(0, 240, 255, 0.25);
    --border-red-hover: rgba(0, 240, 255, 0.8);
    --bg-dark: #040608;
    --bg-card: #0C0F14;
    --bg-card-hover: #141820;
}

body.theme-style-cyan .btn-primary {
    background: linear-gradient(135deg, #70E4EF 0%, #00F0FF 50%, #0088AA 100%);
    color: #040608;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}

body.theme-style-cyan .btn-primary:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #70E4EF 50%, #00F0FF 100%);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.65);
    color: #040608;
}

body.theme-style-cyan .event-card:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9), 0 0 25px rgba(0, 240, 255, 0.2);
}

body.theme-style-cyan .hero-spotlight-card {
    border: 1px solid rgba(0, 240, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.15);
}

