/* ==========================================================================
   SS SOUND & EVENTS - Core Design System & Theme Stylesheet
   Inspired by djsaggy.com UI Aesthetic (Dark Luxury, Neon Accents, Vinyl & Lasers)
   ========================================================================== */

/* ─── Google Fonts Import ────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Tinos:ital,wght@0,400;0,700;1,400&family=Righteous&display=swap');

/* ─── CSS Variables & Design Tokens ──────────────────────────────── */
:root {
  --font-heading: 'Times New Roman', Times, 'Tinos', Georgia, serif;
  --font-body: 'Poppins', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Color Palette */
  --orange: #FF6B1A;
  --orange-dim: #D65108;
  --orange-light: #FF8844;
  --amber: #FFAD3B;
  --gold: #FFD166;
  --bg: #0A0A0A;
  --bg-dark: #060606;
  --bg-card: #121212;
  --bg-card2: #181818;
  --bg-card-hover: #1f1f1f;
  --surface: #1E1E1E;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 107, 26, 0.45);
  --border-glow: rgba(255, 107, 26, 0.6);
  --text: #F5F5F5;
  --text-muted: #A0A0A0;
  --text-dim: #6B6B6B;
  --text-white: #FFFFFF;

  /* Shadows & Glows */
  --glow-orange: 0 0 25px rgba(255, 107, 26, 0.4);
  --glow-orange-lg: 0 0 50px rgba(255, 107, 26, 0.35);
  --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);

  /* Easing & Transitions */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ─── Custom Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--orange), var(--amber));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orange-light);
}

/* ─── Selection Styling ────────────────────────────────────────── */
::selection {
  background: var(--orange);
  color: #fff;
}

/* ─── Container & Layout Utilities ─────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container-fluid {
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
}

@media (min-width: 1200px) {
  .container-fluid {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (min-width: 1500px) {
  .container-fluid {
    padding-left: 44px;
    padding-right: 44px;
  }
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-sm {
  padding: 60px 0;
}

/* ─── Typography & Section Headers ─────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--orange) 70%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-orange {
  color: var(--orange) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.section-header {
  margin-bottom: 50px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--orange);
  position: relative;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── Top Contact Bar ─────────────────────────────────────────── */
.top-bar {
  background: #070707;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  padding: 8px 0;
  color: var(--text-muted);
}

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

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-weight: 400;
}

.top-link i {
  color: var(--orange);
  font-size: 0.85rem;
}

.top-link:hover {
  color: #fff;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 26, 0.15);
  color: var(--amber);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.top-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 0.95rem;
  transition: transform 0.2s;
}

.top-wa-btn:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

