/* ==========================================================================
   DV ENTERTAINMENT - LUXURY EVENT MANAGEMENT WEBSITE
   Custom CSS3 Stylesheet - Pure CSS, No Frameworks
   Color Palette: Deep Black, Dark Charcoal, Luxury Gold, Dark Red Accent, Glass
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & RESET
   -------------------------------------------------------------------------- */
:root {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;

  /* Colors */
  --bg-dark: #070709;
  --bg-card: #121218;
  --bg-card-hover: #1a1a24;
  --bg-glass: rgba(18, 18, 24, 0.65);
  --bg-glass-strong: rgba(22, 22, 32, 0.85);

  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-bright: #FFD700;
  --gold-dark: #AA771C;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);

  --red-accent: #990011;
  --red-dark: #660000;
  --red-gradient: linear-gradient(135deg, #990011 0%, #4a0008 100%);

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-gold: #E6C665;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-subtle: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Transitions & Radii */
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
  background-color: var(--bg-dark);
}

/* --------------------------------------------------------------------------
   SITE BRANDED LOADER
   -------------------------------------------------------------------------- */
.site-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: radial-gradient(circle at center, #161622 0%, #08080d 60%, #030305 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
  filter: blur(12px);
}

/* Gold Particles Canvas for Loader */
.loader-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Radial Glow Backdrop */
.loader-glow-backdrop {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, rgba(212, 175, 55, 0.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: glowBackdropPulse 4s infinite ease-in-out;
}

@keyframes glowBackdropPulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Loader Sound Toggle Button */
.loader-sound-btn {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 10;
  background: rgba(18, 18, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.loader-sound-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-light);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.loader-sound-btn.muted {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.loader-box {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 460px;
  width: 100%;
  padding: 44px 32px;
  background: rgba(14, 14, 22, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 40px rgba(212, 175, 55, 0.22);
  animation: loaderBoxFade 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes loaderBoxFade {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.loader-logo-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 15px;
}

.loader-logo-glow-aura {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, transparent 70%);
  filter: blur(10px);
  animation: loaderAuraPulse 2.5s infinite ease-in-out;
}

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

.loader-logo {
  height: 95px;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.85));
  animation: loaderPulse 2.5s infinite ease-in-out;
}

.loader-logo-ring {
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.loader-logo-ring.outer-ring {
  width: 135px;
  height: 135px;
  border: 1px dashed rgba(212, 175, 55, 0.45);
  animation: spinRing 14s linear infinite;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.loader-logo-ring.inner-ring {
  width: 115px;
  height: 115px;
  border: 1px solid rgba(251, 245, 183, 0.25);
  animation: spinRingReverse 9s linear infinite;
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinRingReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.7));
  }
  50% {
    transform: scale(1.06);
    filter: drop-shadow(0 0 38px rgba(251, 245, 183, 0.95));
  }
}

.loader-brand-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #FFFFFF 0%, #FBF5B7 50%, #D4AF37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 6px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.loader-tagline {
  font-size: 0.76rem;
  letter-spacing: 1.8px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
  opacity: 0.92;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.loader-bar-wrapper {
  width: 100%;
}

.loader-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.9), 0 0 10px rgba(212, 175, 55, 0.1);
}

.loader-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #997120, #D4AF37, #FBF5B7, #AA771C);
  background-size: 200% 100%;
  border-radius: 12px;
  position: relative;
  transition: width 0.12s ease-out;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.9);
  animation: fillGradientMove 3s infinite linear;
}

@keyframes fillGradientMove {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.loader-bar-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  animation: barShimmer 1.2s infinite linear;
}

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

