/* =============================================
   DJ GURPS — Premium Bhangra DJ Website
   Global Stylesheet & Design System
   ============================================= */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Backgrounds */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #222240;
  --bg-navbar: rgba(10, 10, 15, 0.85);
  --bg-footer: #08080d;

  /* Accent Colors */
  --gold: #d4af37;
  --gold-light: #f0d060;
  --gold-dark: #b8942e;
  --electric-blue: #00d4ff;
  --neon-purple: #9b59f0;
  --neon-pink: #ff2d95;

  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b0b0c0;
  --text-muted: #6a6a80;

  /* Borders & Surfaces */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 175, 55, 0.4);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-hover: rgba(255, 255, 255, 0.06);

  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 48px;
  --gap-xl: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s ease;
  --transition-slow: 0.6s ease;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.25);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.35);
}

/* ---------- Light Mode Overrides ---------- */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #fdfdfd;
  --bg-card: #ffffff;
  --bg-card-hover: #f9f9fb;
  --bg-navbar: rgba(255, 255, 255, 0.9);
  --bg-footer: #f4f4f7;

  --text-primary: #0a0a0f;
  --text-secondary: #333344;
  --text-muted: #707080;

  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-gold: rgba(212, 175, 55, 0.6);
  --glass: rgba(0, 0, 0, 0.03);
  --glass-hover: rgba(0, 0, 0, 0.06);

  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
  --shadow-glow: 0 8px 30px rgba(212, 175, 55, 0.3);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Utility ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold {
  color: var(--gold);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}

.section-header h2 {
  margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-glow {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
  }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  padding: 0 24px;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.97);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-logo-img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px;
  box-shadow: var(--shadow-gold);
}

.nav-logo .accent {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 40px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 10px 28px;
  font-size: 0.85rem;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--text-primary);
  margin-right: 8px;
}

.theme-toggle:hover {
  background: var(--glass-hover);
  border-color: var(--gold);
  transform: translateY(-2px);
  color: var(--gold);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.theme-toggle .sun-icon {
  display: none;
}

.theme-toggle .moon-icon {
  display: block;
}

[data-theme="light"] .theme-toggle .sun-icon {
  display: block;
}

[data-theme="light"] .theme-toggle .moon-icon {
  display: none;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.mobile-menu .theme-toggle {
  margin-right: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.open .theme-toggle {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}

[data-theme="light"] .mobile-menu .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
}

/* Navbar Hover Modals */
.nav-links .has-modal {
  position: relative;
}

.nav-links .nav-modal {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 16px;
  width: max-content;
  min-width: 200px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1000;
  pointer-events: none;
}

.nav-links .nav-modal::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-links .has-modal:hover .nav-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Modal Internal Styles */
.nav-modal .modal-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}

.nav-modal .modal-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.nav-modal .modal-link {
  font-size: 0.85rem;
  color: var(--electric-blue);
  font-weight: 500;
  display: inline-block;
  transition: color var(--transition-fast);
}

.nav-modal .modal-link:hover {
  text-decoration: underline;
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  z-index: 1200;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: all var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu a:nth-child(2) {
  transition-delay: 0.15s;
}

.mobile-menu a:nth-child(3) {
  transition-delay: 0.2s;
}

.mobile-menu a:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu a:nth-child(5) {
  transition-delay: 0.3s;
}

.mobile-menu a:nth-child(6) {
  transition-delay: 0.35s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--gap-lg);
  padding-bottom: 60px;
}

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.footer-brand h3 .accent {
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-brand .booking-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links h4 {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-socials h4 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-primary);
  letter-spacing: 2px;
}

.footer-socials .handle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
  color: var(--text-secondary);
}

.social-icons a:hover {
  background: var(--gold);
  color: #0a0a0f;
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.social-icons svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Footer Contact Details */
.footer-contact {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-item:hover {
  color: var(--gold);
}

.contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom .designer {
  color: var(--text-muted);
  opacity: 0.6;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.7)),
    url('../media/banner-new.png') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
  opacity: 0.5;
}

.hero-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
}

.hero-content .overline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content .hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  display: none;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-muted);
}

@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ---------- Page Banner ---------- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
    var(--bg-secondary);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 89, 240, 0.05) 0%, transparent 70%);
  animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.page-banner h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.page-banner .section-subtitle {
  position: relative;
  z-index: 1;
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all var(--transition-base);
}

.card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card-premium {
  border-color: var(--border-gold);
  position: relative;
  overflow: hidden;
}

.card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), transparent 60%);
  pointer-events: none;
}

.card-premium:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.premium-badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #0a0a0f;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

/* ---------- Pricing Card ---------- */
.pricing-card {
  text-align: center;
  padding: 40px 28px;
}

.pricing-card .package-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-card .price .currency {
  font-size: 1.4rem;
  vertical-align: super;
  color: var(--gold);
}

.pricing-card .capacity {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-card .features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-card .features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--gold);
}