/* ─── Navigation Header ───────────────────────────────────────── */
.main-header {
  position: fixed;
  /* top: 38px; */
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: top 0.3s var(--ease-out), background 0.3s var(--ease-out), padding 0.3s var(--ease-out), box-shadow 0.3s;
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
  .main-header {
    top: 0 !important;
    padding: 10px 0;
    background: rgba(8, 8, 8, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.main-header.scrolled {
  top: 0 !important;
  padding: 10px 0;
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-logo-img {
  width: auto;
  height: 46px;
  max-width: 52px;
  border-radius: 0;
  object-fit: contain;
  border: none;
  box-shadow: none;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.brand-text {
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.brand-name {
  font-family: 'Times New Roman', Times, 'Tinos', Georgia, serif;
  font-size: 1.28rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-name span {
  color: #ffffff;
}

.brand-sub {
  font-family: 'Times New Roman', Times, 'Tinos', Georgia, serif;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Nav Links Desktop */
.nav-menu {
  display: none;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1200px) {
  .nav-menu {
    display: flex;
    gap: 16px;
  }
}

@media (min-width: 1400px) {
  .nav-menu {
    gap: 22px;
  }
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 2px;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap !important;
  letter-spacing: 0.2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 0.25s var(--ease-out);
  border-radius: 2px;
}

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

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

/* Dropdown Menu */
.dropdown-nav {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 250px;
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}

.dropdown-nav:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s, transform 0.15s;
  white-space: nowrap;
}

.dropdown-item a i {
  color: var(--orange);
  font-size: 0.75rem;
  transition: transform 0.15s;
}

.dropdown-item a:hover {
  background: rgba(255, 107, 26, 0.12);
  color: #fff;
  transform: translateX(4px);
}

.dropdown-item a:hover i {
  transform: translateX(2px);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-call {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.btn-header-call span {
  white-space: nowrap !important;
}

.btn-header-call i {
  color: var(--orange);
}

.btn-header-call:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: var(--border-glow);
}

@media (min-width: 860px) {
  .btn-header-call {
    display: inline-flex;
  }
}

/* Header Quote CTA */
.btn-header-quote {
  padding: 9px 18px;
  font-size: 0.84rem;
  white-space: nowrap !important;
  flex-shrink: 0;
}

@media (max-width: 500px) {
  .btn-header-quote {
    display: none;
  }
}

/* Hamburger Toggle */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 34px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 2px;
  z-index: 1100;
  flex-shrink: 0;
  margin-left: 4px;
}

@media (min-width: 1200px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--orange);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--orange);
}

/* ─── Mobile Drawer Menu ──────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 360px;
  height: 100vh;
  background: #0E0E0E;
  z-index: 1050;
  padding: 24px 20px;
  overflow-y: auto;
  transition: right 0.35s var(--ease-out);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}

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

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

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

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.drawer-close-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.drawer-close-btn:hover {
  color: #fff;
  border-color: var(--orange);
}

.drawer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0;
}

.drawer-nav a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.drawer-nav a i {
  color: var(--orange);
  font-size: 0.95rem;
  width: 20px;
}

.drawer-nav a:hover, .drawer-nav a.active {
  background: rgba(255, 107, 26, 0.12);
  color: #fff;
  transform: translateX(4px);
}
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.drawer-nav a i {
  color: var(--orange);
  font-size: 1rem;
  width: 20px;
}

.drawer-nav a:hover, .drawer-nav a.active {
  color: var(--orange);
}

.drawer-sub-menu {
  list-style: none;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.drawer-sub-menu a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ─── Hero Section (DJ Saggy Aesthetic) ────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 130px 20px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Background image & animated pan */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://api.skleup.com/api/sssound/admin/slider/QAUqCn3Tx2.JPG');
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  animation: heroBgPan 20s ease-in-out infinite alternate;
}

@keyframes heroBgPan {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.05) translateY(-3%); }
}

/* Multi-layered cinematic gradient overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,
      rgba(10, 10, 10, 0.96) 0%,
      rgba(10, 10, 10, 0.72) 40%,
      rgba(10, 10, 10, 0.55) 75%,
      rgba(10, 10, 10, 0.7) 100%
    ),
    radial-gradient(ellipse at bottom center,
      rgba(255, 107, 26, 0.22) 0%,
      transparent 70%
    );
}

/* Drifting Laser Grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 107, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 26, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridDrift 22s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to   { transform: translateY(55px); }
}

/* Pulsing Radial Glow */
.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.18) 0%, rgba(255, 173, 59, 0.06) 40%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 4.5s ease-in-out infinite;
}

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

/* ─── Laser Beams ─────────────────────────────────────────────── */
.laser-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.laser {
  position: absolute;
  bottom: 0;
  width: 2.5px;
  height: 0;
  border-radius: 2px;
  transform-origin: bottom center;
  animation: laserShoot 3.2s ease-out infinite;
}

.laser-1 {
  left: 12%;
  background: linear-gradient(to top, transparent, rgba(255, 107, 26, 0.8), transparent);
  animation-delay: 0s;
  animation-duration: 3.4s;
  transform: rotate(-18deg);
}

.laser-2 {
  left: 28%;
  background: linear-gradient(to top, transparent, rgba(255, 209, 102, 0.65), transparent);
  animation-delay: 0.9s;
  animation-duration: 2.8s;
  transform: rotate(-7deg);
}