.loader-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.loader-status-text {
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.loader-percent {
  font-weight: 700;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

body.no-scroll {
  overflow: hidden;
}

/* Custom Selection */
::selection {
  background: var(--gold-primary);
  color: #000;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #070709;
}
::-webkit-scrollbar-thumb {
  background: #2a2a35;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   2. REUSABLE UTILITIES & TYPOGRAPHY
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.text-gold {
  color: var(--gold-primary);
}

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

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.sub-title {
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-block;
  position: relative;
  padding: 0 16px;
}

.sub-title::before, .sub-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold-primary);
}

.sub-title::before { left: -16px; }
.sub-title::after { right: -16px; }

.section-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--gold-glow);
  transform: translateY(-6px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  box-sizing: border-box;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0d0d12;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
  color: #000;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #28e16f 0%, #159b8c 100%);
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.55), 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.btn-whatsapp:hover i {
  transform: scale(1.15) rotate(-8deg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #FFF;
  border-color: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.btn-red {
  background: var(--red-gradient);
  color: #FFF;
  box-shadow: 0 8px 25px rgba(153, 0, 17, 0.3);
}

.btn-red:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(153, 0, 17, 0.5);
}

/* --------------------------------------------------------------------------
   3. BACKGROUND CANVAS & CURSOR FX
   -------------------------------------------------------------------------- */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s ease;
  display: none;
}

@media (min-width: 1025px) {
  .cursor-glow { display: block; }
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px 0;
}

.logo-img {
  height: 68px;
  max-height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.55));
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}

.logo-brand:hover .logo-img {
  transform: scale(1.06);
  filter: drop-shadow(0 0 24px rgba(212, 175, 55, 0.85));
}

.header.scrolled .logo-img {
  height: 54px;
  max-height: 56px;
}

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

.mobile-drawer-header {
  display: none;
}

.nav-icon {
  display: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

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

.mobile-only-actions {
  display: none;
}

/* WhatsApp Button styling */
.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border: 1px solid #25D366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition-fast);
}

.btn-whatsapp:hover {
  background: #1ebc57;
  border-color: #1ebc57;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-box {
  width: 26px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION (100vh Full Screen Slider)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.15);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-bg-img {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(7, 7, 9, 0.75) 0%,
    rgba(7, 7, 9, 0.55) 40%,
    rgba(7, 7, 9, 0.85) 85%,
    rgba(7, 7, 9, 1) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 900px;
  padding-top: 80px;
}

.hero-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.3s ease, transform 0.8s 0.3s ease;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: #FFF;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.5s ease, transform 0.8s 0.5s ease;
}

.hero-description {
  font-size: 1.15rem;
  color: #E2E8F0;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 680px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.7s ease, transform 0.8s 0.7s ease;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s 0.9s ease, transform 0.8s 0.9s ease;
}

.hero-slide.active .hero-subtitle-badge,
.hero-slide.active .hero-title,
.hero-slide.active .hero-description,
.hero-slide.active .hero-cta-group {
  opacity: 1;
  transform: translateY(0);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(18, 18, 24, 0.6);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
}

.slider-arrow:hover {
  background: var(--gold-primary);
  color: #000;
  box-shadow: var(--gold-glow);
}

.slider-arrow.prev { left: 32px; }
.slider-arrow.next { right: 32px; }

.slider-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 36px;
  border-radius: 12px;
  background: var(--gold-gradient);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--gold-gradient);
  width: 0%;
  z-index: 10;
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   6. FLOATING STICKY ACTION BUTTONS
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 990;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  position: relative;
}

.float-whatsapp {
  background: #25D366;
}
.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

.float-call {
  background: var(--gold-gradient);
  color: #000;
}
.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.back-to-top {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-4px);
}

/* --------------------------------------------------------------------------
   7. SECTION 2: ABOUT DV ENTERTAINMENT
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.about-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-frame:hover .about-main-img {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  padding: 16px 24px;
  background: rgba(12, 12, 18, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--gold-glow);
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
}

.about-content-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 30px 0 40px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 0.95rem;
}

.highlight-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

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

.stat-card {
  padding: 24px 16px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}

.stat-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 6px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------------------------
   8. SECTION 3: OUR SERVICES
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--gold-glow);
  transform: translateY(-8px);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.service-icon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.service-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 12px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-features-list {
  list-style: none;
  margin-bottom: 24px;
}

.service-features-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features-list li i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   9. SECTION 4: WHY CHOOSE US
   -------------------------------------------------------------------------- */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.why-card {
  padding: 32px 28px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: var(--transition-fast);
}

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

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

.why-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 10px;
}

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

/* --------------------------------------------------------------------------
   10. SECTION 5: FEATURED EVENTS GALLERY
   -------------------------------------------------------------------------- */
