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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

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

/* ========== CUSTOM FONT ========== */
@font-face {
  font-family: 'electricKicks';
  src: url('../assets/fonts/electricKicks.woff2') format('woff2');
  font-display: swap;
}

.electricKicks {
  font-family: 'electricKicks', 'Montserrat', sans-serif !important;
  letter-spacing: 3px;
}

.playfair {
  font-family: 'Playfair Display', serif;
}

/* ========== CSS VARIABLES ========== */
:root {
  --primary: #0a0a12;
  --secondary: #4020b0;
  --accent: #0020b0;
  --accent-glow: #6040e0;
  --accent-light: #8060ff;
  --dark-1: #100030;
  --dark-2: #08001a;
  --dark-3: #202040;
  --gray: #808080;
  --gray-light: #a0a0a0;
  --white: #ffffff;
  --max-width: 1400px;
  --nav-height: 80px;
  --section-padding: 120px 60px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ========== UTILITIES ========== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ========== BUTTONS ========== */
.btn-cta {
  display: inline-block;
  background: linear-gradient(135deg, #0020b0, #6040e0);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  padding: 16px 52px;
  border: none;
  cursor: pointer;
  letter-spacing: 3px;
  transition: var(--transition);
  text-align: center;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(0, 32, 176, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(64, 32, 176, 0.5);
}

.btn-outline {
  display: inline-block;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  padding: 14px 48px;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  letter-spacing: 3px;
  transition: var(--transition);
  text-align: center;
  border-radius: 100px;
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  box-shadow: 0 0 20px rgba(64, 32, 176, 0.3);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: transparent;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0 30px;
}

.navbar.scrolled {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.navbar-menu a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-glow);
  transition: width 0.3s;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: var(--white);
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 100%;
}

.navbar-menu .nav-cta {
  background: linear-gradient(135deg, #0020b0, #6040e0);
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.navbar-menu .nav-cta::after { display: none; }

.navbar-menu .nav-cta:hover {
  box-shadow: 0 0 20px rgba(64, 32, 176, 0.5);
  transform: translateY(-1px);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== PAGE HEADER (for inner pages) ========== */
.page-header {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #08001a 0%, #100030 50%, #08001a 100%);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 2;
  padding: 140px 40px 80px;
}

.page-header-content h1 {
  font-family: 'electricKicks', 'Montserrat', sans-serif;
  font-size: clamp(40px, 7vw, 80px);
  letter-spacing: 4px;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.page-header-content p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== HERO (HOME) ========== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 60px 100px;
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
}

.hero-text {
  flex: 1;
  max-width: 650px;
}

.hero-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-glow);
  border: 1px solid rgba(96, 64, 224, 0.4);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 30px;
}

.hero-headline {
  font-size: clamp(44px, 7vw, 85px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 15px;
  text-transform: lowercase;
}

.hero-headline-indent {
  padding-left: 60px;
}

.hero-sub-headline {
  font-family: 'electricKicks', 'Montserrat', sans-serif;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 400;
  letter-spacing: 3px;
  margin-bottom: 30px;
  color: var(--accent-glow);
  text-shadow: 0 0 30px rgba(64, 32, 176, 0.4);
}

.hero-paragraph {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

.hero-paragraph-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.6);
}

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

.hero-image {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
}

/* ========== SECTION COMMON ========== */
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-glow);
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--accent-glow);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  text-transform: lowercase;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.7);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-subtitle-alt {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  text-transform: lowercase;
  text-align: center;
  color: var(--gray);
  margin-bottom: 25px;
}

.glow-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  box-shadow: 0 0 12px 2px rgba(64, 32, 176, 0.5);
  margin: 0 auto 50px;
}

/* ========== HERO: SCROLL INDICATOR ========== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.scroll-indicator:hover { opacity: 1; }

.scroll-indicator-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--accent-glow));
  position: relative;
  overflow: hidden;
}

.scroll-indicator-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--white));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== HOME: SERVICES PREVIEW ========== */
.services-preview {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.services-preview-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-preview-grid {
  max-width: var(--max-width);
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.services-preview-grid .service-preview-card {
  flex: 0 0 calc(33.333% - 17px);
}

.service-preview-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transform: skew(-6deg);
  transition: var(--transition);
  display: block;
}

.service-preview-card:hover {
  transform: skew(-6deg) translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.service-preview-card img {
  position: absolute;
  top: 0;
  left: -15%;
  width: 130%;
  height: 100%;
  object-fit: cover;
  transform: skew(6deg);
  transition: transform 0.6s ease;
}

.service-preview-card:hover img {
  transform: skew(6deg) scale(1.05);
}

.service-preview-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 60%);
  z-index: 1;
}