.laser-3 {
  right: 28%;
  background: linear-gradient(to top, transparent, rgba(255, 107, 26, 0.75), transparent);
  animation-delay: 1.5s;
  animation-duration: 3.6s;
  transform: rotate(8deg);
}

.laser-4 {
  right: 12%;
  background: linear-gradient(to top, transparent, rgba(255, 173, 59, 0.7), transparent);
  animation-delay: 0.4s;
  animation-duration: 2.7s;
  transform: rotate(20deg);
}

@keyframes laserShoot {
  0%   { height: 0; opacity: 0; }
  12%  { opacity: 1; }
  55%  { height: 75vh; opacity: 0.85; }
  88%  { height: 85vh; opacity: 0; }
  100% { height: 0; opacity: 0; }
}

/* ─── Structural Overhead Box Truss Rig ─────────────────────────── */
.hero-truss-rig {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.75;
}

.truss-beam {
  width: 100%;
  height: 20px;
  border-bottom: 2px solid rgba(255, 173, 59, 0.45);
  border-top: 1px solid rgba(255, 173, 59, 0.25);
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(255, 173, 59, 0.18) 12px,
      rgba(255, 173, 59, 0.18) 14px,
      transparent 14px,
      transparent 26px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 12px,
      rgba(255, 173, 59, 0.18) 12px,
      rgba(255, 173, 59, 0.18) 14px,
      transparent 14px,
      transparent 26px
    ),
    rgba(15, 15, 18, 0.4);
}

.truss-hangers {
  display: flex;
  justify-content: space-around;
  padding: 0 8%;
  margin-top: -1px;
}

.truss-light-fixture {
  width: 14px;
  height: 12px;
  background: #1c1c22;
  border: 1px solid rgba(255, 173, 59, 0.55);
  border-radius: 2px 2px 5px 5px;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.4);
}

.truss-light-fixture::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 3px;
  background: #ffb84d;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffaa33, 0 0 16px rgba(255, 107, 26, 0.8);
}

/* ─── Volumetric Moving Head Stage Spotlights & Beams ───────────── */
.stage-lighting-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.stage-beam {
  position: absolute;
  top: 20px;
  width: 220px;
  height: 100vh;
  transform-origin: top center;
  clip-path: polygon(48% 0%, 52% 0%, 100% 100%, 0% 100%);
  opacity: 0.14;
  filter: blur(12px);
}

.beam-left-outer {
  left: 8%;
  background: linear-gradient(180deg, rgba(255, 107, 26, 0.85) 0%, rgba(255, 107, 26, 0.08) 70%, transparent 100%);
  transform: rotate(25deg);
  animation: sweepLeftOuter 10s ease-in-out infinite alternate;
}

.beam-left-inner {
  left: 26%;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.8) 0%, rgba(255, 173, 59, 0.08) 70%, transparent 100%);
  transform: rotate(11deg);
  animation: sweepLeftInner 8s ease-in-out infinite alternate;
}

.beam-center {
  left: 50%;
  margin-left: -110px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 173, 59, 0.12) 55%, transparent 100%);
  transform: rotate(0deg);
  animation: pulseCenterBeam 5.5s ease-in-out infinite alternate;
}

.beam-right-inner {
  right: 26%;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.8) 0%, rgba(255, 173, 59, 0.08) 70%, transparent 100%);
  transform: rotate(-11deg);
  animation: sweepRightInner 8.5s ease-in-out infinite alternate;
}

.beam-right-outer {
  right: 8%;
  background: linear-gradient(180deg, rgba(255, 107, 26, 0.85) 0%, rgba(255, 107, 26, 0.08) 70%, transparent 100%);
  transform: rotate(-25deg);
  animation: sweepRightOuter 10.5s ease-in-out infinite alternate;
}