/* ---------- Image Placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  stroke: var(--text-muted);
  opacity: 0.4;
}

.img-placeholder-square {
  aspect-ratio: 1/1;
}

.img-placeholder-portrait {
  aspect-ratio: 3/4;
}

/* ---------- Video Placeholder ---------- */
.video-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  /* For link usage */
}

.video-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.video-placeholder:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.video-placeholder .play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  z-index: 2;
  backdrop-filter: blur(4px);
}

.video-placeholder:hover .play-icon {
  background: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.1);
}

.video-placeholder .play-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
  margin-left: 3px;
  transition: fill var(--transition-base);
}

.video-placeholder:hover .play-icon svg {
  fill: #0a0a0f;
}

.video-placeholder .video-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  transition: color var(--transition-base);
}

.video-placeholder:hover .video-title {
  color: var(--gold);
}

/* ---------- Stars ---------- */
.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

/* ---------- Testimonial Card ---------- */
.testimonial-card {
  padding: 36px;
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  margin-bottom: 8px;
}

.testimonial-card .review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--neon-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.testimonial-card .reviewer-info h4 {
  font-size: 1rem;
  letter-spacing: 1px;
}

.testimonial-card .reviewer-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- Marquee / Ticker ---------- */
.marquee-container {
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  padding: 12px 28px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.marquee-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.08);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ---------- Masonry Grid ---------- */
.masonry-grid {
  columns: 3;
  column-gap: 20px;
}

.masonry-grid .masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

/* ---------- Add-On Card ---------- */
.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all var(--transition-base);
}

.addon-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.addon-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform var(--transition-base);
}

.addon-card:hover .addon-img {
  transform: scale(1.03);
}

.dholi-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  transition: transform var(--transition-base);
}

.dholi-card:hover .dholi-img {
  transform: scale(1.03);
}

.addon-card .addon-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.addon-card .addon-price {
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold);
}

/* ---------- Coming Soon Card ---------- */
.coming-soon-card {
  background: linear-gradient(135deg, var(--bg-card), rgba(155, 89, 240, 0.08));
  border: 1px solid rgba(155, 89, 240, 0.2);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.coming-soon-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(155, 89, 240, 0.06), transparent 70%);
}

.coming-soon-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-purple);
  box-shadow: 0 15px 40px rgba(155, 89, 240, 0.3);
}

.cs-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coming-soon-card .cs-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(155, 89, 240, 0.2);
  color: var(--neon-purple);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.coming-soon-card h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.coming-soon-card p {
  position: relative;
  z-index: 1;
  font-size: 0.9rem;
}

/* ---------- Dholi Card ---------- */
.dholi-card {
  overflow: hidden;
}

.dholi-card .dholi-img {
  aspect-ratio: 4/3;
  border-radius: 12px;
  margin-bottom: 24px;
}

.dholi-card .dholi-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.dholi-card .dholi-location {
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dholi-card .dholi-award {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.dholi-card .dholi-bio {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--border-gold);
}

.dholi-card .dholi-pricing {
  margin-top: 20px;
}

.dholi-card .dholi-pricing h4 {
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.dholi-card .price-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dholi-card .price-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.85rem;
}

.dholi-card .price-tag .service-name {
  color: var(--text-secondary);
}

.dholi-card .price-tag .service-price {
  color: var(--gold);
  font-weight: 600;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08), transparent 70%);
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  margin-bottom: 36px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  position: relative;
  z-index: 1;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Grid Layouts ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-md);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
}

/* ---------- Quick About (Home) ---------- */
.quick-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  pointer-events: none;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about-img-wrapper:hover .about-img {
  transform: scale(1.05);
}

.quick-about .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.quick-about .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stats-row {
  display: flex;
  gap: var(--gap-lg);
  margin: 28px 0;
}

/* ---------- Bio Section ---------- */
.bio-section {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--gap-xl);
  align-items: start;
}

.bio-portrait {
  position: sticky;
  top: 120px;
}

.bio-text {
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text-secondary);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bio-section {
    grid-template-columns: 1fr;
  }

  .bio-portrait {
    position: static;
    max-width: 350px;
  }

  .masonry-grid {
    columns: 2;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar .container {
    height: 70px;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .page-banner {
    padding: 120px 0 60px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .quick-about {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .masonry-grid {
    columns: 1;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- Carousel Buttons ---------- */
.carousel-container {
  position: relative;
  width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-fast);
  font-size: 1.2rem;
  opacity: 0.8;
}

.carousel-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  opacity: 1;
}

.carousel-btn.prev-btn {
  left: -10px;
}

.carousel-btn.next-btn {
  right: -10px;
}

.package-carousel,
.dholi-carousel {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.package-carousel::-webkit-scrollbar,
.dholi-carousel::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

/* ---------- Modal Vertical List ---------- */
.nav-modal {
  padding: 16px 20px;
  min-width: 200px;
}

.modal-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links .modal-links-list a.modal-nav-item {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
  display: block;
  padding: 4px 0;
}

.nav-links .modal-links-list a.modal-nav-item::after {
  display: none;
}

.nav-links .modal-links-list a.modal-nav-item:hover {
  text-decoration: none;
  color: var(--gold);
  transform: translateX(6px);
}