/* ==========================================================================
   ELEVEN POINT TWO - EVENT & CONCERT PRODUCTION AGENCY
   Dark Mode & Glassmorphism Aesthetics
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Syne:wght@600;700;800&family=Playfair+Display:ital@1&display=swap');

:root {
  --bg-midnight: #07090e;
  --bg-midnight-alt: #0b0f19;
  --bg-card: rgba(15, 23, 42, 0.45);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-glow: rgba(56, 189, 248, 0.4);
  
  /* Vibrant Multi-Color Palette Accents */
  --accent-cyan: #38bdf8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.5);
  --accent-purple: #c084fc;
  --accent-purple-glow: rgba(192, 132, 252, 0.5);
  --accent-gold: #fbbf24;
  --accent-gold-glow: rgba(251, 191, 36, 0.5);
  --accent-emerald: #34d399;
  --accent-emerald-glow: rgba(52, 211, 153, 0.5);
  --accent-pink: #f472b6;
  --accent-pink-glow: rgba(244, 114, 182, 0.5);
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-italic: 'Playfair Display', serif;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Multi-Color Accent Utility Cards (Ultra-Glassmorphic) */
.card-theme-cyan {
  --card-accent: #38bdf8;
  --card-glow: rgba(56, 189, 248, 0.35);
  --card-grad: linear-gradient(135deg, rgba(56, 189, 248, 0.18) 0%, rgba(56, 189, 248, 0.03) 50%, rgba(15, 23, 42, 0.5) 100%);
  --card-border-glow: rgba(56, 189, 248, 0.5);
  --card-top-border: rgba(56, 189, 248, 0.4);
}
.card-theme-purple {
  --card-accent: #c084fc;
  --card-glow: rgba(192, 132, 252, 0.35);
  --card-grad: linear-gradient(135deg, rgba(192, 132, 252, 0.18) 0%, rgba(192, 132, 252, 0.03) 50%, rgba(15, 23, 42, 0.5) 100%);
  --card-border-glow: rgba(192, 132, 252, 0.5);
  --card-top-border: rgba(192, 132, 252, 0.4);
}
.card-theme-gold {
  --card-accent: #fbbf24;
  --card-glow: rgba(251, 191, 36, 0.35);
  --card-grad: linear-gradient(135deg, rgba(251, 191, 36, 0.18) 0%, rgba(251, 191, 36, 0.03) 50%, rgba(15, 23, 42, 0.5) 100%);
  --card-border-glow: rgba(251, 191, 36, 0.5);
  --card-top-border: rgba(251, 191, 36, 0.4);
}
.card-theme-emerald {
  --card-accent: #34d399;
  --card-glow: rgba(52, 211, 153, 0.35);
  --card-grad: linear-gradient(135deg, rgba(52, 211, 153, 0.18) 0%, rgba(52, 211, 153, 0.03) 50%, rgba(15, 23, 42, 0.5) 100%);
  --card-border-glow: rgba(52, 211, 153, 0.5);
  --card-top-border: rgba(52, 211, 153, 0.4);
}
.card-theme-pink {
  --card-accent: #f472b6;
  --card-glow: rgba(244, 114, 182, 0.35);
  --card-grad: linear-gradient(135deg, rgba(244, 114, 182, 0.18) 0%, rgba(244, 114, 182, 0.03) 50%, rgba(15, 23, 42, 0.5) 100%);
  --card-border-glow: rgba(244, 114, 182, 0.5);
  --card-top-border: rgba(244, 114, 182, 0.4);
}

.service-card[class*="card-theme-"],
.gallery-item[class*="card-theme-"] {
  background: var(--card-grad), linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid var(--card-top-border, rgba(255, 255, 255, 0.3));
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.4);
}

.service-card[class*="card-theme-"]:hover {
  border-color: var(--card-border-glow);
  border-top-color: var(--card-accent);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    0 20px 45px -10px var(--card-glow),
    0 0 30px -5px var(--card-glow);
  transform: translateY(-8px) scale(1.02);
}

.service-card[class*="card-theme-"] .service-icon-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-accent);
  color: var(--card-accent);
  box-shadow: 0 0 15px var(--card-glow), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-card[class*="card-theme-"]:hover .service-icon-box {
  background: var(--card-accent);
  color: #07090e;
  box-shadow: 0 0 25px var(--card-accent), 0 0 45px var(--card-glow);
  transform: scale(1.12) rotate(4deg);
}