.service-preview-card .card-label {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  transform: skew(6deg);
}

.service-preview-card .card-label h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.service-preview-card .card-label span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gray-light);
}

.services-preview-cta {
  text-align: center;
}

/* ========== HOME: STATS BAR ========== */
.stats-bar {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 100%);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-family: 'electricKicks', 'Montserrat', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gray);
}

/* ========== HOME: TESTIMONIAL HIGHLIGHT ========== */
.testimonial-highlight {
  padding: var(--section-padding);
  background-color: var(--dark-2);
}

.testimonial-highlight-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-highlight-inner blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.testimonial-highlight-inner cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-glow);
  font-style: normal;
}

.testimonial-stars {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-stars img {
  height: 20px;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}

.testimonial-stars svg {
  filter: drop-shadow(0 0 4px rgba(255, 205, 95, 0.4));
}

/* ========== HOME: CLIENTS MARQUEE ========== */
.clients-section {
  padding: 80px 60px;
  background-color: var(--primary);
  overflow: hidden;
}

.clients-section .section-subtitle { margin-bottom: 50px; }

.clients-marquee {
  position: relative;
  overflow: hidden;
  max-width: var(--max-width);
  margin: 0 auto;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.clients-track img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.7) grayscale(0.3);
  transition: filter 0.3s;
}

.clients-track img:hover {
  filter: brightness(1) grayscale(0);
}

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

/* ========== HOME: CTA BANNER ========== */
.cta-banner {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #08001a 0%, #100030 50%, #08001a 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(64,32,176,0.08) 0%, transparent 50%);
  animation: pulse-glow 8s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

.cta-banner h2 {
  font-family: 'electricKicks', 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 56px);
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  text-transform: lowercase;
}

.cta-banner p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  position: relative;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-banner .btn-cta {
  position: relative;
}

/* ========== HOME: WHO WE ARE — Split Layout ========== */
.who-we-are {
  padding: var(--section-padding);
  background-color: var(--dark-2);
  overflow: hidden;
}

.who-we-are-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.who-we-are-image {
  flex: 1;
  max-width: 550px;
  position: relative;
}

.who-we-are-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(96, 64, 224, 0.25);
  border-radius: 8px;
  z-index: 0;
  pointer-events: none;
}

.who-we-are-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
}

.who-we-are-text {
  flex: 1;
}

.who-we-are-text .section-label {
  text-align: left;
}

.who-we-are-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 25px;
  line-height: 1.15;
}

.who-we-are-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.who-we-are-text .btn-outline {
  margin-top: 20px;
}

/* ========== HOME: EVENT CARDS — 3 Cinematic ========== */
.event-cards-section {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.event-cards-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
}

.event-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.event-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.event-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.15) 100%);
  transition: background 0.6s ease;
}

.event-card:hover .event-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.25) 100%);
}

.event-card-content {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
}

.event-card-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.event-card-content p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  max-width: 320px;
}

.btn-sm {
  padding: 10px 32px;
  font-size: 12px;
}

/* ========== SERVICES PAGE ========== */
.services-grid-section {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.services-full-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.services-full-grid .service-full-card {
  flex: 0 0 calc(33.333% - 20px);
}

.service-full-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-full-card:hover {
  border-color: rgba(96, 64, 224, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-full-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-full-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  z-index: 2;
}

.service-full-card .card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.service-full-card .card-content span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gray-light);
}

.service-full-card .card-content p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-top: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.service-full-card:hover .card-content p {
  opacity: 1;
  transform: translateY(0);
}

/* ========== SERVICES: PRODUCTIONS ========== */
.productions-section {
  padding: var(--section-padding);
  background-color: var(--dark-2);
}

.productions-header {
  text-align: center;
  margin-bottom: 70px;
}

.productions-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.production-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: var(--transition);
}

.production-card:hover {
  border-color: rgba(96, 64, 224, 0.3);
}

.production-card-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.6s ease;
  opacity: 1;
}

