/* ==========================================================================
   DIVY BEAT MUSIC STUDIO — LUXURY GOLD DARK STUDIO DESIGN SYSTEM
   Brand Colors: Black Obsidian + Champagne Gold + Cream White
   Typography: Cinzel (Headings) + Playfair Display (Script) + Inter (Body)
   ========================================================================== */

:root {
  /* ── BRAND GOLD PALETTE (from logo) ── */
  --gold-light: #f5e6b8;
  --gold-mid: #d4af37;
  --gold-rich: #c9a227;
  --gold-dark: #a07c0a;
  --gold-sheen: #e8c96a;
  --gold-foil: linear-gradient(135deg, #f5e6b8 0%, #d4af37 40%, #c9a227 60%, #f5e6b8 100%);
  --gold-foil-hover: linear-gradient(135deg, #fff5d6 0%, #e8c96a 40%, #d4af37 60%, #fff5d6 100%);

  /* ── DARK STUDIO BACKGROUNDS ── */
  --bg-black: #080808;
  --bg-deep: #0d0d0d;
  --bg-dark: #111111;
  --bg-surface: #181818;
  --bg-card: #1c1c1c;
  --bg-card-hover: #222222;
  --bg-glass: rgba(20, 20, 20, 0.85);

  /* ── TEXT ── */
  --text-white: #ffffff;
  --text-cream: #f5e6b8;
  --text-muted: #999999;
  --text-dim: #555555;

  /* ── BORDERS & DIVIDERS ── */
  --border-gold: rgba(212, 175, 55, 0.35);
  --border-gold-bright: rgba(212, 175, 55, 0.7);
  --border-subtle: rgba(255, 255, 255, 0.06);

  /* ── GLOWS & SHADOWS ── */
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
  --glow-gold-strong: 0 0 50px rgba(212, 175, 55, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.8);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.9);

  /* ── WhatsApp GREEN ── */
  --wa-green: #25D366;
  --wa-dark: #128C7E;

  /* ── GEOMETRY ── */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* ── TRANSITIONS ── */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
  -webkit-text-size-adjust: 100%;
  color: #ccc;
  background: var(--bg-black);
}

body {
  font-size: 15px;
  line-height: 1.65;
  background: var(--bg-black);
  color: #ccc;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 85px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--text-white);
  line-height: 1.2;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: var(--trans-fast); }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; outline: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Utility Classes ── */
.text-gold { color: var(--gold-mid); }
.text-cream { color: var(--gold-light); }
.text-white { color: #fff; }
.text-wa { color: var(--wa-green); }

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

/* ==========================================================================
   GOLD HORIZONTAL RULE DIVIDER
   ========================================================================== */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-mid) 40%, var(--gold-mid) 60%, transparent 100%);
  opacity: 0.4;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 9px 0;
  font-size: 12.5px;
}

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

.top-bar-policy {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.top-bar-policy i { color: var(--gold-mid); }

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

.top-bar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #888;
  font-size: 12px;
  transition: var(--trans-fast);
}

.top-bar-link:hover { color: var(--gold-mid); }
.top-bar-link.wa-link:hover { color: var(--wa-green); }
.top-bar-link.ig-link:hover { color: #e4405f; }

/* ==========================================================================
   SITE HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(212, 175, 55, 0.25);
  border-bottom-color: rgba(212, 175, 55, 0.45);
}

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

/* Logo Block */
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.05);
}

/* Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link {
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8a8a;
  position: relative;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.nav-link:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.07);
}

.nav-link.active {
  color: var(--gold-mid);
  background: rgba(212, 175, 55, 0.12);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  box-shadow: 0 0 8px var(--gold-mid);
  transition: width 0.25s ease;
  border-radius: 2px;
}

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

.nav-link.active::after {
  width: 75%;
  background: linear-gradient(90deg, var(--gold-mid), var(--gold-light), var(--gold-mid));
}

/* Header CTAs */
.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-ig-header {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 16px;
  transition: var(--trans-fast);
}

.btn-ig-header:hover {
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
}