.service-card[class*="card-theme-"] .service-link {
  color: var(--card-accent);
}

/* Floating Musical Notes on Scroll */
.floating-note {
  position: fixed;
  font-size: 22px;
  color: var(--accent-cyan);
  pointer-events: none;
  z-index: 99;
  opacity: 0.8;
  animation: noteFloatUp 4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  text-shadow: 0 0 12px var(--accent-cyan);
}

@keyframes noteFloatUp {
  0% {
    transform: translateY(0) scale(0.6) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-160px) scale(1.4) rotate(30deg);
    opacity: 0;
  }
}

/* Infinite Marquee Tickers for Artists & Brands */
.infinite-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.infinite-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeRightToLeft 30s linear infinite;
  will-change: transform;
}

.infinite-marquee-wrapper:hover .infinite-marquee-track {
  animation-play-state: paused;
}

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

/* Official Logo Styling */
.official-logo-svg {
  height: 38px;
  width: auto;
  display: block;
}

/* "WHAT ARE YOU PLANNING?" SECTION STYLES */
.planner-section {
  padding: 100px 0;
  position: relative;
  background: radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 70%);
}

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

.planner-card {
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  border-radius: 16px;
  transition: all var(--transition-smooth);
}

.planner-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  transition: all var(--transition-smooth);
}

.planner-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.planner-card:hover .planner-icon {
  transform: scale(1.15) rotate(5deg);
}

/* Upcoming Show Date Badge */
.show-date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 12px;
  background: rgba(7, 9, 14, 0.85);
  border: 1px solid var(--accent-cyan);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  backdrop-filter: blur(8px);
}

.show-status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  border-radius: 20px;
  font-size: 9px;
  font-weight: 800;
  color: #f87171;
  letter-spacing: 1px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-midnight);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body {
  background: var(--bg-midnight);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Scroll Progress Bar Top */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8, #0284c7, #38bdf8);
  box-shadow: 0 0 12px var(--accent-cyan);
  width: 0%;
  z-index: 1000;
  transition: width 0.1s ease-out;
}

/* Scroll Triggered Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* Hero Dynamic Shimmer & Floating Badges */
.shimmer-text {
  background: linear-gradient(90deg, #ffffff 0%, #38bdf8 30%, #ffffff 60%, #38bdf8 100%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: textShimmer 5s linear infinite;
}

@keyframes textShimmer {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-badge {
  position: absolute;
  padding: 10px 18px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--glass-border-glow);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(12px);
  z-index: 3;
  animation: badgeFloat 6s ease-in-out infinite alternate;
}

.floating-badge-1 {
  top: 25%;
  left: 6%;
}

.floating-badge-2 {
  bottom: 28%;
  right: 6%;
  animation-delay: -3s;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0) rotate(-1deg);
  }

  100% {
    transform: translateY(-16px) rotate(2deg);
  }
}


/* Ambient Radial Gradients & Noise Overlay */
.bg-glow-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-1 {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90vw;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.12) 0%, rgba(14, 165, 233, 0.03) 45%, transparent 70%);
  filter: blur(60px);
}

.bg-glow-2 {
  position: absolute;
  top: 45%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(80px);
}

.bg-glow-3 {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
  filter: blur(100px);
}

.bg-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.6;
}

/* Custom Magnetic Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--accent-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
  mix-blend-mode: difference;
  opacity: 0;
}

.custom-cursor-follower {
  position: fixed;
  width: 48px;
  height: 48px;
  border: 1px solid var(--accent-cyan-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.2s cubic-bezier(0.1, 0.8, 0.3, 1), width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-cyan);
  text-transform: uppercase;
}

body.cursor-active .custom-cursor,
body.cursor-active .custom-cursor-follower {
  opacity: 1;
}

.custom-cursor-follower.is-hover {
  width: 70px;
  height: 70px;
  background: rgba(56, 189, 248, 0.1);
  border-color: var(--accent-cyan);
}

.custom-cursor-follower.is-video::after {
  content: 'PLAY';
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.italic-accent {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  color: var(--accent-cyan);
  display: inline-block;
  margin: 0 4px;
}

.cyan-text {
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.cyan-glow-box {
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

/* Layout Container */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Glassmorphism Card Style System */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 40%, rgba(15, 23, 42, 0.45) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4),
    0 12px 32px rgba(0, 0, 0, 0.35);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.12), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  border-top-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.35),
    0 18px 40px -10px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
  color: #07090e;
  border: none;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.btn-cyan:hover {
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
  transform: translateY(-2px);
  color: #000;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
  transform: translateY(-2px);
}

