/* ==========================================================================
   Behind The Booth Entertainment LLC - Premium Stylesheet
   Design Vibe: Premium Dark-Mode, Glassmorphism, Luxury Gold, & Nightclub Lasers
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
    /* Color Palette */
    --color-bg-dark: #05080E;
    --color-bg-card: rgba(10, 15, 30, 0.45);
    --color-bg-card-hover: rgba(15, 22, 45, 0.65);
    
    /* Gold/Champagne Gradients */
    --gold-primary: #D4AF37;
    --gold-light: #F8E7A1;
    --gold-dark: #AA7C11;
    --gold-gradient: linear-gradient(135deg, #F8E7A1 0%, #D4AF37 50%, #AA7C11 100%);
    
    /* Neon Purple/Magenta (Wave) */
    --purple-primary: #A855F7;
    --purple-light: #C084FC;
    --purple-dark: #7C3AED;
    --purple-glow: rgba(168, 85, 247, 0.4);
    --purple-gradient: linear-gradient(135deg, #C084FC 0%, #A855F7 50%, #7C3AED 100%);

    /* Neon Green (Laser) */
    --green-primary: #4ADE80;
    --green-light: #86EFAC;
    --green-dark: #10B981;
    --green-glow: rgba(74, 222, 128, 0.35);
    --green-gradient: linear-gradient(135deg, #86EFAC 0%, #4ADE80 50%, #10B981 100%);

    /* Neutrals */
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --text-muted: #6B7280;
    --border-glass: rgba(255, 255, 255, 0.07);
    --border-glass-glow: rgba(212, 175, 55, 0.25);
    
    /* Effects & Transitions */
    --glass-blur: blur(16px);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-snappy: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
    --shadow-glow-gold: 0 0 25px rgba(212, 175, 55, 0.15);
    --shadow-glow-purple: 0 0 25px rgba(168, 85, 247, 0.2);
}

/* --- BASE RESETS & TYPOGRAPHY --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
    color: var(--text-primary);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #FFFFFF;
}

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

li {
    list-style: none;
}

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

input, select, textarea, button {
    font-family: inherit;
    color: inherit;
}

/* --- AMBIENT BACKGROUND GLOWS --- */
.bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    animation: pulseGlow 12s infinite alternate ease-in-out;
}

.bg-glow-purple {
    top: -20%;
    right: -10%;
    background: var(--purple-primary);
}

.bg-glow-green {
    bottom: -10%;
    left: -20%;
    background: var(--green-primary);
    animation-delay: 3s;
}

.bg-glow-gold {
    top: 40%;
    left: 10%;
    width: 40vw;
    height: 40vw;
    background: var(--gold-primary);
    opacity: 0.04;
    animation-delay: 6s;
}

@keyframes pulseGlow {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.04;
    }
    100% {
        transform: translate(8%, 5%) scale(1.15);
        opacity: 0.08;
    }
}

/* --- CORE LAYOUT UTILITIES --- */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
    position: relative;
    z-index: 2;
}

.section-badge {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.section-title {
    font-size: 2.75rem;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

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

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

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

/* Gradients Text styling */
.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

/* --- GLASSMORPHISM CLASS --- */
.glass-panel {
    background: var(--color-bg-card);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--border-glass-glow);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8), var(--shadow-glow-gold);
}

/* --- SHIMMER & GLASS BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-snappy);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Gold Shimmer Button */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.btn-shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-shimmer:hover::before {
    animation: shimmerEffect 1.5s infinite;
}

@keyframes shimmerEffect {
    0% {
        left: -150%;
    }
    100% {
        left: 200%;
    }
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45), var(--shadow-glow-gold);
}

/* Glass Laser Button */
.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--purple-glow);
}

/* --- HEADER / GLASS NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(5, 8, 14, 0.75);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    padding: 12px 0;
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-snappy);
}

.main-header.scrolled .header-container {
    padding: 10px 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-icon {
    height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: 0.08em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}

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

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

.nav-link:hover {
    color: #FFFFFF;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1030;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-snappy);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Slide-Out menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100dvh;
    background: rgba(5, 8, 14, 0.98);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    z-index: 1020;
    padding: 120px 40px 40px 40px;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-left: 1px solid rgba(212, 175, 55, 0.2);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-link:hover {
    color: #FFFFFF;
    padding-left: 8px;
}

.mobile-cta {
    margin-top: 20px;
    text-align: center;
}

/* --- LASER VISUAL SYSTEM --- */
.laser-scanner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 10%, 
        var(--green-primary) 30%, 
        var(--purple-primary) 50%, 
        var(--green-primary) 70%, 
        transparent 90%);
    box-shadow: 0 0 12px 2px var(--green-primary), 0 0 20px 4px var(--purple-primary);
    opacity: 0.2;
    z-index: 9999;
    pointer-events: none;
    animation: laserScan 24s infinite linear;
}