@keyframes sweepLeftOuter {
  0%   { transform: rotate(18deg); opacity: 0.11; }
  50%  { transform: rotate(30deg); opacity: 0.16; }
  100% { transform: rotate(22deg); opacity: 0.12; }
}

@keyframes sweepLeftInner {
  0%   { transform: rotate(7deg); opacity: 0.14; }
  50%  { transform: rotate(16deg); opacity: 0.18; }
  100% { transform: rotate(9deg); opacity: 0.13; }
}

@keyframes pulseCenterBeam {
  0%   { opacity: 0.09; transform: rotate(-3deg) scaleX(0.95); }
  50%  { opacity: 0.18; transform: rotate(3deg) scaleX(1.1); }
  100% { opacity: 0.11; transform: rotate(0deg) scaleX(1); }
}

@keyframes sweepRightInner {
  0%   { transform: rotate(-7deg); opacity: 0.14; }
  50%  { transform: rotate(-16deg); opacity: 0.18; }
  100% { transform: rotate(-9deg); opacity: 0.13; }
}

@keyframes sweepRightOuter {
  0%   { transform: rotate(-18deg); opacity: 0.11; }
  50%  { transform: rotate(-30deg); opacity: 0.16; }
  100% { transform: rotate(-22deg); opacity: 0.12; }
}

/* ─── Technical Event Production Floating Badges FX ────────────── */
.production-fx-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2;
}

.prod-badge {
  position: absolute;
  bottom: -60px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(18, 18, 22, 0.88);
  border: 1px solid rgba(255, 173, 59, 0.35);
  color: #fff;
  font-family: var(--font-heading, sans-serif);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 107, 26, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  animation: floatProdBadge linear infinite;
  white-space: nowrap;
}

.prod-badge i {
  color: var(--orange, #ff6b1a);
  font-size: 0.85rem;
  filter: drop-shadow(0 0 6px rgba(255, 107, 26, 0.8));
}

.prod-badge span {
  color: rgba(255, 255, 255, 0.92);
}

.p-badge-1 { left: 6%;  animation-duration: 14s;   animation-delay: 0s; }
.p-badge-2 { left: 24%; animation-duration: 16.5s; animation-delay: 3.5s; }
.p-badge-3 { left: 42%; animation-duration: 15s;   animation-delay: 1.2s; }
.p-badge-4 { left: 60%; animation-duration: 17s;   animation-delay: 5s; }
.p-badge-5 { left: 78%; animation-duration: 14.5s; animation-delay: 2.2s; }
.p-badge-6 { left: 14%; animation-duration: 18s;   animation-delay: 8s; }
.p-badge-7 { left: 86%; animation-duration: 16s;   animation-delay: 6.5s; }
.p-badge-8 { left: 50%; animation-duration: 19s;   animation-delay: 10s; }

@keyframes floatProdBadge {
  0% {
    transform: translateY(0) scale(0.92);
    opacity: 0;
  }
  12% {
    opacity: 0.88;
    transform: translateY(-10vh) scale(1);
  }
  80% {
    opacity: 0.75;
  }
  100% {
    transform: translateY(-98vh) scale(0.96);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .p-badge-4,
  .p-badge-6,
  .p-badge-7,
  .p-badge-8 {
    display: none;
  }
  .prod-badge {
    font-size: 0.68rem;
    padding: 5px 11px;
  }
  .stage-beam {
    width: 140px;
    filter: blur(16px);
    opacity: 0.1;
  }
}

/* ─── Stacking Context & Background Layering ────────────────────── */
html {
  background-color: var(--bg-body);
}

body {
  position: relative;
}

/* Global Ambient Particles strictly on the background layer */
.global-ambient-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* All sections, containers, cards, images, badges, and text sit above particles */
header,
main,
footer,
section,
nav,
.hero,
.main-header,
.top-bar,
.container,
.container-fluid,
.card,
.service-card,
.project-card,
.client-logo-card,
.stats-card,
.process-step-card,
.why-card,
.expertise-tab-btn,
.expertise-display-card,
.quote-card,
.about-img-wrap,
.about-split,
.experience-badge,
.section-header,
.hero-content,
.vinyl-stage-unit,
.player-bar-bottom {
  position: relative;
  z-index: 2;
}

.main-header {
  z-index: 1000 !important;
}

.top-bar {
  z-index: 1001 !important;
}

.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1050 !important;
}

.work-lightbox,
.lightbox-modal,
.modal-overlay {
  z-index: 999999 !important;
}

.global-ambient-particle {
  position: absolute;
  bottom: -60px;
  color: var(--amber);
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255, 107, 26, 0.5));
  will-change: transform, opacity;
  animation: floatGlobalParticle linear infinite;
  user-select: none;
  pointer-events: none;
}