.production-card:hover .production-card-bg {
  opacity: 0.25;
  transform: scale(1.05);
}

.production-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 35px 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.production-card:hover .production-card-content {
  opacity: 1;
  transform: translateY(0);
}

.production-card-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.production-card-content p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
}

.glow-divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-glow));
  box-shadow: 0 0 12px 2px rgba(64, 32, 176, 0.5);
  margin-bottom: 15px;
}

/* ========== SERVICES: STAGE SHOWS ========== */
.stage-shows-section {
  padding: var(--section-padding);
  background-color: var(--dark-1);
}

.stage-shows-inner {
  max-width: var(--max-width);
  margin: 0 auto 70px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.stage-shows-text { flex: 1; }

.stage-shows-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.stage-shows-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
}

.stage-shows-image {
  flex: 0 0 380px;
}

.stage-shows-image img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  clip-path: polygon(12% 0%, 100% 0%, 88% 100%, 0% 100%);
}

.stage-shows-events {
  max-width: var(--max-width);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event-type-card {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  transition: var(--transition);
  display: block;
  color: inherit;
  text-decoration: none;
}

.event-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.event-type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.event-type-card span {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.stage-shows-cta {
  text-align: center;
}

/* ========== SERVICES: EVENT TYPES ========== */
.event-types-section {
  padding: var(--section-padding);
  background-color: var(--dark-2);
}

.event-types-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.event-type {
  display: flex;
  align-items: center;
  gap: 80px;
}

.event-type.reverse {
  flex-direction: row-reverse;
}

.event-type-image {
  flex: 1;
  max-width: 550px;
}

.event-type-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
}

.event-type-text { flex: 1; }

.event-type-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.event-type-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

/* ========== ABOUT PAGE ========== */
.about-story {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.about-story-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-story-image {
  flex: 1;
  max-width: 500px;
}

.about-story-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 8px;
}

.about-story-text {
  flex: 1;
}

.about-story-text .section-label { text-align: left; }

.about-story-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 25px;
  line-height: 1.15;
}

.about-story-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 18px;
}

.about-story-text .btn-cta {
  margin-top: 25px;
}

/* ========== ABOUT: STEPS ========== */
.steps-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, #08001a 0%, #100030 50%, #08001a 100%);
}