@keyframes laserScan {
    0% {
        top: 0%;
        opacity: 0.15;
    }
    48% {
        opacity: 0.35;
    }
    50% {
        top: 100%;
        opacity: 0.15;
    }
    52% {
        opacity: 0.35;
    }
    100% {
        top: 0%;
        opacity: 0.15;
    }
}

/* Horizontal Laser separators */
.section-divider-laser {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, var(--border-glass-glow) 50%, transparent 95%);
    position: relative;
    z-index: 5;
}

.section-divider-laser::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green-primary), var(--purple-primary), transparent);
    box-shadow: 0 0 10px var(--green-primary);
    animation: laserPulse 6s infinite ease-in-out;
}

.section-divider-laser.reverse::before {
    animation-delay: 3s;
    background: linear-gradient(90deg, transparent, var(--purple-primary), var(--green-primary), transparent);
    box-shadow: 0 0 10px var(--purple-primary);
}

@keyframes laserPulse {
    0%, 100% {
        transform: scaleX(0.8);
        opacity: 0.4;
    }
    50% {
        transform: scaleX(1.1);
        opacity: 0.95;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 24px 80px 24px;
    z-index: 1;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    pointer-events: none;
    animation: logoPulse 8s infinite alternate ease-in-out;
}

@keyframes logoPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

.hero-logo-img {
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(168, 85, 247, 0.3));
    animation: logoFloat 6s infinite ease-in-out;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 720px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Customized Audio Waveform indicator */
.waveform-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 40px;
}

.wave-bar {
    width: 3px;
    height: 10px;
    background: var(--purple-gradient);
    border-radius: 2px;
    animation: bounceWave 1.2s infinite ease-in-out;
}

.wave-bar:nth-child(even) {
    background: var(--green-gradient);
    animation-duration: 0.8s;
}

/* Stagger heights and animation delays */
.wave-bar:nth-child(1) { height: 12px; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 28px; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 18px; animation-delay: 0.5s; }
.wave-bar:nth-child(4) { height: 35px; animation-delay: 0.2s; }
.wave-bar:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.wave-bar:nth-child(6) { height: 14px; animation-delay: 0.1s; }
.wave-bar:nth-child(7) { height: 25px; animation-delay: 0.6s; }
.wave-bar:nth-child(8) { height: 38px; animation-delay: 0.3s; }
.wave-bar:nth-child(9) { height: 25px; animation-delay: 0.5s; }
.wave-bar:nth-child(10) { height: 14px; animation-delay: 0.2s; }
.wave-bar:nth-child(11) { height: 20px; animation-delay: 0.4s; }
.wave-bar:nth-child(12) { height: 35px; animation-delay: 0.1s; }
.wave-bar:nth-child(13) { height: 18px; animation-delay: 0.6s; }
.wave-bar:nth-child(14) { height: 28px; animation-delay: 0.3s; }
.wave-bar:nth-child(15) { height: 12px; animation-delay: 0.2s; }

@keyframes bounceWave {
    0%, 100% {
        transform: scaleY(0.4);
    }
    50% {
        transform: scaleY(1.2);
    }
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.hero-cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
}

.hero-cta-btn-secondary {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Scroll indicator dot */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
    opacity: 0.6;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    animation: scrollScroll 1.6s infinite ease-in-out;
}

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

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-cols: 1.1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.premium-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 10px 40px -10px rgba(0,0,0,0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-profile-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center top;
    transition: var(--transition-smooth);
    filter: brightness(0.95) contrast(1.02);
    display: block;
}

.premium-image-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5,8,14,0.5) 0%, transparent 60%);
    pointer-events: none;
}

.premium-image-frame:hover .about-profile-img {
    transform: scale(1.02);
}