.btn-wa-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--trans-fast);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa-header:hover {
  background: var(--wa-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.mobile-menu-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: #ccc;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
}

/* ==========================================================================
   HERO SECTION — "THE STAGE"
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #1a1400 0%, var(--bg-black) 65%);
  padding: 80px 0 60px;
}

/* Gold particle dots SVG background */
.hero-bg-artwork {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

/* Animated golden sound wave SVG */
.hero-soundwave-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Hero Left Column ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 22px;
}

.hero-badge i { color: var(--gold-mid); animation: pulseDot 2s ease-in-out infinite; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.hero-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.hero-sub {
  font-size: 15px;
  color: #999;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

/* Trust chips row */
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  color: #999;
  transition: var(--trans-fast);
}

.hero-chip i { color: var(--gold-mid); }

.hero-chip.gold-chip {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
  color: var(--gold-light);
  font-weight: 600;
}

/* ── Hero Quick Book Form ── */
.hero-book-card {
  background: rgba(24, 20, 8, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), var(--glow-gold);
  backdrop-filter: blur(20px);
}

.hero-book-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-book-card-head i { color: var(--gold-mid); }

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-inp, .form-sel {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #ccc;
  font-size: 14px;
  transition: var(--trans-fast);
}

.form-inp:focus, .form-sel:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.15);
  color: #fff;
}

.form-sel option { background: #1a1a1a; }

.btn-wa-submit {
  background: var(--gold-foil);
  color: #111;
  font-size: 14px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transition: var(--trans-fast);
  letter-spacing: 0.5px;
}

.btn-wa-submit:hover {
  background: var(--gold-foil-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.book-guarantee {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-top: 4px;
}

/* ── Hero Right Column: Studio Visual ── */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Gold ring glow behind logo */
.hero-logo-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.hero-logo-ring::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  animation: ringPulse 4s ease-in-out 1s infinite;
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-logo-large {
  width: 280px;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.3));
  animation: floatLogo 6s ease-in-out infinite;
}

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

/* Equalizer bars — gold style */
.hero-eq-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 56px;
  margin-top: 24px;
}

.eq-bar {
  width: 6px;
  border-radius: var(--radius-full);
  background: var(--gold-foil);
  height: 20%;
  animation: eqAnim 1.4s ease-in-out infinite alternate;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.eq-bar:nth-child(1) { animation-delay: 0s; }
.eq-bar:nth-child(2) { animation-delay: 0.15s; }
.eq-bar:nth-child(3) { animation-delay: 0.3s; }
.eq-bar:nth-child(4) { animation-delay: 0.1s; }
.eq-bar:nth-child(5) { animation-delay: 0.45s; }
.eq-bar:nth-child(6) { animation-delay: 0.2s; }
.eq-bar:nth-child(7) { animation-delay: 0.5s; }
.eq-bar:nth-child(8) { animation-delay: 0.35s; }
.eq-bar:nth-child(9) { animation-delay: 0.05s; }
.eq-bar:nth-child(10) { animation-delay: 0.4s; }
.eq-bar:nth-child(11) { animation-delay: 0.25s; }
.eq-bar:nth-child(12) { animation-delay: 0.55s; }

@keyframes eqAnim {
  0% { height: 12%; }
  25% { height: 75%; }
  60% { height: 35%; }
  100% { height: 100%; }
}

/* ── Hero Stats Strip ── */
.hero-stats {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hero-stat {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--trans-fast);
}

.hero-stat:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--border-gold);
}

.hero-stat-num {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 4px;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ==========================================================================
   PAYMENT POLICY SECTION — "HALF PEHLE, HALF BAAD MEIN"
   ========================================================================== */
.payment-section {
  padding: 80px 0;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  opacity: 0.4;
}

.payment-box {
  background: rgba(20, 16, 5, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-xl), var(--glow-gold);
}

.payment-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.payment-heading {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}

.payment-hindi {
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.payment-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin-bottom: 28px;
}

.payment-stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-stage {
  padding: 20px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.payment-stage.advance {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.payment-stage.balance {
  background: rgba(245, 230, 184, 0.06);
  border-color: rgba(245, 230, 184, 0.2);
}

.stage-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.advance .stage-label { color: var(--gold-mid); }
.balance .stage-label { color: var(--gold-light); }

.stage-pct {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}

.stage-title {
  font-size: 14px;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 4px;
}

.stage-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.45;
}

/* Right: SVG Artwork Side */
.payment-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.payment-db-monogram {
  font-family: 'Cinzel', serif;
  font-size: 96px;
  font-weight: 900;
  background: var(--gold-foil);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  line-height: 1;
  user-select: none;
}

.btn-wa-inq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--wa-green);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-wa-inq:hover {
  background: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* ==========================================================================
   SECTION HEADER — COMMON
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES & PRICING (8 SERVICES)
   ========================================================================== */
.services-section {
  padding: 90px 0;
  background: var(--bg-black);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-mid), transparent);
  opacity: 0.25;
}

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