.btn-play-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  transition: transform var(--transition-fast);
}

.btn-outline:hover .btn-play-icon {
  background: var(--accent-cyan);
  color: #07090e;
  transform: scale(1.1);
}

/* Sticky Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.brand-logo-img {
  height: 48px;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.45));
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(2, 132, 199, 0.4));
  border: 1px solid var(--accent-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-cyan);
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-subtitle {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

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

.header-cta .btn {
  padding: 10px 20px;
  font-size: 11px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   HERO SECTION (MAK Management Inspired Photo Wall + Eleven Point Two CTA)
   ========================================================================== */

.hero-section {
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Hero Background Video Container & Overlay */
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: brightness(0.65) contrast(1.1);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at center, rgba(7, 9, 14, 0.35) 0%, rgba(7, 9, 14, 0.85) 100%),
    linear-gradient(to bottom, rgba(7, 9, 14, 0.75) 0%, rgba(7, 9, 14, 0.2) 30%, rgba(7, 9, 14, 0.2) 70%, rgba(7, 9, 14, 0.95) 100%);
  pointer-events: none;
}


/* Hero Content */
.hero-content {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Audio Visualizer Bar Top (Middle Class Musicians style) */
.audio-equalizer-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.eq-bar {
  width: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.eq-bar:nth-child(1) {
  height: 40%;
  animation-delay: 0.1s;
}

.eq-bar:nth-child(2) {
  height: 80%;
  animation-delay: 0.3s;
}

.eq-bar:nth-child(3) {
  height: 100%;
  animation-delay: 0.2s;
}

.eq-bar:nth-child(4) {
  height: 60%;
  animation-delay: 0.4s;
}

@keyframes eqPulse {
  0% {
    height: 20%;
  }

  100% {
    height: 100%;
  }
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  font-weight: 400;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Artist Marquee Ticker Strip */
.marquee-wrapper {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 14px 0;
  background: rgba(7, 9, 14, 0.6);
  backdrop-filter: blur(10px);
}

.marquee-content {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-item {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-item span.highlight {
  color: var(--accent-cyan);
}

.marquee-item::after {
  content: '✦';
  color: var(--accent-cyan);
  opacity: 0.5;
  font-size: 10px;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   STATS COUNTER STRIP
   ========================================================================== */

.stats-section {
  padding: 50px 0;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--glass-border);
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.stat-icon svg {
  width: 26px;
  height: 26px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent-cyan);
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

/* ==========================================================================
   WHAT WE DO (5 FEATURE CARDS)
   ========================================================================== */

.services-section {
  padding: 100px 0;
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, rgba(192, 132, 252, 0.05) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.12) 0%, rgba(52, 211, 153, 0.05) 50%, transparent 70%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

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

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
}

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

.service-card {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.06);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  margin-bottom: 24px;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon-box {
  background: var(--accent-cyan);
  color: #07090e;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
  transform: scale(1.08);
}

.service-icon-box svg {
  width: 26px;
  height: 26px;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}

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

.service-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 10px;
  text-shadow: 0 0 10px var(--accent-cyan);
}

/* ==========================================================================
   ARTIST SHOWCASE CAROUSEL
   ========================================================================== */

.artists-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
}

/* Infinite Marquee Track for Artists Showcase */
.infinite-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.infinite-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeArtistScroll 32s linear infinite;
  will-change: transform;
}

.infinite-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeArtistScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.artist-card {
  width: 190px;
  min-width: 190px;
  flex: 0 0 190px;
  flex-shrink: 0;
  height: 270px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.artist-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
  filter: grayscale(15%);
}

.artist-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 9, 14, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 14px;
  transition: background 0.4s ease;
}

.artist-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.artist-card:hover .artist-card-img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.artist-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.35);
}

/* Carousel Controls */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(7, 9, 14, 0.8);
  border: 1px solid var(--glass-border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
}

/* ==========================================================================
   SIGNATURE PRODUCTIONS
   ========================================================================== */

.productions-section {
  padding: 100px 0;
  position: relative;
}

.productions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Skeuomorphic Concert Ticket Cards */
.production-card {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 420px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 2px 2px rgba(255, 255, 255, 0.3),
    inset 0 -2px 4px rgba(0, 0, 0, 0.8),
    0 16px 35px -5px rgba(0, 0, 0, 0.7);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.production-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--card-border-glow, rgba(56, 189, 248, 0.5));
  border-top-color: var(--card-accent, #38bdf8);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.5),
    0 25px 50px -10px var(--card-glow, rgba(56, 189, 248, 0.5)),
    0 0 30px -5px var(--card-glow, rgba(56, 189, 248, 0.4));
}