.gallery-filter-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.gallery-item.hide {
  display: none;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(7, 7, 9, 0.9) 0%, rgba(7, 7, 9, 0.2) 60%, rgba(0,0,0,0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-item:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

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

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

.gallery-category {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  font-weight: 600;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: #FFF;
  margin-top: 4px;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox-modal.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.lightbox-caption {
  margin-top: 16px;
  text-align: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-primary);
}

/* --------------------------------------------------------------------------
   11. SECTION 6: HOW WE WORK (TIMELINE)
   -------------------------------------------------------------------------- */
.process-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), var(--gold-primary), rgba(212, 175, 55, 0.1));
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.process-step:hover {
  border-color: var(--gold-primary);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.25);
  background: rgba(22, 22, 32, 0.95);
}

.step-node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #0B0B10;
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 16px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.process-step:hover .step-node {
  background: var(--gold-primary);
  color: #000000;
  box-shadow: var(--gold-glow);
  transform: scale(1.1);
}

.step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.step-num {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.process-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   12. SECTION 8: TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonials-wrapper {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px;
}

.testimonial-card {
  padding: 40px 36px;
  text-align: center;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.stars-wrap {
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.client-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.client-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.client-name {
  font-weight: 700;
  color: #FFF;
  font-size: 1rem;
}

.client-event {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   13. SECTION 9: INSTAGRAM GALLERY
   -------------------------------------------------------------------------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.insta-item {
  position: relative;
  height: 180px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.insta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(153, 0, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-img {
  transform: scale(1.12);
}

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

/* --------------------------------------------------------------------------
   14. SECTION 10: FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.faq-item.active {
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFF;
}

.faq-toggle-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background: rgba(0, 0, 0, 0.2);
}

.faq-answer {
  padding: 0 28px 24px 28px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   15. SECTION 11: CALL TO ACTION BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.4) 0%, rgba(7, 7, 9, 0.95) 100%), var(--bg-card);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  overflow: hidden;
}

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

.cta-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 20px;
}

.cta-desc {
  font-size: 1.1rem;
  color: #E2E8F0;
  margin-bottom: 36px;
}

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

/* --------------------------------------------------------------------------
   16. SECTION 12: CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFF;
  margin-bottom: 4px;
}

.info-text p, .info-text a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  line-height: 1.5;
  transition: var(--transition-fast);
}

.info-text a:hover {
  color: var(--gold-primary);
}

.contact-form-wrap {
  padding: 40px;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
}

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

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

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(7, 7, 9, 0.8);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

.form-select option {
  background: #121218;
  color: #FFF;
}

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

/* --------------------------------------------------------------------------
   17. SECTION 13: INTERACTIVE QUOTE CALCULATOR MODAL
   -------------------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.quote-modal-box {
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.8), var(--gold-glow);
  position: relative;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--gold-primary);
}

.services-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.88rem;
  color: #E2E8F0;
}

.checkbox-card:hover, .checkbox-card input:checked + span {
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.calc-estimate-box {
  margin: 24px 0;
  padding: 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-md);
  text-align: center;
}

.estimate-val {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-gold);
  padding: 80px 0 30px 0;
}

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

.footer-about p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 20px 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background: var(--gold-primary);
  color: #000;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 6px;
}

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

/* --------------------------------------------------------------------------
   19. ANIMATIONS & REVEAL CLASSES
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES & MOBILE DRAWER STYLES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) and (min-width: 1025px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .header-actions {
    gap: 10px;
  }
  .header-actions .btn {
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 390px;
    height: 100vh;
    height: 100dvh;
    background: rgba(8, 8, 12, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 24px 40px 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    overflow-y: auto;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
  }

  .nav-menu.active {
    right: 0;
  }

  .mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  }

  .mobile-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.65));
  }

  .mobile-brand-meta {
    display: flex;
    flex-direction: column;
  }

  .mobile-brand-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #FFFFFF;
    line-height: 1.1;
  }

  .mobile-brand-subtitle {
    font-size: 0.62rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
  }

  .mobile-menu-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-primary);
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
  }

  .mobile-menu-close:hover {
    background: var(--gold-primary);
    color: #000000;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-icon {
    display: inline-block;
    width: 22px;
    margin-right: 10px;
    color: var(--gold-primary);
    text-align: center;
    font-size: 0.95rem;
  }

  .nav-link {
    font-size: 1rem;
    display: flex;
    align-items: center;
    padding: 11px 12px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    background: transparent;
    transition: var(--transition-fast);
    width: 100%;
  }

  .nav-link:hover, .nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    padding-left: 16px;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-only-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
    width: 100%;
  }

  .mobile-menu-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
    width: 100%;
    margin: 4px 0;
  }

  .mobile-menu-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .btn-mobile-nav {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .mobile-drawer-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-secondary);
  }

  .mobile-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 1.8s infinite;
  }

  @keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
  }

  .mobile-drawer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
  }

  .mobile-drawer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
  }

  .mobile-drawer-socials a:hover {
    background: var(--gold-primary);
    color: #000000;
    border-color: var(--gold-primary);
  }

  .hero-title { font-size: 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .process-timeline::before { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  .header {
    padding: 12px 0;
  }
  .header.scrolled {
    padding: 8px 0;
  }
  .logo-img {
    height: 44px;
    max-height: 44px;
  }
  .header.scrolled .logo-img {
    height: 38px;
    max-height: 38px;
  }
  .header-actions {
    gap: 8px;
  }
  .header-btn-call {
    padding: 9px 14px;
    font-size: 0.8rem;
  }
  .header-btn-quote {
    padding: 9px 16px;
    font-size: 0.8rem;
  }
  .hero-title { font-size: 2.3rem; }
  .hero-description { font-size: 0.98rem; }
  .slider-arrow { display: none; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .section-title { font-size: 2.1rem; }
  .cta-title { font-size: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .services-checkbox-grid { grid-template-columns: 1fr; }
  .services-grid, .why-us-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; gap: 14px; }
  .process-step { flex-direction: row; align-items: flex-start; text-align: left; padding: 20px 18px; gap: 16px; }
  .step-node { width: 52px; height: 52px; font-size: 1.15rem; margin-bottom: 0; }
  .step-body { align-items: flex-start; }
  .process-cta-wrap { flex-direction: column; width: 100%; margin-top: 32px; gap: 12px; }
  .process-cta-wrap .btn { width: 100%; justify-content: center; }
  .contact-info-card, .contact-form-wrap { padding: 24px; }
  .quote-modal-box { padding: 28px 20px; }
  .btn-whatsapp, .btn {
    padding: 13px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-padding {
    padding: 48px 0;
  }
  .container {
    padding: 0 16px;
  }
  .header {
    padding: 10px 0;
  }
  .logo-img {
    height: 38px;
    max-height: 38px;
  }
  .header.scrolled .logo-img {
    height: 34px;
    max-height: 34px;
  }
  .header-actions {
    gap: 6px;
  }
  .header-search-btn {
    padding: 8px 10px;
    border-radius: var(--radius-pill);
  }
  .header-search-btn .btn-text,
  .header-search-btn .kbd-badge {
    display: none;
  }
  .header-btn-call {
    padding: 8px 12px;
    border-radius: var(--radius-pill);
  }
  .header-btn-call .btn-text {
    display: none;
  }
  .header-btn-quote {
    padding: 8px 12px;
    font-size: 0.78rem;
  }
  .hamburger {
    padding: 6px;
  }
  .hero-subtitle-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  .hero-title { font-size: 1.8rem; line-height: 1.25; }
  .hero-cta-group { flex-direction: column; width: 100%; gap: 12px; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stat-card { padding: 20px 14px; }
  .stat-num { font-size: 2rem; }
  .process-step { padding: 16px 14px; gap: 14px; }
  .step-node { width: 44px; height: 44px; font-size: 1rem; }
  .step-num { font-size: 0.65rem; padding: 2px 10px; margin-bottom: 6px; }
  .step-title { font-size: 1rem; margin-bottom: 4px; }
  .step-desc { font-size: 0.82rem; line-height: 1.45; }
  .floating-actions { right: 14px; bottom: 14px; gap: 10px; }
  .float-btn { width: 44px; height: 44px; font-size: 1.1rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .gallery-filter-wrap { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.78rem; }
  .quote-modal-box { padding: 24px 16px; }
  .quote-modal-box .service-title { font-size: 1.5rem !important; }
  .btn-whatsapp, .btn {
    padding: 12px 16px;
    font-size: 0.86rem;
    gap: 8px;
    line-height: 1.3;
    white-space: normal;
  }
  .btn-whatsapp i {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   CUSTOM TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 90vw;
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 380px;
  max-width: 100%;
  padding: 16px 18px;
  background: rgba(18, 18, 26, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transform: translateX(120%);
  opacity: 0;
  animation: toastSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.hiding {
  animation: toastSlideOut 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.toast-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-success .toast-icon-wrap {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

.toast-info .toast-icon-wrap {
  background: linear-gradient(135deg, #B38728 0%, #AA771C 100%);
  color: #000000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.toast-body {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
  line-height: 1.25;
}

.toast-msg {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-left: 4px;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #FFFFFF;
  transform: scale(1.15);
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #25D366, #128C7E);
  animation: toastProgressBar linear forwards;
}

.toast-info .toast-progress {
  background: linear-gradient(90deg, var(--gold-light), var(--gold-primary));
}

@keyframes toastProgressBar {
  from { width: 100%; }
  to { width: 0%; }
}

@media (max-width: 480px) {
  .toast-container {
    top: auto;
    bottom: 20px;
    right: 12px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }

  .toast {
    width: 100%;
    padding: 14px 16px;
    gap: 12px;
  }

  .toast-title {
    font-size: 0.96rem;
  }

  .toast-msg {
    font-size: 0.82rem;
  }
}

/* --------------------------------------------------------------------------
   HEADER & SERVICE SEARCH STYLES
   -------------------------------------------------------------------------- */
.header-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(18, 18, 26, 0.6);
  white-space: nowrap;
}

.header-search-btn:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.kbd-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1;
}

.search-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: rgba(4, 4, 8, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.search-modal-box {
  background: rgba(14, 14, 22, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(212, 175, 55, 0.25);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-20px) scale(0.96);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-backdrop.active .search-modal-box {
  transform: translateY(0) scale(1);
}

.search-modal-header {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(22, 22, 34, 0.8);
}

.search-input-wrap {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.search-input-icon {
  position: absolute;
  left: 14px;
  font-size: 1.1rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(10, 10, 16, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 42px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.search-input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  background: rgba(14, 14, 22, 0.95);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.92rem;
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.search-clear-btn:hover {
  color: #FFFFFF;
}

.search-close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.search-close-btn:hover {
  color: #FFFFFF;
  transform: scale(1.15);
}

/* Quick Filter Tags */
.search-tags-wrap {
  padding: 12px 22px;
  background: rgba(18, 18, 28, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-tags-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.search-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.search-tag-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}

.search-tag-btn:hover, .search-tag-btn.active {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(180, 135, 40, 0.4) 100%);
  border-color: var(--gold-light);
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.search-tag-btn i {
  color: var(--gold-light);
  font-size: 0.85rem;
}

/* Search Modal Body & Results */
.search-modal-body {
  padding: 18px 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.search-service-card {
  background: rgba(22, 22, 34, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.search-service-card:hover {
  background: rgba(28, 28, 42, 0.95);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
}

.search-service-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.search-service-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(180, 135, 40, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.search-service-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.search-service-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.6px;
}

.search-service-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.search-service-desc {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.search-service-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  flex-wrap: wrap;
}

.search-btn-book {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

.search-btn-wa {
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
}

/* Default Empty State */
.search-default-state {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-secondary);
}

.search-default-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  opacity: 0.85;
}

.search-default-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.search-default-desc {
  font-size: 0.88rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.5;
  color: var(--text-muted);
}

.search-modal-footer {
  padding: 12px 22px;
  background: rgba(10, 10, 16, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.search-footer-tip kbd {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
  border-radius: 3px;
  color: var(--text-secondary);
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 18px;
  }
  .nav-link {
    font-size: 0.84rem;
  }
}

@media (max-width: 1024px) {
  .header-search-btn .kbd-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .search-modal-backdrop {
    padding: 16px 12px;
  }

  .search-modal-box {
    max-height: 92vh;
  }

  .search-modal-header {
    padding: 14px 16px;
  }

  .search-tags-wrap {
    padding: 10px 14px;
  }

  .search-modal-body {
    padding: 16px 14px;
  }

  .search-footer-tip {
    display: none;
  }
}

