/* ==========================================================================
   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: 90vh;
    display: flex;
    align-items: center;
    padding-top: 6.5rem;
    padding-bottom: 4rem;
    overflow: hidden;
    background: #08080a;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.38;
    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(255, 42, 75, 0.22) 0%, rgba(8, 8, 10, 0.94) 70%);
    z-index: 2;
    pointer-events: none;
}

.hero-grid-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
    align-items: center;
}

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

.hero-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 42, 75, 0.14);
    border: 1px solid var(--border-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-red);
    box-shadow: 0 0 10px var(--accent-red);
    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-headline {
    font-size: clamp(2.4rem, 4.5vw, 4.25rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-main-headline .text-accent-red {
    color: var(--accent-red);
    text-shadow: 0 0 25px var(--accent-red-glow);
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    margin-bottom: 2.25rem;
    font-weight: 300;
    max-width: 540px;
    line-height: 1.55;
}

.hero-actions-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust-pillars {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

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

.pillar-val {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-red);
    line-height: 1;
}

.pillar-lbl {
    font-size: 0.68rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

/* Hero Right Featured Card */
.hero-spotlight-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-red);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 42, 75, 0.15);
    position: relative;
    transition: var(--transition-smooth);
}

.hero-spotlight-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-red-hover);
    box-shadow: 0 25px 60px rgba(255, 42, 75, 0.25);
}

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

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

.spotlight-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    background: var(--accent-red);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    z-index: 2;
}

.spotlight-body {
    padding: 1.5rem;
}

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

.spotlight-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.15;
}

/* --------------------------------------------------------------------------
   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. EXPERIENCE VIDEO SHOWCASE
   -------------------------------------------------------------------------- */
.video-showcase-card {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85);
    aspect-ratio: 16/9;
    background: #000000;
}

.video-showcase-card iframe,
.video-showcase-card video {
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   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
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    .mobile-nav-toggle {
        display: block;
    }
    .hero-grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-section {
        min-height: auto;
        padding-top: 5.5rem;
        padding-bottom: 3rem;
    }
    .hero-left-content {
        text-align: center;
    }
    .hero-description {
        margin: 0 auto 2rem auto;
    }
    .hero-actions-left {
        justify-content: center;
    }
    .hero-trust-pillars {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3.5rem 0;
    }
    /* Hide background video on mobile for performance */
    .hero-video-bg {
        display: none;
    }
    .hero-section {
        background: linear-gradient(145deg, #0c0d12 0%, #08080a 40%, rgba(255, 42, 75, 0.08) 100%);
    }
    .hero-main-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .hero-actions-left {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions-left .btn {
        width: 100%;
    }
    .hero-trust-pillars {
        gap: 1.25rem;
    }
    .pillar-val {
        font-size: 1rem;
    }
    .pillar-lbl {
        font-size: 0.6rem;
    }
    .hero-spotlight-card {
        max-width: 100%;
    }
    .floating-whatsapp-fab {
        bottom: 1.25rem;
        right: 1.25rem;
        padding: 0.7rem;
        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) {
    .events-grid {
        grid-template-columns: 1fr;
    }
    .hero-trust-pillars {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
}

@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);
}