/* Physical Ticket Side Notches */
.ticket-notch {
  position: absolute;
  top: 72%;
  width: 24px;
  height: 24px;
  background: #07090e;
  border-radius: 50%;
  z-index: 10;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.9), inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.notch-left {
  left: -12px;
}

.notch-right {
  right: -12px;
}

/* Skeuomorphic Metallic Hologram Date & Status Badges */
.skeuo-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.9) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.8),
    0 6px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  z-index: 3;
}

.skeuo-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.85) 0%, rgba(185, 28, 28, 0.95) 100%);
  border: 1px solid rgba(254, 202, 202, 0.4);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.5),
    inset 0 -1px 2px rgba(0, 0, 0, 0.6),
    0 6px 15px rgba(239, 68, 68, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  z-index: 3;
}

/* Ticket Image & Gradient Overlay */
.production-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: contrast(1.1) brightness(0.9);
}

.production-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.15) 0%, rgba(7, 9, 14, 0.6) 45%, rgba(7, 9, 14, 0.98) 90%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: background 0.4s ease;
  z-index: 2;
}

.production-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
}

.production-title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* Perforated Ticket Tear Stub Line */
.ticket-stub-divider {
  width: 100%;
  height: 0;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
  margin: 10px 0 12px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.5);
}

/* Ticket Stub Footer Row with Barcode */
.ticket-stub-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ticket-barcode {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.barcode-lines {
  font-family: 'Courier New', monospace;
  font-weight: 900;
  letter-spacing: 2.5px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

.barcode-num {
  font-family: monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.production-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent-cyan));
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

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

.production-card:hover .production-play-btn {
  background: var(--card-accent, var(--accent-cyan));
  color: #07090e !important;
  border-color: var(--card-accent, var(--accent-cyan));
  box-shadow: 0 0 20px var(--card-glow, rgba(56, 189, 248, 0.6));
  transform: scale(1.05);
}

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

/* ==========================================================================
   BRAND TRUST WALL
   ========================================================================== */

.brand-section {
  padding: 80px 0;
  position: relative;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  align-items: center;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  width: 160px;
  height: 50px;
  flex-shrink: 0;
  opacity: 0.85;
  filter: grayscale(100%) brightness(1.8);
  transition: all var(--transition-fast);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1);
  transform: scale(1.08);
}

.brand-item svg,
.brand-item img {
  width: 100%;
  height: 100%;
  max-width: 130px;
  max-height: 42px;
}

/* ==========================================================================
   A GLIMPSE OF OUR WORLD (GALLERY STRIP)
   ========================================================================== */

.gallery-section {
  padding: 100px 0;
  position: relative;
}

.gallery-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-item {
  height: 240px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.gallery-item.center-spotlight {
  border: 1px solid var(--accent-cyan);
  box-shadow: 0 0 25px rgba(56, 189, 248, 0.25);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 14, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s ease;
}

.gallery-play-pulse {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition-fast);
}

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

.gallery-item:hover .gallery-play-pulse {
  transform: scale(1.15);
  background: var(--accent-cyan);
  color: #07090e;
}

.gallery-title-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
}

/* ==========================================================================
   FOOTER CTA & CONTACT DETAILS
   ========================================================================== */

.footer-section {
  padding-top: 100px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, transparent 0%, #030508 100%);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-item:hover {
  color: var(--accent-cyan);
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  font-size: 12px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   MODAL DIALOGS (Showreel & Plan Event Wizard)
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 24px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  width: 100%;
  max-width: 760px;
  background: #0b0f19;
  border: 1px solid var(--accent-cyan-glow);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.2);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-cyan);
  color: #07090e;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-select option {
  background-color: #0b0f19;
  color: #ffffff;
  padding: 12px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

/* ==========================================================================
   LIQUID GLASS (FLUID GLASSMORPHISM) PLANNER CARDS
   ========================================================================== */