.steps-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.steps-heading {
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.steps-subheading {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 70px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.step-card:hover {
  border-color: rgba(96, 64, 224, 0.2);
  background: rgba(255,255,255,0.02);
}

.step-icon {
  margin: 0 auto 25px;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-glow);
}

/* ========== ABOUT: CREDENTIALS ========== */
.credentials-section {
  padding: var(--section-padding);
  background-color: var(--dark-2);
}

.credentials-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.credential-item {
  padding: 40px 25px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: var(--transition);
}

.credential-item:hover {
  border-color: rgba(96, 64, 224, 0.3);
  background: rgba(255,255,255,0.02);
}

.credential-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.credential-item p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

/* ========== GALLERY PAGE ========== */
.gallery-section {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  color: var(--white);
  border-color: var(--accent-glow);
  background: rgba(96, 64, 224, 0.15);
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

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

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

.gallery-item.tall img {
  height: 720px;
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid rgba(255,255,255,0.5);
  padding: 10px 25px;
  border-radius: 100px;
}

/* Gallery lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: var(--accent-glow);
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: var(--section-padding);
  background-color: var(--dark-2);
}

.testimonials-section .section-subtitle { margin-bottom: 60px; }

.testimonials-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 30px;
  border-radius: 12px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(96, 64, 224, 0.2);
  transform: translateY(-5px);
}

.testimonial-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  margin-bottom: 25px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-glow);
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent-glow);
}

.contact-detail-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.contact-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: var(--transition);
}

.contact-social a:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  background: rgba(96, 64, 224, 0.1);
}

.contact-social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-form {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 45px 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background-color: rgba(0,0,0,0.4);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  border-radius: 8px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-glow);
  box-shadow: 0 0 12px rgba(64, 32, 176, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.contact-form .btn-cta {
  width: 100%;
  margin-top: 10px;
}

/* ========== FAQ ========== */
.faq-section {
  padding: var(--section-padding);
  background-color: var(--dark-1);
}

.faq-section .section-subtitle { margin-bottom: 60px; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item summary:hover {
  color: var(--accent-glow);
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
  color: var(--accent-glow);
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 22px;
}

/* ========== FOOTER ========== */
.footer {
  background-color: #000;
  padding: 80px 60px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.footer-brand p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-top: 20px;
  max-width: 300px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col a {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--accent-glow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer-social a:hover { color: var(--accent-glow); }

.footer-copyright {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ========== SERVICE MENU PAGES (Category Listings) ========== */
.svc-menu-section {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.svc-menu-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.svc-menu-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
}

.svc-menu-toggle {
  display: flex;
  gap: 8px;
}

.svc-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--gray);
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.svc-toggle-btn.active,
.svc-toggle-btn:hover {
  border-color: var(--accent-glow);
  color: var(--accent-glow);
  background: rgba(96, 64, 224, 0.1);
}

/* Two-column grid */
.svc-menu-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* One-column grid */
.svc-menu-grid.one-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  max-width: 700px;
  margin: 0 auto;
}

/* Service menu card */
.svc-menu-card {
  display: flex;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.svc-menu-card:hover {
  border-color: rgba(96, 64, 224, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.svc-menu-card-img {
  flex: 0 0 220px;
  height: 220px;
  overflow: hidden;
}

.svc-menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

.svc-menu-card-info {
  flex: 1;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-menu-card-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.svc-menu-card-info p {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.svc-menu-card-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-glow);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.svc-menu-card:hover .svc-menu-card-link {
  gap: 12px;
}

/* One-column card adjustments */
.svc-menu-grid.one-col .svc-menu-card-img {
  flex: 0 0 180px;
  height: 180px;
}

/* Category navigation arrows */
.cat-nav-section {
  padding: 60px;
  background-color: var(--dark-2);
}

.cat-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-nav-arrow {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  padding: 20px 25px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: var(--transition);
}

.cat-nav-arrow:hover {
  border-color: rgba(96, 64, 224, 0.3);
  background: rgba(255,255,255,0.02);
}

.cat-nav-arrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}

.cat-nav-arrow strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

.cat-nav-arrow svg {
  flex-shrink: 0;
  color: var(--accent-glow);
}

.cat-nav-next { text-align: right; }

/* ========== SERVICE DETAIL PAGES ========== */
.svc-detail-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--primary) 50%, var(--dark-1) 100%);
}

.svc-detail-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.svc-detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback: hide broken hero image so gradient bg shows through */
.svc-detail-hero.no-image .svc-detail-hero-bg {
  display: none;
}

.svc-detail-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.4) 100%);
}

.svc-detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 140px 60px 60px;
  width: 100%;
}

.svc-detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-glow);
  margin-bottom: 20px;
  transition: gap 0.3s;
}

.svc-detail-breadcrumb:hover {
  gap: 12px;
}

.svc-detail-hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Service detail content - split layout */
.svc-detail-content {
  padding: var(--section-padding);
  background-color: var(--primary);
}

.svc-detail-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.svc-detail-body {
  flex: 1;
}

.svc-detail-body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.svc-detail-desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
}

.svc-detail-image {
  flex: 0 0 400px;
  max-width: 100%;
}

.svc-detail-image img {
  width: 100%;
  height: 480px;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

/* When content section has no image, hide the image column and let body span full width */
.svc-detail-image.no-image {
  display: none;
}

.svc-detail-inner.no-image-layout .svc-detail-body {
  max-width: 800px;
}

.svc-detail-inner.no-image-layout {
  justify-content: center;
}

/* Related services */
.svc-related-section {
  padding: 80px 60px;
  background-color: var(--dark-2);
}

.svc-related-section h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-align: center;
}

.svc-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.svc-related-card {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  transition: var(--transition);
}

.svc-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.svc-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

.svc-related-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 15px 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
}

/* Service detail navigation */
.svc-detail-nav-section {
  padding: 40px 60px;
  background-color: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.svc-detail-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.svc-nav-arrow {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 15px 20px;
  border-radius: 8px;
  transition: var(--transition);
}

.svc-nav-arrow:hover {
  background: rgba(255,255,255,0.03);
}

.svc-nav-arrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  display: block;
  margin-bottom: 3px;
}

.svc-nav-arrow strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.svc-nav-arrow svg {
  flex-shrink: 0;
  color: var(--accent-glow);
}