.global-ambient-particle.icon-particle {
  color: var(--orange);
  filter: drop-shadow(0 0 12px rgba(255, 184, 0, 0.7));
}

.global-ambient-particle.glow-gold {
  color: var(--gold);
}

.global-ambient-particle.glow-orange {
  color: var(--orange);
}

@keyframes floatGlobalParticle {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.85);
    opacity: 0;
  }
  12% {
    opacity: var(--max-op, 0.65);
    transform: translateY(-12vh) translateX(var(--drift-x, 15px)) rotate(10deg) scale(1);
  }
  50% {
    opacity: var(--max-op, 0.55);
    transform: translateY(-50vh) translateX(calc(var(--drift-x, 15px) * -1)) rotate(-15deg) scale(1.05);
  }
  85% {
    opacity: var(--max-op, 0.4);
    transform: translateY(-85vh) translateX(var(--drift-x, 15px)) rotate(20deg) scale(0.95);
  }
  100% {
    transform: translateY(-110vh) translateX(0) rotate(40deg) scale(0.8);
    opacity: 0;
  }
}

/* ─── Vinyl Turntable Unit ────────────────────────────────────── */
.vinyl-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  z-index: 5;
}

.vinyl {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(255, 107, 26, 0.4);
  box-shadow:
    0 0 40px rgba(255, 107, 26, 0.25),
    0 0 90px rgba(255, 107, 26, 0.1),
    inset 0 0 40px rgba(0, 0, 0, 0.8);
  animation: vinylScratch 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  background: #0D0D0D;
}

@media (min-width: 768px) {
  .vinyl {
    width: 290px;
    height: 290px;
  }
}

@keyframes vinylScratch {
  0%   { transform: rotate(-50deg); filter: brightness(1); }
  45%  { transform: rotate(50deg);  filter: brightness(1); }
  47%  { transform: rotate(60deg) skewX(3deg); filter: brightness(1.5) hue-rotate(15deg); }
  49%  { transform: rotate(40deg) skewX(-2deg); filter: brightness(0.8); }
  51%  { transform: rotate(55deg); filter: brightness(1.3); }
  53%  { transform: rotate(50deg); filter: brightness(1); }
  100% { transform: rotate(-50deg); filter: brightness(1); }
}

.vinyl-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

/* Grooves overlay */
.vinyl::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: repeating-radial-gradient(circle at center,
    transparent 0px,
    transparent 6px,
    rgba(0, 0, 0, 0.25) 6px,
    rgba(0, 0, 0, 0.25) 8px
  );
  z-index: 1;
  pointer-events: none;
}

/* Vinyl vignette */
.vinyl::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    transparent 35%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Center Label */
.vinyl-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C1C1C 0%, #0A0A0A 100%);
  border: 2px solid var(--orange);
  box-shadow: 0 0 18px rgba(255, 107, 26, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-align: center;
  line-height: 1.15;
  animation: vinylScratchCounter 4.2s cubic-bezier(0.45, 0, 0.55, 1) infinite !important;
}