.planner-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.planner-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, rgba(192, 132, 252, 0.08) 45%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.planner-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: 15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(52, 211, 153, 0.08) 45%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.planner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.planner-card {
  padding: 34px 26px;
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(
    135deg, 
    rgba(255, 255, 255, 0.16) 0%, 
    rgba(255, 255, 255, 0.04) 30%, 
    rgba(15, 23, 42, 0.45) 100%
  );
  backdrop-filter: blur(28px) saturate(220%);
  -webkit-backdrop-filter: blur(28px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1.5px solid rgba(255, 255, 255, 0.5);
  border-left: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 
    inset 0 2px 3px rgba(255, 255, 255, 0.35),
    inset 0 -2px 4px rgba(0, 0, 0, 0.5),
    0 16px 40px -10px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dynamic Liquid Prism Light Wave Sheen */
.planner-card::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.15) 46%,
    rgba(56, 189, 248, 0.25) 50%,
    rgba(255, 255, 255, 0.15) 54%,
    transparent 65%
  );
  transform: rotate(25deg);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
}

.planner-card:hover::after {
  transform: rotate(25deg) translate(35%, 35%);
}

.planner-card:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: var(--card-border-glow, rgba(255, 255, 255, 0.4));
  border-top-color: rgba(255, 255, 255, 0.7);
  box-shadow: 
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    0 25px 55px -10px var(--card-glow, rgba(56, 189, 248, 0.5)),
    0 0 35px -5px var(--card-glow, rgba(56, 189, 248, 0.4));
}

/* Frosted Liquid Drop Icon Badges */
.planner-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.5),
    0 8px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.planner-card:hover .planner-icon {
  transform: scale(1.15) rotate(6deg);
  background: var(--card-accent, var(--accent-cyan));
  color: #07090e;
  border-color: var(--card-accent, var(--accent-cyan));
  box-shadow: 0 0 25px var(--card-accent, var(--accent-cyan)), 0 0 45px var(--card-glow, rgba(56, 189, 248, 0.5));
}

.planner-card-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.planner-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.planner-card-btn {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--card-accent, var(--accent-cyan));
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, text-shadow 0.3s ease;
}

.planner-card:hover .planner-card-btn {
  gap: 10px;
  text-shadow: 0 0 15px var(--card-accent, var(--accent-cyan));
}

/* Touch device cursor fallback */
@media (hover: none) and (pointer: coarse) {
  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }
}

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

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .productions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .artist-card {
    flex: 0 0 calc(25% - 20px);
  }
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(7, 9, 14, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border-glow);
    padding: 30px 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
  }

  .nav-menu.mobile-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
    transition: border-color var(--transition-fast), color var(--transition-fast);
  }

  .mobile-toggle.active {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
  }

  .header-cta {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .artist-card {
    width: 165px;
    min-width: 165px;
    flex: 0 0 165px;
    height: 245px;
  }

  .bg-column:nth-child(n+4) {
    display: none;
  }
}

@media (max-width: 600px) {
  .planner-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .productions-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .artist-card {
    width: 145px;
    min-width: 145px;
    flex: 0 0 145px;
    height: 215px;
    border-radius: 12px;
  }

  .artist-name {
    font-size: 11px;
    letter-spacing: 0.5px;
  }

  .modal-container {
    padding: 24px 18px;
    max-height: 90vh;
    overflow-y: auto;
    width: 94%;
  }

  form [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  .bg-column:nth-child(n+3) {
    display: none;
  }

  .sound-widget {
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    transform: scale(0.85);
  }

  .floating-badge {
    display: none;
  }
}

/* Three.js Cinematic 3D Scene Container */
.three-hero-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Production Filter Tabs */
.production-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.tab-btn:hover,
.tab-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

/* Floating Sound Controller Widget */
.sound-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid var(--glass-border-glow);
  border-radius: 40px;
  color: var(--accent-cyan);
  cursor: pointer;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(56, 189, 248, 0.2);
  transition: all var(--transition-fast);
}

.sound-widget:hover {
  transform: scale(1.06);
  background: rgba(56, 189, 248, 0.2);
  border-color: var(--accent-cyan);
}

.sound-widget-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 14px;
}

.sound-widget-wave span {
  width: 3px;
  background: var(--accent-cyan);
  border-radius: 2px;
  height: 40%;
  transition: height 0.3s ease;
}

.sound-widget.playing .sound-widget-wave span {
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.sound-widget.playing .sound-widget-wave span:nth-child(1) { animation-delay: 0.1s; }
.sound-widget.playing .sound-widget-wave span:nth-child(2) { animation-delay: 0.3s; }
.sound-widget.playing .sound-widget-wave span:nth-child(3) { animation-delay: 0.2s; }
.sound-widget.playing .sound-widget-wave span:nth-child(4) { animation-delay: 0.4s; }