/* Service Card */
.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--trans-smooth);
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--glow-gold);
}

.service-card.featured {
  background: linear-gradient(160deg, #1c1400 0%, #111100 60%, #1a1200 100%);
  border-color: var(--gold-mid);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), var(--glow-gold-strong);
}

.service-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 60px rgba(212, 175, 55, 0.5);
}

.featured-crown {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-foil);
  color: #111;
  font-size: 11px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.service-tag {
  align-self: flex-start;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.service-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 22px;
  margin-bottom: 14px;
  transition: var(--trans-fast);
}

.service-card.featured .service-icon-ring {
  background: var(--gold-foil);
  color: #111;
  border: none;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.service-card:hover .service-icon-ring {
  background: rgba(212, 175, 55, 0.15);
}

.service-name {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.service-subtitle-text {
  font-size: 12px;
  color: #666;
  margin-bottom: 18px;
}

/* Price Block */
.service-price-block {
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 8px;
}

.price-symbol {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-mid);
}

.price-amount {
  font-family: 'Cinzel', serif;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.price-unit {
  font-size: 12px;
  color: #666;
  margin-left: 3px;
}

.price-split {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.split-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.04);
  color: #888;
  border: 1px solid rgba(255,255,255,0.06);
}

.price-turnaround {
  margin-top: 8px;
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-turnaround i { color: var(--gold-mid); }

.service-description {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #999;
  line-height: 1.4;
}

.service-features li i { color: var(--gold-mid); margin-top: 2px; font-size: 11px; }

/* Service Card Action Buttons */
.service-actions {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.btn-book-service {
  background: var(--gold-foil);
  color: #111;
  border: none;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-book-service:hover {
  background: var(--gold-foil-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-wa-service {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-wa-service:hover {
  background: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-view-details {
  background: transparent;
  border: none;
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 0;
  transition: var(--trans-fast);
}

.btn-view-details:hover { color: var(--gold-mid); }

/* ==========================================================================
   QUOTE CALCULATOR SECTION
   ========================================================================== */
.calculator-section {
  padding: 90px 0;
  background: var(--bg-deep);
  position: relative;
}

.calc-grid {
  background: rgba(15, 12, 3, 0.9);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl), var(--glow-gold);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}

.calc-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-item-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.calc-item-label:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

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

.calc-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--gold-mid);
  cursor: pointer;
  flex-shrink: 0;
}

.calc-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
}

.calc-item-detail {
  font-size: 11px;
  color: #666;
}

.calc-item-price {
  font-family: 'Cinzel', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-mid);
  white-space: nowrap;
}

/* Hours input row */
.calc-hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}

.calc-hours-input {
  width: 64px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xs);
  padding: 7px;
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Calculator Summary */
.calc-summary {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-summary h3 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.calc-summary p {
  font-size: 12px;
  color: #666;
  margin-bottom: 24px;
}

.calc-total-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #888;
}

.calc-row.total-row {
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  font-family: 'Cinzel', serif;
  color: #fff;
}

.calc-row.total-row .calc-val {
  font-size: 30px;
  font-weight: 900;
  color: var(--gold-mid);
}

.calc-row.adv-row {
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  background: rgba(212, 175, 55, 0.08);
  border-left: 3px solid var(--gold-mid);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 12px;
}

.calc-row.bal-row {
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  background: rgba(245, 230, 184, 0.06);
  border-left: 3px solid var(--gold-light);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 12px;
}

.btn-calc-wa {
  background: var(--gold-foil);
  color: #111;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: var(--trans-fast);
}

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

/* ==========================================================================
   BEAT PLAYER SECTION
   ========================================================================== */
.player-section {
  padding: 90px 0;
  background: var(--bg-black);
  position: relative;
}

.player-console {
  background: linear-gradient(160deg, #0e0d00 0%, #0a0a0a 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xl), var(--glow-gold);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
}

.genre-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.genre-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #777;
  font-size: 12px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--trans-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.genre-pill:hover,
.genre-pill.active {
  background: var(--gold-foil);
  color: #111;
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.active-stage {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.active-track-name {
  font-family: 'Cinzel', serif;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.track-specs-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.track-spec-pill {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-mid);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-family: 'Cinzel', serif;
}

.track-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.track-tag {
  font-size: 11px;
  color: #666;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.track-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Player Controls */
.player-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  cursor: pointer;
  overflow: hidden;
  margin-bottom: 8px;
}

.player-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-foil);
  border-radius: var(--radius-full);
  transition: width 0.1s linear;
}

.player-timestamps {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.player-transport {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.transport-btns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-transport-prev,
.btn-transport-next {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-transport-prev:hover,
.btn-transport-next:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
  color: var(--gold-mid);
}

.btn-transport-play {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-foil);
  color: #111;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
  transition: var(--trans-fast);
}

.btn-transport-play:hover {
  background: var(--gold-foil-hover);
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.7);
}

.btn-license-beat {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: var(--wa-green);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-license-beat:hover {
  background: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

/* Tracklist */
.tracklist-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.tracklist-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 4px;
}

.tracklist-wrap::-webkit-scrollbar { width: 4px; }
.tracklist-wrap::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-full);
}

.track-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.track-row:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.25);
}