.svc-nav-next { text-align: right; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 40px;
  }

  .services-preview-grid .service-preview-card,
  .services-full-grid .service-full-card {
    flex: 0 0 calc(50% - 13px);
  }

  .who-we-are-inner {
    gap: 50px;
  }

  .who-we-are-image { max-width: 400px; }
  .who-we-are-image img { height: 420px; }

  .event-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .event-type,
  .event-type.reverse {
    flex-direction: column;
  }

  .event-type-image { max-width: 100%; }
  .event-type-text { text-align: center; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 20px;
  }

  /* --- Typography reductions --- */
  .section-title {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 14px;
  }

  .section-desc {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-sub-headline {
    margin-bottom: 20px;
  }

  .hero-paragraph {
    font-size: 15px;
  }

  /* --- Navigation --- */
  .navbar-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    padding: 120px 40px 40px;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
  }

  .navbar-menu.active { display: flex; }
  .navbar-toggle { display: flex; }
  .navbar { background-color: rgba(0,0,0,0.9); }

  /* --- Hero --- */
  .hero-content {
    flex-direction: column;
    padding: 120px 20px 60px;
    text-align: center;
    gap: 30px;
  }

  .hero-image {
    flex: none;
    max-width: 260px;
  }

  .hero-headline-indent { padding-left: 20px; }
  .hero-paragraph { max-width: 100%; }
  .hero-buttons { justify-content: center; }

  .scroll-indicator { display: none; }

  /* --- Who We Are --- */
  .who-we-are-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .who-we-are-image { max-width: 100%; }
  .who-we-are-image img { height: 300px; }
  .who-we-are-image::after { display: none; }
  .who-we-are-text .section-label { text-align: center; }

  /* --- Event Cards --- */
  .event-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .event-card { min-height: 360px; }

  .event-card:last-child {
    max-width: 100%;
  }

  /* --- Service Menu Grid --- */
  .svc-menu-grid.two-col {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .svc-menu-card {
    flex-direction: column;
  }

  .svc-menu-card-img {
    flex: none;
    height: 200px;
    width: 100%;
  }

  .svc-menu-grid.one-col .svc-menu-card-img {
    flex: none;
    height: 180px;
    width: 100%;
  }

  .svc-menu-card-info {
    padding: 20px;
  }

  .svc-menu-card-info h3 {
    font-size: 16px;
  }

  .svc-menu-toggle { display: none; }
  .svc-menu-controls { justify-content: center; }

  /* --- Category Nav --- */
  .cat-nav-section { padding: 30px 20px; }
  .cat-nav { flex-direction: column; gap: 12px; }
  .cat-nav-arrow { width: 100%; justify-content: center; }

  /* --- Service Detail Page --- */
  .svc-detail-hero { min-height: 40vh; }
  .svc-detail-hero-content { padding: 100px 20px 30px; }

  .svc-detail-hero-content h1 {
    font-size: clamp(26px, 7vw, 40px);
  }

  .svc-detail-inner {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }

  .svc-detail-image {
    flex: none;
    width: 100%;
  }

  .svc-detail-image img {
    height: auto;
    max-height: 300px;
    width: 100%;
  }

  .svc-detail-desc {
    font-size: 16px;
    margin-bottom: 25px;
  }

  /* --- Related Services --- */
  .svc-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .svc-related-card { height: 140px; }
  .svc-related-section { padding: 50px 20px; }

  .svc-related-section h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }

  /* --- Service Detail Nav --- */
  .svc-detail-nav-section { padding: 25px 20px; }
  .svc-detail-nav { flex-direction: column; gap: 10px; }
  .svc-nav-arrow { width: 100%; justify-content: center; }

  /* --- Service Preview Grid --- */
  .services-preview-grid .service-preview-card,
  .services-full-grid .service-full-card {
    flex: 0 0 100%;
  }

  .services-preview-grid,
  .services-full-grid {
    max-width: 100%;
    margin: 0 auto 40px;
  }

  .service-preview-card {
    transform: skew(-4deg);
  }
  .service-preview-card img {
    transform: skew(4deg);
  }
  .service-preview-card:hover {
    transform: skew(-4deg) translateY(-5px);
  }
  .service-preview-card:hover img {
    transform: skew(4deg) scale(1.05);
  }
  .service-preview-card .card-label {
    transform: skew(4deg);
  }

  /* --- Productions --- */
  .productions-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .production-card-content { opacity: 1; transform: translateY(0); }
  .production-card-bg { opacity: 0.3; }

  /* --- Stage Shows --- */
  .stage-shows-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .stage-shows-image {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .stage-shows-events {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto 30px;
  }

  /* --- About --- */
  .about-story-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .about-story-text .section-label { text-align: center; }
  .about-story-image { max-width: 100%; }
  .about-story-image img { height: 320px; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  /* --- Gallery Grid --- */
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
  }

  .gallery-item img,
  .gallery-item.tall img {
    height: auto;
    aspect-ratio: 4/3;
    width: 100%;
  }

  .gallery-item:hover {
    transform: none;
  }

  /* --- Forms --- */
  .form-row { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  /* --- Page Header --- */
  .page-header { min-height: 35vh; }

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

  /* --- CTA Banner --- */
  .cta-banner h2 {
    font-size: clamp(22px, 5vw, 32px);
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 50px 16px;
  }

  .section-title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .gallery-filters {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 11px;
  }

  .gallery-item img,
  .gallery-item.tall img {
    aspect-ratio: 3/2;
  }

  .svc-menu-card-img {
    height: 180px;
  }

  .svc-related-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .svc-related-card { height: 160px; }

  .event-card { min-height: 320px; }

  .hero-content {
    padding: 100px 16px 50px;
  }

  .btn-cta {
    padding: 14px 36px;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .btn-outline {
    padding: 12px 32px;
    font-size: 13px;
    letter-spacing: 2px;
  }

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

/* ============================================================
   Replication overrides promoted from homepage-replication.css.
   Navbar + CTA rules apply globally. Hero rules only affect
   .hero-section, which lives only on index.html.
   ============================================================ */

/* ---------- Navbar: centered logo with two menu groups in a 3-col grid -- */
#navMenu {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.navbar-menu-left,
.navbar-menu-right {
  gap: 44px;
}

.navbar-menu-left {
  justify-content: flex-end;
}

.navbar-menu-right {
  justify-content: flex-start;
}

.navbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo img {
  height: 90px;
}

.navbar-menu a {
  font-size: 15px;
  letter-spacing: 2.5px;
}

@media (max-width: 900px) {
  /* #navMenu becomes the full-screen mobile overlay */
  #navMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.97);
    grid-template-columns: none;
    flex-direction: column;
    padding: 120px 40px 40px;
    gap: 25px;
    align-items: center;
    justify-content: flex-start;
  }
  #navMenu.active {
    display: flex;
  }
  /* Each ul drops its desktop mobile-overlay behavior */
  .navbar-menu {
    display: flex !important;
    position: static !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    padding: 0 !important;
    flex-direction: column;
  }
  /* Hide the centered logo inside the mobile drawer */
  #navMenu .navbar-logo {
    display: none;
  }
}