.card-glowing-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    pointer-events: none;
    box-shadow: inset 0 0 30px rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.15);
    z-index: 3;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-accent-paragraph {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.about-text-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- SERVICES GRID SECTION --- */
.services-grid {
    display: grid;
    grid-template-cols: repeat(2, 1fr);
    gap: 32px;
    margin-top: 20px;
}

.service-card {
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.service-icon {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.service-badge-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
}

.card-tag-gold {
    background: rgba(212, 175, 55, 0.08);
    border: 1.5px solid rgba(212, 175, 55, 0.25);
    color: var(--gold-light);
}

.card-tag-purple {
    background: rgba(168, 85, 247, 0.08);
    border: 1.5px solid rgba(168, 85, 247, 0.25);
    color: var(--purple-light);
}

.card-tag-green {
    background: rgba(74, 222, 128, 0.08);
    border: 1.5px solid rgba(74, 222, 128, 0.25);
    color: var(--green-light);
}

.service-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    transition: var(--transition-snappy);
}

.service-card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.service-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.bullet-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    display: inline-block;
}

/* Purple dot for corporate */
#serviceCorporate .bullet-dot {
    background-color: var(--purple-primary);
}

/* Green dot for school */
#serviceSchool .bullet-dot {
    background-color: var(--green-primary);
}

/* Hover Accent overrides */
.service-card:hover .service-icon-wrapper {
    background: var(--gold-primary);
    color: var(--color-bg-dark);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

#serviceCorporate:hover .service-icon-wrapper {
    background: var(--purple-primary);
    color: #FFFFFF;
    border-color: var(--purple-light);
    box-shadow: 0 0 20px var(--purple-glow);
}

#serviceSchool:hover .service-icon-wrapper {
    background: var(--green-primary);
    color: var(--color-bg-dark);
    border-color: var(--green-light);
    box-shadow: 0 0 20px var(--green-glow);
}

.card-glow-bg {
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 0;
}

#serviceWedding .card-glow-bg { background: var(--gold-primary); }
#serviceCorporate .card-glow-bg { background: var(--purple-primary); }
#serviceSchool .card-glow-bg { background: var(--green-primary); }
#servicePrivate .card-glow-bg { background: var(--gold-primary); }

.service-card:hover .card-glow-bg {
    opacity: 0.08;
    bottom: -40px;
    right: -40px;
}

/* --- THE GEAR SECTION --- */
.gear-grid {
    display: grid;
    grid-template-cols: 1.3fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.gear-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* Details Accordion */
.gear-details-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-snappy);
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.accordion-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    transition: var(--transition-snappy);
}

.accordion-icon {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: var(--transition-smooth);
}

.accordion-content p {
    color: var(--text-secondary);
    padding-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Accordion Active States */
.accordion-item.active {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(74, 222, 128, 0.25);
}

.accordion-item.active .accordion-title {
    color: var(--green-light);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--green-primary);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

.gear-visual {
    position: relative;
}

.gear-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(255,255,255,0.06);
}

.gear-showcase-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center center;
    transition: var(--transition-smooth);
    filter: brightness(0.9) contrast(1.05) saturate(1.05);
    display: block;
}

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

.image-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* --- REVIEWS CTA BLOCK --- */
.reviews-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 64px 48px;
    text-align: center;
    border-color: rgba(212, 175, 55, 0.15);
    max-width: 640px;
    margin: 0 auto;
}

.reviews-cta-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- TESTIMONIALS CAROUSEL (legacy, kept for future use) --- */
.carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height: 300px;
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 48px 56px;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.6s ease-in-out, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: none;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.carousel-slide.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.quote-icon {
    font-family: 'Syne', sans-serif;
    font-size: 5rem;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 40px;
    opacity: 0.05;
    color: #FFFFFF;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-light);
}

.author-details {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Carousel Control Buttons */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-snappy);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-primary);
    color: var(--gold-light);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.carousel-dots .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-snappy);
}

.carousel-dots .carousel-dot.active {
    background: var(--gold-primary);
    transform: scale(1.25);
    box-shadow: 0 0 8px var(--gold-primary);
}

/* --- FAQ ACCORDION SECTION --- */
.faq-accordion-grid {
    display: grid;
    grid-template-cols: 1fr;
    gap: 16px;
    max-width: 840px;
    margin: 0 auto;
}

.faq-item {
    padding: 24px 32px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 16px;
}

/* Open State */
.faq-item.active {
    border-color: rgba(214, 175, 55, 0.25);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.6);
}

.faq-item.active .faq-question {
    color: var(--gold-light);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--gold-primary);
}

.faq-item.active .faq-answer {
    max-height: 160px;
}

/* --- BOOKING & FORMS SECTION --- */
.booking-grid {
    display: grid;
    grid-template-cols: 1fr 1.2fr;
    gap: 64px;
    align-items: flex-start;
}