.track-row.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
}

.track-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-play-inline {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none;
  color: #ccc;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.track-row.active .btn-play-inline {
  background: var(--gold-mid);
  color: #111;
}

.track-row-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #ddd;
  display: block;
}

.track-row-genre {
  font-size: 11px;
  color: #666;
  display: block;
}

.track-row-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.track-duration {
  font-size: 12px;
  color: #666;
}

.btn-track-wa {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: var(--wa-green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-track-wa:hover {
  background: var(--wa-green);
  color: #fff;
}

/* ==========================================================================
   WORKFLOW SECTION
   ========================================================================== */
.workflow-section {
  padding: 90px 0;
  background: var(--bg-deep);
  position: relative;
}

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

.workflow-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: var(--trans-fast);
  position: relative;
}

.workflow-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.workflow-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-foil);
  color: #111;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.workflow-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.workflow-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.55;
}

/* ==========================================================================
   INSTAGRAM BANNER
   ========================================================================== */
.ig-banner-section {
  padding: 40px 0 90px;
  background: var(--bg-black);
}

.ig-banner-card {
  background: linear-gradient(135deg, rgba(20, 14, 3, 0.95), rgba(12, 12, 12, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.ig-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ig-logo-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 0 25px rgba(220, 39, 67, 0.4);
  flex-shrink: 0;
}

.ig-text h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}

.ig-text p {
  font-size: 14px;
  color: #777;
}

.btn-ig-follow {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(220, 39, 67, 0.35);
  transition: var(--trans-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-ig-follow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(220, 39, 67, 0.55);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
  padding: 90px 0;
  background: var(--bg-deep);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--trans-fast);
}

.faq-item.open {
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.3);
}

.faq-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 700;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.faq-question-text i { color: var(--gold-mid); flex-shrink: 0; }

.faq-toggle {
  font-size: 13px;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
  color: var(--gold-mid);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-content {
  padding: 0 22px 18px;
  font-size: 14px;
  color: #777;
  line-height: 1.65;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 90px 0;
  background: var(--bg-black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: flex-start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--glow-gold);
}

.contact-info-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 28px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-label { font-size: 11px; text-transform: uppercase; color: #555; letter-spacing: 0.5px; }
.contact-val { font-size: 15px; font-weight: 700; color: #ddd; }
.contact-val:hover { color: var(--gold-mid); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
}

.contact-form-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}

.contact-form-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 22px;
}

.form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: #888;
  font-family: 'Cinzel', serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.styled-inp, .styled-sel, .styled-ta {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #ccc;
  font-size: 14px;
  transition: var(--trans-fast);
  width: 100%;
}

.styled-inp:focus, .styled-sel:focus, .styled-ta:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.12);
  color: #fff;
}