/* ---------- CTA color match to electricirque.com (#f9543f) ---------- */
.btn-cta {
  background: #f9543f;
  box-shadow: 0 0 20px rgba(249, 84, 63, 0.35);
}

.btn-cta:hover {
  box-shadow: 0 8px 30px rgba(249, 84, 63, 0.55);
}

/* ---------- Hero: lighter overlay so video reads through ---------- */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.25) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

/* ---------- Hero: text centered, image floated to the right ---------- */
.hero-content {
  display: block;
  position: relative;
  text-align: center;
  padding: 140px 60px 100px;
}

.hero-text {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline-indent {
  padding-left: 0;
}

.hero-paragraph {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  justify-content: center;
}

.hero-image {
  position: absolute;
  right: 30px;
  bottom: 80px;
  width: 440px;
  max-width: 34vw;
  flex: 0 0 auto;
  pointer-events: none;
  z-index: 1;
  animation: hero-image-slide-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-image img {
  max-height: 560px;
  width: 100%;
  height: auto;
}

@keyframes hero-image-slide-in {
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image { animation: none; }
}

@media (max-width: 1200px) {
  .hero-content { padding: 140px 40px 100px; }
  .hero-image { width: 340px; max-width: 32vw; }
}

@media (max-width: 900px) {
  .hero-image { display: none; }
  .hero-content { padding: 120px 24px 80px; }
}