.booking-lead-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.booking-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checklist-icon {
    color: var(--green-primary);
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checklist-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* Direct Contacts Card */
.direct-contact-card {
    padding: 32px;
    border-color: rgba(168, 85, 247, 0.15);
    box-shadow: var(--shadow-premium), 0 0 30px rgba(168,85,247,0.05);
}

.direct-contact-card:hover {
    border-color: var(--purple-light);
    box-shadow: var(--shadow-premium), 0 0 35px rgba(168,85,247,0.15);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-detail-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.15rem;
    color: var(--purple-light);
}

.contact-link {
    color: var(--text-secondary);
    transition: var(--transition-snappy);
}

.contact-link:hover {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

/* Booking Form styling */
.booking-form-wrapper {
    padding: 48px;
    border-color: rgba(255, 255, 255, 0.08);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row.two-cols {
    display: grid;
    grid-template-cols: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background: rgba(5, 8, 14, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-snappy);
}

.form-group input::placeholder, 
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    color: var(--text-primary);
    cursor: pointer;
}

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

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
    background: rgba(5, 8, 14, 0.95);
}

/* Date picker calendar style */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.9) sepia(0.6) saturate(5) hue-rotate(5deg);
    cursor: pointer;
}

.form-status {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    min-height: 24px;
}

.form-status.success {
    color: var(--green-primary);
}

.form-status.error {
    color: #F87171;
}

.form-submit-btn {
    padding: 16px 0;
    font-size: 1rem;
}

/* --- GLOBAL FOOTER --- */
.main-footer {
    background: #020306;
    border-top: 1px solid rgba(255,255,255,0.04);
    position: relative;
    z-index: 5;
    padding: 80px 24px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-cols: 1.2fr 2fr;
    gap: 64px;
    padding-bottom: 64px;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-brand-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-cols: repeat(3, 1fr);
    gap: 32px;
}

.footer-link-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-link-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-group li {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.footer-link-group a {
    transition: var(--transition-snappy);
}

.footer-link-group a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-copyright-row {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 30px 24px;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.developer-tag {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.2);
}

/* --- SCROLL REVEAL VIEWPORT ANIMATIONS --- */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger transitions slightly */
.scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.45s; }

/* --- RESPONSIVE MEDIA BREAKPOINTS --- */

/* Ultra-Wide Monitors & 4K adjustments */
@media (min-width: 1600px) {
    html {
        font-size: 18px;
    }
}

/* Small Laptops & Tablets Landscape */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }
    
    .about-grid, 
    .gear-grid, 
    .booking-grid {
        grid-template-cols: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .gear-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .footer-container {
        grid-template-cols: 1fr;
        gap: 48px;
    }
}

/* Portrait Tablets */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }

    .main-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-cols: 1fr;
    }
    
    .service-card {
        padding: 36px;
    }

    .carousel-slide {
        padding: 36px;
    }

    .form-row.two-cols {
        grid-template-cols: 1fr;
        gap: 20px;
    }

    .footer-links-grid {
        grid-template-cols: 1fr;
        gap: 32px;
    }
    
    .copyright-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .nav-logo-icon {
        height: 32px;
    }

    .about-stats {
        grid-template-cols: 1fr;
        gap: 16px;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .hero-cta-btn, 
    .hero-cta-btn-secondary {
        width: 100%;
    }

    .booking-form-wrapper {
        padding: 24px 20px;
    }
    
    .carousel-controls {
        gap: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
}


/* Mobile Performance Optimization */
@media (max-width: 768px) {
  .glass-panel, .main-header, .mobile-menu {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(15, 15, 18, 0.98) !important;
  }
  .ambient-background, .glow-orb {
    display: none !important;
  }
  .scroll-reveal {
    transition-duration: 0.4s !important;
  }
  .service-card, .premium-image-frame {
    transform: none !important;
    transition: none !important;
  }
}


/* Helper Utility Classes to remove inline styles */
.gold-light-text {
  color: var(--gold-light);
}
.instagram-embed-wrapper-style {
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
  padding: 16px;
}
.instagram-media-style {
  background: #FFF;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 0 1px 0 rgba(0,0,0,0.5), 0 1px 10px 0 rgba(0,0,0,0.15);
  margin: 1px;
  max-width: 540px;
  min-width: 326px;
  padding: 0;
  width: 99.375%;
  width: -webkit-calc(100% - 2px);
  width: calc(100% - 2px);
}
.developer-tag a {
  color: var(--gold-light);
  font-weight: 600;
}