.styled-sel option { background: #1c1c1c; }

.btn-contact-submit {
  background: var(--gold-foil);
  color: #111;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  transition: var(--trans-fast);
  letter-spacing: 0.5px;
}

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

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 60px 0 100px; /* 100px bottom for mobile bar */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo { margin-bottom: 16px; }

.footer-brand-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  transition: var(--trans-fast);
}

.footer-social-btn:hover {
  background: var(--gold-mid);
  color: #111;
  border-color: transparent;
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-mid);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-links a {
  font-size: 13.5px;
  color: #666;
  transition: var(--trans-fast);
}

.footer-links a:hover { color: var(--gold-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #777;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-credit {
  color: #777;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.footer-credit a {
  color: var(--gold-mid);
  text-decoration: none;
  font-weight: 600;
  transition: var(--trans-fast);
}

.footer-credit a:hover {
  color: var(--gold-light);
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* ==========================================================================
   MOBILE STICKY BOTTOM BAR
   ========================================================================== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 16px;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.8);
}

.mobile-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.btn-mbar-book {
  background: var(--gold-foil);
  color: #111;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 8px;
  font-size: 12.5px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-mbar-wa {
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 8px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.btn-mbar-call {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--gold-mid);
  border-radius: var(--radius-sm);
  padding: 11px 8px;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: none;
  justify-content: flex-end;
}

.mobile-drawer.active { display: flex; }

.drawer-panel {
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: #0d0d0d;
  border-left: 1px solid var(--border-gold);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.drawer-logo-text {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.drawer-logo-text span { color: var(--gold-mid); }

.btn-close-drawer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ccc;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-links-list {
  list-style: none;
  padding: 24px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  flex: 1;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: var(--trans-fast);
}

.drawer-link i { color: var(--gold-mid); width: 18px; }
.drawer-link:hover { color: var(--gold-mid); }
.drawer-link.active {
  color: var(--gold-mid);
  background: rgba(212, 175, 55, 0.1);
  padding-left: 12px;
  border-left: 3px solid var(--gold-mid);
  border-radius: 0 6px 6px 0;
}

.drawer-footer {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #999;
}

.drawer-contact-row a { color: #999; }
.drawer-contact-row a:hover { color: var(--gold-mid); }

/* ==========================================================================
   LIVE ASSISTANT WIDGET
   ========================================================================== */
.asst-wrapper {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 998;
}

.asst-greeting {
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 250px;
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 12px;
  color: #ccc;
  line-height: 1.4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.asst-close-greeting {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  font-size: 14px;
}

.asst-trigger {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gold-foil);
  color: #111;
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.45);
  position: relative;
  transition: var(--trans-fast);
}

.asst-trigger:hover { transform: scale(1.08); box-shadow: 0 8px 35px rgba(212, 175, 55, 0.6); }

.asst-trigger .close-icon { display: none; }
.asst-trigger.active .open-icon { display: none; }
.asst-trigger.active .close-icon { display: block; }

.asst-ping {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  background: var(--wa-green);
  border: 2px solid #080808;
  border-radius: 50%;
}

.asst-panel {
  display: none;
  position: absolute;
  bottom: 66px;
  right: 0;
  width: 310px;
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), var(--glow-gold);
  overflow: hidden;
}

.asst-panel.active { display: block; }

.asst-panel-head {
  background: rgba(0,0,0,0.5);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.asst-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.asst-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-foil);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.asst-name {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.asst-status {
  font-size: 11px;
  color: var(--wa-green);
}

.asst-panel-body {
  padding: 16px;
}

.asst-bubble {
  background: rgba(255,255,255,0.04);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 14px;
  font-size: 13px;
  color: #ccc;
  line-height: 1.45;
  margin-bottom: 14px;
}

.asst-quick-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.asst-quick-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  color: #ccc;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: left;
  transition: var(--trans-fast);
}

.asst-quick-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.asst-quick-btn.wa-btn {
  background: rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.25);
  color: var(--wa-green);
}

.asst-quick-btn.wa-btn:hover {
  background: var(--wa-green);
  color: #fff;
}

.asst-panel-foot {
  background: rgba(0,0,0,0.3);
  padding: 10px 16px;
  font-size: 11px;
  color: #555;
  text-align: center;
}

/* ==========================================================================
   TOASTER SOCIAL PROOF
   ========================================================================== */
.toaster {
  position: fixed;
  bottom: 84px;
  left: 24px;
  z-index: 997;
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 310px;
  transform: translateY(130%);
  opacity: 0;
  pointer-events: none;
  transition: var(--trans-smooth);
}

.toaster.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 14px;
  flex-shrink: 0;
}