@keyframes vinylScratchCounter {
  0%   { transform: translate(-50%, -50%) rotate(50deg); }
  45%  { transform: translate(-50%, -50%) rotate(-50deg); }
  47%  { transform: translate(-50%, -50%) rotate(-60deg) skewX(-3deg); }
  49%  { transform: translate(-50%, -50%) rotate(-40deg) skewX(2deg); }
  51%  { transform: translate(-50%, -50%) rotate(-55deg); }
  53%  { transform: translate(-50%, -50%) rotate(-50deg); }
  100% { transform: translate(-50%, -50%) rotate(50deg); }
}

.vinyl-label-tag {
  font-size: 0.44rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.vinyl-label-title {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.vinyl-hole {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0A0A0A;
  z-index: 4;
}

.vinyl-arm {
  position: absolute;
  top: 10px;
  right: 6px;
  width: 4px;
  height: 110px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.15));
  border-radius: 2px;
  transform-origin: top center;
  transform: rotate(24deg);
  animation: armSway 8s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(255, 107, 26, 0.35);
  z-index: 6;
}

@keyframes armSway {
  0%, 100% { transform: rotate(20deg); }
  50%      { transform: rotate(27deg); }
}

/* ─── Hero Content & Badges ───────────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 26, 0.16);
  border: 1px solid rgba(255, 107, 26, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255, 107, 26, 0.2);
}

.hero-badge i {
  color: var(--amber);
}

/* Audio EQ Equalizer in Badge */
.audio-visualizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
  padding: 0 4px;
}

.audio-bar {
  width: 3px;
  background: var(--orange);
  border-radius: 2px;
  animation: eqBounce 1.2s ease-in-out infinite alternate;
}

.audio-bar:nth-child(1) { height: 40%; animation-delay: 0.1s; }
.audio-bar:nth-child(2) { height: 90%; animation-delay: 0.3s; }
.audio-bar:nth-child(3) { height: 60%; animation-delay: 0.2s; }
.audio-bar:nth-child(4) { height: 100%; animation-delay: 0.4s; }
.audio-bar:nth-child(5) { height: 50%; animation-delay: 0.15s; }

@keyframes eqBounce {
  0%   { height: 20%; }
  100% { height: 100%; }
}

/* Multi-Discipline Live Production Indicator in Badge */
.production-visualizer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.prod-live-pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.prod-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 10px #25D366;
  animation: liveDotPulse 1.8s ease-in-out infinite;
}

@keyframes liveDotPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.9); }
  50%      { opacity: 1;   transform: scale(1.25); }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  color: var(--orange);
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin: 0 auto 34px;
  line-height: 1.6;
}

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

/* ─── Buttons & Interactive Controls ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dim) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 26, 0.55);
  color: #fff;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: var(--border-glow);
  color: #fff;
  transform: translateY(-2px);
}

/* Shimmer Button Effect */
.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent 20%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 80%
  );
  transform: rotate(30deg) translateX(-100%);
  animation: shimmerFlow 4s infinite;
}

@keyframes shimmerFlow {
  0%   { transform: rotate(30deg) translateX(-100%); }
  40%, 100% { transform: rotate(30deg) translateX(100%); }
}

/* Video Trigger Button */
.btn-play-showreel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-play-showreel:hover {
  background: rgba(255, 107, 26, 0.15);
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.play-pulse-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 0 15px rgba(255, 107, 26, 0.6);
  position: relative;
}

.play-pulse-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: pulseRing 1.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ─── Floating Actions (WhatsApp & Back to Top) ─────────────────── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  border: none;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-4px);
}

.float-wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.float-call {
  background: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 107, 26, 0.45);
}

.float-top {
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.float-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ─── Footer Section ───────────────────────────────────────────── */
.main-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

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

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255, 107, 26, 0.4);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.footer-links a i {
  color: var(--orange);
  font-size: 0.75rem;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  transform: translateX(2px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: var(--orange);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ─── Breadcrumb & Inner Hero Banner ──────────────────────────── */
.inner-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, #070707 0%, #0F0F0F 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.inner-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-size: cover;
  background-position: center;
}

.inner-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 26, 0.15) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb-separator {
  color: var(--orange);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 600;
}