.toast-content { flex: 1; }

.toast-header {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  margin-bottom: 2px;
}

.toast-label { color: var(--gold-mid); font-weight: 700; text-transform: uppercase; }
.toast-time { color: #555; }
.toast-msg { font-size: 12px; color: #ccc; line-height: 1.3; }

.toast-close {
  background: transparent;
  border: none;
  color: #555;
  cursor: pointer;
  font-size: 12px;
}

/* ==========================================================================
   BOOKING WIZARD MODAL
   ========================================================================== */
.modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-bg.active { display: flex; }

.wizard-card {
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl), var(--glow-gold-strong);
  display: flex;
  flex-direction: column;
}

.wizard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.wizard-head h3 {
  font-family: 'Cinzel', serif;
  font-size: 19px;
  color: #fff;
}

.btn-close-wiz {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #888;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: var(--trans-fast);
}

.btn-close-wiz:hover { background: rgba(255,255,255,0.1); color: #fff; }

.wizard-steps {
  display: flex;
  justify-content: space-between;
  padding: 18px 28px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.wiz-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
}

.wiz-step .step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #666;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wiz-step.active { color: var(--gold-light); }
.wiz-step.active .step-circle { background: var(--gold-mid); color: #111; box-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
.wiz-step.completed { color: #888; }
.wiz-step.completed .step-circle { background: var(--wa-green); color: #fff; }

.wizard-body { padding: 26px 28px; }

.wiz-panel { display: none; }
.wiz-panel.active { display: block; }

/* Wizard Selected Service Card (Step 1) */
.wiz-selected-card {
  background: rgba(212, 175, 55, 0.07);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 20px;
}

.wiz-selected-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.wiz-selected-top h4 {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  color: #fff;
}

.wiz-price-tag {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--gold-mid);
}

.wiz-split-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wiz-split-adv {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
}

.wiz-split-bal {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(245, 230, 184, 0.08);
  border: 1px solid rgba(245, 230, 184, 0.2);
  color: var(--gold-light);
}

.wiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.btn-wiz-back {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ccc;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-wiz-back:hover { background: rgba(255,255,255,0.1); }

.btn-wiz-next {
  background: var(--gold-foil);
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 800;
  font-family: 'Cinzel', serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-wiz-next:hover { background: var(--gold-foil-hover); transform: translateY(-1px); }

/* WhatsApp chat preview bubble */
.wa-preview-box {
  background: #0b141a;
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 211, 102, 0.25);
}

.wa-bubble {
  background: #005c4b;
  color: #e9edef;
  font-size: 12.5px;
  line-height: 1.5;
  border-radius: 8px 0 8px 8px;
  padding: 14px 16px;
  max-width: 95%;
  margin-left: auto;
}

.btn-final-wa {
  width: 100%;
  background: var(--wa-green);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--trans-fast);
}

.btn-final-wa:hover { background: var(--wa-dark); transform: translateY(-2px); }

/* Service Detail Modal */
.service-modal-card {
  background: #111;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  padding: 28px;
}

.service-modal-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 24px;
}

.service-modal-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: #999;
}

.service-modal-features li i { color: var(--gold-mid); margin-top: 2px; }

.service-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
