/* ==========================================================================
   VDance CSS Stylesheet
   ========================================================================== */

/* Custom Properties & Design System */
:root {
  /* Colors */
  --color-bg-darkest: #120218;
  --color-bg-dark: #1d0526;
  --color-bg-medium: #2a0b36;
  --color-bg-card: rgba(49, 15, 62, 0.45);
  --color-bg-glass: rgba(29, 5, 38, 0.65);
  --color-bg-cream: #fbf8f3;
  --color-bg-cream-card: #ffffff;
  
  --color-gold-primary: #d4af37;
  --color-gold-light: #fbe69e;
  --color-gold-dark: #aa771c;
  --color-gold-gradient: linear-gradient(135deg, #fdf6c0 0%, #e8c84a 30%, #d4af37 60%, #aa771c 100%);
  
  --color-magenta: #da2c77;
  --color-magenta-hover: #b81b5c;
  --color-brand-pink: #d91c5c;
  --color-brand-pink-gradient: linear-gradient(135deg, #f0295f 0%, #c0174e 50%, #960d3b 100%);
  
  --color-text-light: #ffffff;
  --color-text-muted: #d8cddf;
  --color-text-dark: #0e0118;
  --color-text-cream-muted: #6b5c72;
  --color-border-glass: rgba(212, 175, 55, 0.22);
  --color-border-hover: rgba(251, 230, 158, 0.55);
  
  /* Typography */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-script: 'Alex Brush', cursive;
  
  /* Layout & Spacing */
  --container-max-width: 1600px;
  --header-height: 94px;
  
  /* Transitions & Shadows */
  --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-premium: 0 18px 45px rgba(0, 0, 0, 0.48), 0 6px 18px rgba(0, 0, 0, 0.24);
  --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.2);
  --shadow-gold-hover: 0 0 42px rgba(212, 175, 55, 0.45);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.32), 0 1.5px 6px rgba(0,0,0,0.18);
}

/* 1. Base & Reset Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

/* Lenis Premium Smooth Scroll Overrides */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  background-color: var(--color-bg-darkest);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Utility Layout Classes */
.container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.section-padding {
  padding: 10rem 0;
}

.dark-section {
  background-color: var(--color-bg-dark);
}

.grid {
  display: grid;
  gap: 3rem;
}

.grid-2-cols { grid-template-columns: repeat(2, 1fr); }
.grid-3-cols { grid-template-columns: repeat(3, 1fr); }
.grid-4-cols { grid-template-columns: repeat(4, 1fr); }
.grid-5-cols { grid-template-columns: repeat(5, 1fr); }

.flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.text-center { text-align: center; }

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

/* 2. Typography Styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-text-light);
  font-weight: 600;
  line-height: 1.14;
}

h1 { font-size: 5.2rem; }
h2 { font-size: 4.2rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }
h5 { font-size: 1.8rem; }

p {
  font-weight: 300;
}

/* Sections Headers */
.section-header {
  margin-bottom: 6.5rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--color-gold-primary);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  position: relative;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-primary));
  vertical-align: middle;
}

.section-label::before {
  background: linear-gradient(90deg, var(--color-gold-primary), transparent);
}

.section-title {
  margin-bottom: 2.2rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.75rem;
  max-width: 680px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.88;
}

/* Glassmorphism utility */
.glass {
  background: rgba(42, 11, 54, 0.5);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-premium), inset 0 1px 0 rgba(255,255,255,0.06);
  border-radius: 16px;
  transition: var(--transition-smooth);
}

.glass:hover {
  border-color: var(--color-border-hover);
  box-shadow: var(--shadow-premium), var(--shadow-gold-hover), inset 0 1px 0 rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* 3. Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.6rem;
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.btn-whatsapp:hover {
  background: #20ba5a !important;
  border-color: #20ba5a !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: rotate(25deg);
  transition: all 0.75s ease;
  pointer-events: none;
  opacity: 0.8;
}

.btn:hover::after {
  left: 125%;
}

/* Bespoke Luxury Scrollbar */
::-webkit-scrollbar {
  width: 9px;
  height: 9px;
}

::-webkit-scrollbar-track {
  background: #0b0114;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, #aa771c 100%);
  border-radius: 6px;
  border: 2px solid #0b0114;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #fbe69e 0%, #d4af37 100%);
}

.btn-gold {
  background: var(--color-gold-gradient);
  color: var(--color-text-dark);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #ffffff 0%, #fbe69e 50%, #d4af37 100%);
}

.btn-pink {
  background: var(--color-brand-pink-gradient);
  color: var(--color-text-light);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(217, 28, 92, 0.3);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 28, 92, 0.5), var(--shadow-gold-hover);
  background: linear-gradient(135deg, #f03e8a 0%, #d91c5c 100%);
  border-color: var(--color-gold-light);
}

.btn-star {
  width: 14px;
  height: 14px;
  margin-left: 0.8rem;
  color: var(--color-gold-light);
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition-fast);
}

.btn:hover .btn-star {
  transform: scale(1.2) rotate(15deg);
}

.font-script {
  font-family: var(--font-script) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

.btn-outline {
  color: var(--color-gold-primary);
  border: 1px solid var(--color-gold-primary);
}

.btn-outline:hover {
  background: var(--color-gold-gradient);
  color: var(--color-text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-text {
  color: var(--color-text-light);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
}

.btn-text:hover {
  color: var(--color-gold-primary);
  transform: translateX(5px);
}

.btn-block {
  width: 100%;
}

/* 4. Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  background: #FBF8F3 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-nav.scrolled {
  background: #FBF8F3 !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 82px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  gap: clamp(1.6rem, 2vw, 3rem);
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex: 0 0 auto;
}

.social-link,
.header-nav .social-link {
  color: #120218 !important;
  opacity: 0.85 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.social-link:hover,
.header-nav .social-link:hover {
  color: var(--color-brand-pink, #d91c5c) !important;
  opacity: 1 !important;
  transform: scale(1.1);
}

.social-icon,
.header-nav .social-icon,
.header-nav .social-link svg {
  width: 18px !important;
  height: 18px !important;
  stroke: #120218 !important;
  stroke-width: 1.75;
  transition: stroke 0.2s ease;
}

.header-nav .social-link:hover .social-icon,
.header-nav .social-link:hover svg {
  stroke: var(--color-brand-pink, #d91c5c) !important;
}

.logo-img {
  height: 82px;
  width: auto;
  transition: var(--transition-smooth);
}

.header-nav.scrolled .logo-img {
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.desktop-nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.4vw, 1.8rem);
  margin-left: auto;
  margin-right: 1rem;
}

.desktop-nav-links .nav-link {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #120218 !important;
  text-decoration: none;
  padding: 0.4rem 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.desktop-nav-links .nav-link:hover,
.desktop-nav-links .nav-link.active {
  color: var(--color-brand-pink, #d91c5c) !important;
}

@media (max-width: 1024px) {
  .desktop-nav-links {
    display: none !important;
  }
  
  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}

/* Menu Toggle Button - Always Visible & Styled */
.menu-toggle {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 5px !important;
  width: 44px !important;
  height: 44px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: rgba(43, 27, 54, 0.06) !important;
  border: 1px solid rgba(43, 27, 54, 0.15) !important;
  cursor: pointer !important;
  z-index: 1010 !important;
  transition: all 0.3s ease !important;
}

.menu-toggle:hover {
  background: rgba(217, 28, 92, 0.12) !important;
  border-color: var(--color-brand-pink, #d91c5c) !important;
  transform: scale(1.05);
}

.menu-toggle .bar {
  width: 20px !important;
  height: 2px !important;
  background-color: var(--color-plum-dark, #2b1b36) !important;
  border-radius: 2px !important;
  transition: all 0.3s ease !important;
}

.menu-toggle.active .bar {
  background-color: #ffffff !important;
}

/* Sidebar Navigation Drawer & Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18, 2, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 99999 !important;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sidebar-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  max-height: 100vh;
  max-height: 100svh;
  background: linear-gradient(180deg, #15021f 0%, #0c0114 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6.5rem 2.4rem 2.8rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-close-btn {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold-primary);
  font-size: 2.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  padding: 0 0 2px 0;
}

.drawer-close-btn:hover,
.drawer-close-btn:active {
  background: var(--color-gold-primary);
  color: #120218;
  transform: scale(1.08) rotate(90deg);
}

.mobile-nav-overlay.open .sidebar-drawer {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  margin-bottom: 1.5rem;
  width: 100%;
}

.mobile-link {
  position: relative;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.5rem 0.2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  background: none !important;
  border: none !important;
}

.mobile-link::before {
  content: '✦';
  font-size: 1rem;
  color: var(--color-gold-primary);
  margin-right: 0.8rem;
  opacity: 0;
  transform: scale(0.3) rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-link:hover {
  color: #fbe69e;
  transform: translateX(4px);
}

.mobile-link.active {
  color: var(--color-gold-primary) !important;
  font-weight: 600;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.mobile-link.active::before,
.mobile-link:hover::before {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.drawer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
  margin: 1.2rem 0 1.6rem;
  width: 100%;
  flex-shrink: 0;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
  flex-shrink: 0;
}

.lang-mobile-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.8rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--color-text-muted);
  font-size: 1.35rem;
}

.lang-mobile-selector .globe-icon {
  width: 17px;
  height: 17px;
  color: var(--color-gold-primary);
  flex-shrink: 0;
}

.lang-mobile-selector .lang-btn {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.lang-mobile-selector .lang-btn:hover,
.lang-mobile-selector .lang-btn.active {
  color: #120218 !important;
  background: var(--color-gold-primary) !important;
  font-weight: 700;
}

.lang-mobile-selector .lang-divider {
  color: rgba(255, 255, 255, 0.25);
}

.btn-mobile-book {
  margin-top: 0;
  padding: 1.2rem 2.5rem;
  width: 100%;
  font-size: 1.35rem;
  border-radius: 50px;
  justify-content: center;
}

@media (max-width: 576px) {
  .sidebar-drawer {
    width: 100%;
    padding: 6rem 2rem 2.4rem;
  }
  .mobile-link {
    font-size: 2rem;
    padding: 0.6rem 1rem;
  }
}

/* 5. Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: var(--header-height);
  padding-bottom: 10rem;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(218, 44, 119, 0.05) 50%, rgba(18, 2, 24, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
}

.hero-container {
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-gold-primary);
  margin-bottom: 2.5rem;
}

.hero-heading {
  font-size: 6.2rem;
  line-height: 1.06;
  margin-bottom: 2.2rem;
  background: linear-gradient(to bottom, #ffffff 60%, var(--color-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subheading {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 4rem;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 6rem;
}

.hero-highlight-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 3.5rem;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.hero-highlight-bar span {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-highlight-bar .dot {
  color: var(--color-gold-primary);
}

/* 6. About Section */
.about-image-wrapper {
  position: relative;
  padding-right: 3rem;
}

.arch-frame {
  position: relative;
  border-radius: 180px 180px 0 0; /* Mughal dome/arch outline */
  overflow: hidden;
  border: 2px solid var(--color-gold-primary);
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.about-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.arch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(29, 5, 38, 0) 70%, rgba(29, 5, 38, 0.6) 100%);
  pointer-events: none;
}

.about-floating-card {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  padding: 1.6rem 1.8rem;
  max-width: 210px;
  border-radius: 12px;
}

.card-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.quote-author {
  display: block;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  font-weight: 600;
}

.about-text-content {
  padding-left: 3rem;
}

.story-paragraph p {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

.stat-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-gold-primary);
}

.stat-info p {
  font-size: 1.2rem;
  color: var(--color-text-muted);
}

.about-action {
  margin-top: 2rem;
}

/* 7. Services Section */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--card-theme, var(--color-gold-primary));
  transition: var(--transition-smooth);
}

.card-img-container {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(18, 2, 24, 0) 50%, rgba(18, 2, 24, 0.85) 100%);
}

.card-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(18, 2, 24, 0.7);
  border: 1px solid var(--color-border-glass);
  padding: 0.5rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-primary);
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

.card-body {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.card-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.card-link {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--color-gold-primary);
  margin-top: auto;
  align-self: flex-start;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--card-theme);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 255, 255, 0.03);
}

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

/* New Services section layout matching Mockup */
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: stretch;
  margin-top: 4rem;
}

.service-card-new {
  background: var(--card-grad);
  border-radius: 30px;
  padding: 3rem 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.service-badge-circle {
  display: none;
}

.service-image-box {
  width: calc(100% + 4rem);
  margin: -3rem -2rem 2.5rem -2rem;
  height: 240px;
  overflow: hidden;
  border: none;
  box-shadow: none;
}

.service-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card-title {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}

.service-card-desc {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.service-card-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.service-card-arrow-btn svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

/* Hover effects */
.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
  border-color: var(--color-gold-primary);
}

.service-card-new:hover .service-image-box img {
  transform: scale(1.08);
}

.service-card-new:hover .service-badge-circle {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.service-card-new:hover .service-card-arrow-btn {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* CTA button styling */
.btn-gold-new {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border: 1px solid var(--color-gold-primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 1.6rem 4rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
  background: linear-gradient(135deg, #ffffff, #fbe69e, #d4af37);
}

.btn-gold-new .btn-chakra-star {
  transition: var(--transition-smooth);
}

.btn-gold-new:hover .btn-chakra-star {
  transform: rotate(45deg);
}

/* Responsive design adjustments */
@media (max-width: 1400px) {
  .services-grid-new {
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 8. Why Choose VDance */
.why-choose-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #120218 0%, #1d0526 50%, #120218 100%);
  border-top: 1.5px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.25);
  padding: 8rem 0;
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 -20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.why-choose-section::before,
.why-choose-section::after {
  content: '';
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
}

.why-choose-section::before {
  left: 0;
  background: radial-gradient(circle at left, rgba(218, 44, 119, 0.3) 0%, rgba(18, 2, 24, 0) 70%);
}

.why-choose-section::after {
  right: 0;
  background: radial-gradient(circle at right, rgba(218, 44, 119, 0.3) 0%, rgba(18, 2, 24, 0) 70%);
}

.why-choose-container-new {
  display: grid;
  grid-template-columns: 1.3fr 3.7fr;
  align-items: center;
  gap: 4rem;
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-choose-title-block {
  text-align: left;
}

.why-choose-main-title {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  margin-bottom: 0;
  text-transform: uppercase;
}

.why-choose-features-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: start;
}

.why-choose-item-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.why-item-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  margin-bottom: 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.why-item-icon {
  width: 26px;
  height: 26px;
}

.why-item-title {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.why-item-desc {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

/* Hover effects */
.why-choose-item-new:hover .why-item-icon-circle {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .why-choose-container-new {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3.5rem;
  }
  
  .why-choose-title-block {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .why-choose-main-title {
    font-size: 3.8rem;
  }
}

@media (max-width: 900px) {
  .why-choose-features-new {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .why-choose-features-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}

@media (max-width: 400px) {
  .why-choose-features-new {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 9. Events & Workshops section */
.events-description {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.events-cards-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.event-card {
  display: flex;
  align-items: center;
  padding: 3rem;
  border-radius: 16px;
  gap: 3rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--color-gold-gradient);
  border-radius: 12px;
  color: var(--color-bg-darkest);
  flex-shrink: 0;
}

.event-date .day {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.event-details {
  flex-grow: 1;
}

.event-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.event-tag.performance {
  background: rgba(142, 45, 226, 0.15);
  border: 1px solid #8e2de2;
  color: #c48eff;
}

.event-tag.workshop {
  background: rgba(247, 151, 30, 0.15);
  border: 1px solid #f7971e;
  color: #ffc272;
}

.event-tag.henna {
  background: rgba(224, 86, 136, 0.15);
  border: 1px solid #e05688;
  color: #ff9ebb;
}

.event-details h3 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.btn-event-link {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  cursor: pointer;
  text-decoration: underline;
}

.btn-event-link:hover {
  color: var(--color-gold-light);
}

/* 10. General Page Sections (Classes, Workshops, Performances) */
.classes-content, .workshops-content, .performances-content, .rentals-content {
  padding-right: 2rem;
}

.section-desc {
  font-size: 1.7rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-desc-small {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 300;
}

.highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 3.5rem 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: 400;
}

.highlight-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  box-shadow: 0 0 8px var(--color-gold-primary);
  flex-shrink: 0;
}

.classes-actions, .workshops-actions, .performances-actions, .rentals-actions {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-top: 4.5rem;
}

/* Styled Image Wrappers */
.styled-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-premium);
}

.visual-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Fit & Blur Flyer Container */
.styled-image-container.fit-blur-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b0210;
  position: relative;
  overflow: hidden;
}

.styled-image-container.fit-blur-container .blur-bg {
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  background-size: cover;
  background-position: center;
  filter: blur(25px) brightness(0.5) saturate(1.25);
  transform: scale(1.15);
  z-index: 1;
  pointer-events: none;
}

.styled-image-container.fit-blur-container .visual-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 520px;
  object-fit: contain !important;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.7));
}

.styled-image-container.fit-blur-container .visual-accent-box {
  z-index: 3;
}

.henna-visual .visual-img {
  object-position: center 25%;
}

.visual-accent-box {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  background: var(--color-bg-darkest);
  border: 1px solid var(--color-gold-primary);
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
}

.visual-accent-box .accent-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  line-height: 1.2;
}

.visual-accent-box .accent-text {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.visual-badge-overlay {
  position: absolute;
  top: 3rem;
  right: 3rem;
  background: rgba(29, 5, 38, 0.85);
  border: 1px solid var(--color-border-glass);
  padding: 1.5rem 2.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.visual-badge-overlay .badge-title {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold-primary);
}

.visual-badge-overlay .badge-subtitle {
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
}

.visual-accent-text-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(18, 2, 24, 0.95), rgba(18, 2, 24, 0));
  padding: 4rem 3rem 3rem;
}

.visual-accent-text-block h3 {
  font-size: 2.4rem;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.visual-accent-text-block p {
  font-size: 1.4rem;
  font-weight: 300;
}

.sub-list-title {
  font-size: 1.8rem;
  margin: 3.5rem 0 1.5rem;
  color: var(--color-gold-primary);
}

.styled-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
}

.styled-list li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.styled-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-gold-primary);
  font-weight: 700;
}

/* Folk Styles Repertoire */
.folk-styles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin: 2.5rem 0 3.5rem;
}

.style-tag {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 2rem;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 300;
}

.style-tag strong {
  color: var(--color-gold-primary);
  font-weight: 600;
}

/* 11. Henna Section Specifics */
.section-subtitle-text {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-text-muted);
  margin: -1.5rem 0 3rem;
}

.visual-overlay-box {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  padding: 2rem 3rem;
  border-radius: 12px;
}

.visual-overlay-box h4 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.visual-overlay-box p {
  font-size: 1.2rem;
  font-weight: 300;
}

.henna-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 3.5rem 0;
}

.h-service-item {
  display: flex;
  gap: 1.5rem;
}

.h-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold-primary);
  box-shadow: 0 0 10px var(--color-gold-primary);
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.h-service-item h5 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.h-service-item p {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.4;
}

/* Rentals Features */
.rentals-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3.5rem 0;
}

.r-feature h5 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.r-feature p {
  font-size: 1.4rem;
  font-weight: 300;
}

.visual-accent-card {
  position: absolute;
  bottom: 3rem;
  left: 3rem;
  padding: 2.5rem;
  border-radius: 12px;
}

.visual-accent-card h4 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.visual-accent-card p {
  font-size: 1.2rem;
  font-weight: 300;
}

/* 12. Testimonials Section */
.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 4rem;
}

.testimonial-slider {
  min-height: 250px;
  display: flex;
  align-items: center;
}

.testimonial-slide {
  display: none;
  text-align: left;
  background: var(--color-bg-cream-card);
  border: 1px solid rgba(217, 28, 92, 0.08);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  flex-direction: column;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.testimonial-slide.active {
  display: flex;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(217, 28, 92, 0.1);
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  pointer-events: none;
  margin: 0;
  display: block;
  height: auto;
}

.testimonial-text {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 1.45rem !important;
  line-height: 1.75 !important;
  color: #3d2b45 !important; /* Elegant deep dark purple/brown for contrast */
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-author .author-name {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-brand-pink);
  margin-bottom: 0.3rem;
}

.testimonial-author .author-desc {
  display: block;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--color-text-cream-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 5rem;
}

.slider-arrow {
  cursor: pointer;
  font-size: 2.4rem;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  color: var(--color-gold-primary);
  transform: scale(1.2);
}

.slider-dots {
  display: flex;
  gap: 1.2rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background: var(--color-gold-primary);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--color-gold-primary);
}

/* Google Reviews CTA Button */
.google-reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.google-reviews-btn {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 2.8rem;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  text-decoration: none;
  color: #3c4043;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.google-reviews-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.google-reviews-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(66, 133, 244, 0.18), 0 3px 10px rgba(0, 0, 0, 0.08);
  border-color: rgba(66, 133, 244, 0.35);
  color: #1a1a2e;
}

.google-reviews-btn:hover::before {
  opacity: 1;
}

.google-g-icon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
}

.google-reviews-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1;
}

.google-reviews-label {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3c4043;
  letter-spacing: 0.01em;
}

.google-reviews-stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.google-reviews-stars svg {
  width: 1.4rem;
  height: 1.4rem;
}

.external-arrow {
  width: 1.6rem;
  height: 1.6rem;
  color: #5f6368;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.google-reviews-btn:hover .external-arrow {
  transform: translate(2px, -2px);
}


.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.filter-btn {
  padding: 1.2rem 2.8rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.event-category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin: -2rem 0 4rem;
}

.event-card-hidden {
  display: none !important;
}

.gallery-grid {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  width: 100%;
}

.gallery-grid.gallery-grid-masonry {
  flex-direction: row;
}

.gallery-col {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  gap: 2.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-premium);
  animation: scaleUp 0.5s ease forwards;
  cursor: pointer;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--color-gold-primary);
  outline-offset: 3px;
}

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

.gallery-img {
  width: 100%;
  height: auto !important;
  display: block;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(18, 2, 24, 0.9) 15%, rgba(18, 2, 24, 0.2) 60%, rgba(18, 2, 24, 0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay h4 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

.gallery-overlay p {
  font-size: 1.3rem;
  font-weight: 300;
  transform: translateY(15px);
  transition: var(--transition-smooth);
}

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

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

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

.gallery-footer-cta {
  margin-top: 6rem;
}

.gallery-instagram-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.gallery-instagram-actions .btn {
  min-width: 23rem;
}

/* Gallery Page */
.gallery-page {
  background: var(--color-bg-darkest);
}

.gallery-page-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 15rem 0 9rem;
  background: var(--color-bg-darkest);
}

.gallery-page-hero-media {
  position: absolute;
  inset: 0;
}

.gallery-page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 2, 24, 0.92) 0%, rgba(18, 2, 24, 0.68) 42%, rgba(18, 2, 24, 0.22) 100%),
    linear-gradient(0deg, rgba(18, 2, 24, 1) 0%, rgba(18, 2, 24, 0) 42%);
}

.gallery-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-left: 5%;
}

.gallery-page-title {
  font-family: var(--font-serif);
  font-size: clamp(7rem, 14vw, 17rem);
  font-weight: 700;
  line-height: 0.82;
  color: var(--color-text-light);
  margin: 1.4rem 0 2.4rem;
  text-transform: uppercase;
}

.gallery-page-intro {
  max-width: 620px;
  margin: 0 0 3.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  line-height: 1.65;
}

.gallery-page-section {
  position: relative;
  overflow: hidden;
}

.gallery-masonry {
  column-count: 4;
  column-gap: 2rem;
}

.gallery-masonry-item {
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0 0 2rem;
  padding: 0;
  text-align: left;
  cursor: zoom-in;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
  break-inside: avoid;
  transform: translateZ(0);
  transition: var(--transition-smooth);
}

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

.gallery-masonry-item:hover,
.gallery-masonry-item:focus-visible {
  border-color: rgba(212, 175, 55, 0.58);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38), var(--shadow-gold);
  transform: translateY(-4px);
}

.gallery-masonry-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-masonry-item:hover .gallery-masonry-img,
.gallery-masonry-item:focus-visible .gallery-masonry-img {
  transform: scale(1.035);
}

.gallery-masonry-caption {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  width: max-content;
  max-width: calc(100% - 2.8rem);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(18, 2, 24, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.24);
  color: var(--color-gold-light);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition-smooth);
}

.gallery-masonry-item:hover .gallery-masonry-caption,
.gallery-masonry-item:focus-visible .gallery-masonry-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 7rem 4vw 4rem;
  background: rgba(10, 0, 14, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox p {
  color: var(--color-gold-light);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-lightbox-close {
  position: absolute;
  top: 2.2rem;
  right: 2.4rem;
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gold-light);
  font-size: 3.2rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.8rem;
  height: 4.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-light);
  cursor: pointer;
  z-index: 10001;
  transition: all 0.2s ease;
  user-select: none;
}

.gallery-lightbox-nav:hover,
.gallery-lightbox-nav:focus-visible {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border-color: var(--color-gold-primary);
}

.gallery-lightbox-prev {
  left: 2.4rem;
}

.gallery-lightbox-next {
  right: 2.4rem;
}

@media (max-width: 768px) {
  .gallery-lightbox-nav {
    width: 4rem;
    height: 4rem;
    background: rgba(10, 0, 14, 0.7);
  }
  .gallery-lightbox-prev {
    left: 1rem;
  }
  .gallery-lightbox-next {
    right: 1rem;
  }
}

.dark-outline {
  border-color: rgba(18, 2, 24, 0.28);
  color: var(--color-bg-darkest);
}

.dark-outline:hover {
  border-color: var(--color-magenta);
  color: var(--color-magenta);
}

@media (max-width: 1200px) {
  .gallery-masonry {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .gallery-page-hero {
    min-height: 68vh;
    padding: 13rem 0 7rem;
  }

  .gallery-page-hero-content {
    margin-left: auto;
  }

  .gallery-page-title {
    font-size: clamp(5.6rem, 20vw, 9rem);
  }

  .gallery-masonry {
    column-count: 2;
    column-gap: 1.4rem;
  }

  .gallery-masonry-item {
    margin-bottom: 1.4rem;
  }
}

@media (max-width: 520px) {
  .gallery-masonry {
    column-count: 1;
  }

  .gallery-masonry-caption {
    opacity: 1;
    transform: none;
  }

  .gallery-lightbox {
    padding-inline: 1.6rem;
  }
}

/* 14. Join Team Specifics */
.join-accent-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.join-grid-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.join-grid-card h4 {
  font-family: var(--font-sans);
  font-size: 2.2rem;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
}

.join-grid-card p {
  font-size: 1.5rem;
  font-weight: 300;
}

.join-grid-card:hover {
  transform: translateX(-8px);
  border-color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.02);
}

.repertoire-intro-copy {
  max-width: 980px;
  margin: 3rem auto 0;
  padding: clamp(2.4rem, 4vw, 4rem);
  text-align: left;
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.repertoire-intro-copy h3 {
  margin: 0 0 1.4rem;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--color-gold-primary);
}

.repertoire-intro-copy p,
.repertoire-intro-copy li {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.55rem;
  line-height: 1.75;
}

.repertoire-intro-copy p {
  margin: 0 0 1.5rem;
}

.repertoire-intro-copy p:last-child {
  margin-bottom: 0;
}

.repertoire-intro-copy ul {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1.7rem;
  padding-left: 1.8rem;
}

.repertoire-intro-copy strong {
  color: #fff;
}

.join-team-page {
  background: var(--color-bg-cream);
}

.join-team-hero {
  min-height: clamp(58rem, 78svh, 82rem);
}

.join-team-hero .hero-heading {
  max-width: 82rem;
}

.join-team-home-cta {
  position: relative;
  overflow: hidden;
}

.join-team-home-panel {
  display: grid;
  grid-template-columns: minmax(28rem, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2.8rem, 4vw, 6.4rem);
  align-items: stretch;
  padding: clamp(1.4rem, 1.8vw, 2rem);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 28, 92, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(24, 2, 34, 0.98), rgba(52, 6, 50, 0.94));
  box-shadow: var(--shadow-premium);
}

.join-team-home-media {
  position: relative;
  min-height: clamp(34rem, 34vw, 52rem);
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: var(--color-bg-darkest);
}

.join-team-home-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(18, 2, 24, 0.42) 100%),
    radial-gradient(circle at 85% 10%, rgba(251, 245, 183, 0.2), transparent 30%);
  pointer-events: none;
}

.join-team-home-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.join-team-home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.4rem, 4vw, 5.8rem) clamp(1.2rem, 3vw, 4.8rem) clamp(2.6rem, 4vw, 5.8rem) 0;
}

.join-team-home-content .section-title {
  max-width: 76rem;
}

.join-team-home-panel .section-desc {
  max-width: 68rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.join-team-home-actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.join-team-practice-card {
  max-width: 58rem;
  margin-top: clamp(2rem, 2.2vw, 3rem);
  padding: clamp(2rem, 2.4vw, 3rem);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.join-team-practice-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--color-gold-primary);
}

.join-team-practice-card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.45rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .join-team-home-panel {
    grid-template-columns: 1fr;
    padding: 1.2rem;
    gap: 0;
  }

  .join-team-home-media {
    min-height: clamp(28rem, 68vw, 42rem);
  }

  .join-team-home-content {
    padding: clamp(2.8rem, 7vw, 4rem) clamp(1rem, 4vw, 2rem) clamp(2.6rem, 6vw, 3.6rem);
  }

  .join-team-home-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .join-team-home-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.join-checkbox-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.4rem;
  margin: 0 0 2.4rem;
  padding: 0;
  border: 0;
}

.join-checkbox-group legend {
  grid-column: 1 / -1;
  margin-bottom: 0.8rem;
  color: var(--color-plum-dark, #2b1b36) !important;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.join-checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4.2rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(43, 27, 54, 0.15);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-plum-dark, #2b1b36) !important;
  font-size: 1.35rem;
  font-weight: 600;
}

.join-checkbox-group input {
  accent-color: var(--color-gold-primary);
}

.google-reviews-section {
  position: relative;
  overflow: hidden;
}

.google-reviews-shell {
  position: relative;
  margin-top: 3rem;
}

.google-reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 31%);
  gap: 1.8rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 0.25rem;
  padding: 0.6rem 0.4rem 2.2rem;
  scrollbar-width: none;
}

.google-reviews-track::-webkit-scrollbar {
  display: none;
}

.google-review-card {
  position: relative;
  min-height: 0;
  scroll-snap-align: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 241, 0.94)),
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.12), transparent 38%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 14px;
  box-shadow:
    0 22px 50px rgba(71, 17, 46, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}

.google-review-card::before {
  content: "“";
  position: absolute;
  right: 1.5rem;
  bottom: -2.8rem;
  font-family: var(--font-serif);
  font-size: 12rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.11);
  pointer-events: none;
}

.google-review-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-brand-pink), var(--color-gold-primary));
}

.google-review-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow:
    0 28px 60px rgba(71, 17, 46, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.google-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.35rem;
  position: relative;
  z-index: 1;
}

.google-review-top h3 {
  font-family: var(--font-sans);
  font-size: 1.34rem;
  font-weight: 800;
  color: var(--color-deep-purple);
  margin: 0 0 0.35rem;
  line-height: 1.15;
}

.google-review-top span {
  display: block;
  color: rgba(91, 65, 103, 0.68);
  font-size: 1.12rem;
  font-weight: 600;
}

.google-review-top strong {
  flex: 0 0 auto;
  color: #c69216;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.18);
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.google-review-card p {
  position: relative;
  z-index: 1;
  color: rgba(34, 8, 42, 0.78);
  font-size: 1.38rem;
  line-height: 1.72;
  margin: 0;
}

.google-review-more-card {
  background:
    radial-gradient(circle at 20% 15%, rgba(212, 175, 55, 0.24), transparent 36%),
    linear-gradient(135deg, var(--color-bg-darkest), #4a0a35);
  color: #fff;
  justify-content: center;
  gap: 1rem;
  border-color: rgba(212, 175, 55, 0.4);
}

.google-review-more-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0;
  color: #fff !important;
}

.google-review-more-card p {
  color: rgba(255, 255, 255, 0.82);
}

.google-review-more-card .btn {
  align-self: flex-start;
  min-height: 4.2rem;
  padding: 0.95rem 1.7rem;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.review-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(198, 152, 36, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-deep-purple);
  font-size: 2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(42, 5, 37, 0.2);
  transform: translateY(-50%);
  transition: transform 0.25s ease, background 0.25s ease;
}

.review-nav:hover {
  background: var(--color-gold);
  transform: translateY(-50%) scale(1.04);
}

.review-nav-prev {
  left: -22px;
}

.review-nav-next {
  right: -22px;
}

@media (max-width: 900px) {
  .google-reviews-track {
    grid-auto-columns: minmax(270px, 86%);
  }

  .review-nav {
    display: none;
  }

  .google-review-card {
    padding: 1.8rem;
  }
}

/* Style Card Image additions in Classes page Repertoire section */
.join-grid-card.style-card {
  padding: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.join-grid-card.style-card:hover {
  transform: translateY(-8px) !important;
}

.style-card-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.style-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.style-card-image.style-card-placeholder {
  filter: saturate(0.45) brightness(0.55);
}

.style-card-placeholder-label {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(251, 245, 183, 0.35);
  border-radius: 4px;
  background: rgba(12, 1, 16, 0.82);
  color: var(--color-gold-light);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.join-grid-card.style-card:hover .style-card-image {
  transform: scale(1.08);
}

.style-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.style-card-content h4 {
  margin-top: 0;
}

.join-ctas {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  margin-top: 4rem;
}

/* 15. Contact Section & Forms */
.contact-subtext {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--color-border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
}

.contact-details span {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-primary);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-details a {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text-light);
}

.contact-details a:hover {
  color: var(--color-gold-primary);
}

.contact-details p {
  font-size: 1.5rem;
  font-weight: 300;
}

.social-channels h4 {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--color-gold-primary);
}

.social-links-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
  font-size: 1.4rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.social-btn.instagram:hover {
  border-color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(5px);
}

/* Forms General */
.contact-form-container {
  padding: 4.5rem;
}

.form-title {
  font-size: 2.8rem;
  margin-bottom: 3.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.form-row {
  margin-bottom: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-group label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(18, 2, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 2rem;
  border-radius: 8px;
  color: var(--color-text-light);
  font-size: 1.5rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
  background: rgba(18, 2, 24, 0.8);
}

/* Custom Dropdown Styling */
.form-group select option {
  background: var(--color-bg-darkest);
  color: var(--color-text-light);
}

.form-feedback {
  display: none;
  align-items: center;
  gap: 1.5rem;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid #2ecc71;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-top: 2rem;
  color: #2ecc71;
  font-size: 1.4rem;
  animation: fadeIn 0.4s ease forwards;
}

.form-feedback.show {
  display: flex;
}

.success-icon {
  font-size: 1.8rem;
}

/* 16. Booking Modal */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 2, 24, 0.62);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.booking-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  width: 90%;
  max-width: 600px;
  padding: 5rem;
  border-radius: 20px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.booking-modal.glass,
.booking-modal {
  background:
    radial-gradient(circle at 14% 10%, rgba(251, 230, 158, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(250, 241, 223, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.58);
  box-shadow:
    0 26px 75px rgba(18, 2, 24, 0.42),
    0 10px 28px rgba(126, 78, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--color-text-dark);
}

.booking-modal-overlay.open .booking-modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  color: rgba(18, 2, 24, 0.58);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-magenta);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 3.5rem;
  text-align: center;
}

.modal-title {
  font-size: 3.2rem;
  margin-bottom: 0.8rem;
  color: var(--color-bg-darkest);
}

.modal-subtitle {
  font-size: 1.4rem;
  font-weight: 300;
  color: #5f5066;
}

.booking-modal .form-group label {
  color: #9c7419;
}

.booking-modal .form-group input,
.booking-modal .form-group select,
.booking-modal .form-group textarea {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(145, 102, 21, 0.22);
  color: var(--color-text-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color-scheme: light;
}

.booking-modal .form-group input::placeholder,
.booking-modal .form-group textarea::placeholder {
  color: rgba(44, 27, 50, 0.48);
}

.booking-modal .form-group input:focus,
.booking-modal .form-group select:focus,
.booking-modal .form-group textarea:focus {
  background: #ffffff;
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Modal Success Overlay */
.modal-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 50% 16%, rgba(251, 230, 158, 0.32), transparent 30%),
    linear-gradient(145deg, #fffdf8, #f9edd3);
  border-radius: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5rem;
  z-index: 10;
  animation: fadeIn 0.4s ease forwards;
}

.modal-success-overlay.show {
  display: flex;
}

.modal-success-content h4 {
  font-size: 3rem;
  color: var(--color-bg-darkest);
  margin: 2rem 0 1.5rem;
}

.modal-success-content p {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 3.5rem;
  line-height: 1.6;
  color: #5f5066;
}

.success-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  font-size: 3.2rem;
  color: var(--color-gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.about-veena-modal-card {
  max-width: 940px;
  padding: 4.2rem;
}

.about-veena-modal-header {
  margin-bottom: 3rem;
  text-align: left;
}

.about-veena-modal-header .section-label::after {
  margin-left: 0;
}

.about-veena-modal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 3.2rem;
  align-items: start;
}

.about-veena-modal-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(145, 102, 21, 0.28);
  box-shadow: 0 16px 32px rgba(70, 43, 13, 0.2);
}

.about-veena-modal-media img {
  width: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.about-veena-modal-copy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.about-veena-modal-copy p {
  font-size: 1.55rem;
  line-height: 1.75;
  color: #594b60;
}

/* 17. Footer Styles */
.main-footer {
  position: relative;
  overflow: hidden;
  background: #0d0112;
  border-top: 1px solid var(--color-border-glass);
  padding: 8rem 0 0;
}

.main-footer > .container,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  margin-bottom: 3rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--color-gold-primary);
  margin-top: 1rem;
}

.about-col .footer-logo {
  height: 50px;
  margin-bottom: 2.5rem;
}

.footer-desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.footer-social-icons,
.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-social-icons a,
.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
}

.footer-social-icons svg,
.footer-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-social-icons a:hover,
.footer-socials a:hover {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.Links-col ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.Links-col a {
  font-size: 1.4rem;
  font-weight: 300;
}

.Links-col a:hover {
  color: var(--color-gold-primary);
  padding-left: 5px;
}

.contact-col p {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.footer-contact-item {
  margin-top: 1.5rem;
}

.footer-contact-item a {
  color: var(--color-text-light);
}

.footer-contact-item a:hover {
  color: var(--color-gold-primary);
}

/* Instagram Feed Grid */
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feed-item {
  border-radius: 6px;
  overflow: hidden;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-fast);
}

.feed-item:hover img {
  transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 3rem 0;
  font-size: 1.3rem;
  font-weight: 300;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.legal-links .divider {
  color: rgba(255, 255, 255, 0.1);
}

.legal-links a:hover {
  color: var(--color-gold-primary);
}

/* 18. Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 19. Responsive Media Queries */

/* Tablet layout */
@media (max-width: 1024px) {
  h1 { font-size: 5.2rem; }
  h2 { font-size: 4rem; }
  
  .grid-5-cols { grid-template-columns: repeat(3, 1fr); }
  .grid-4-cols { grid-template-columns: repeat(2, 1fr); }
  .grid-3-cols { grid-template-columns: repeat(2, 1fr); }
  
  .about-img { height: 480px; }
  .visual-img { height: 400px; }
}

/* Landscape Mobile and Small Tablets */
@media (max-width: 768px) {
  h1 { font-size: 4.2rem; }
  h2 { font-size: 3.4rem; }
  h3 { font-size: 2.4rem; }
  
  .section-padding { padding: 7rem 0; }
  
  .grid-2-cols, .grid-3-cols, .grid-4-cols, .grid-5-cols {
    grid-template-columns: 1fr;
  }
  
  .reverse-mobile {
    direction: rtl;
  }
  
  .reverse-mobile > * {
    direction: ltr;
  }
  
  /* Navigation */
  .menu-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 11px 10px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
  }
  
  .menu-toggle:hover,
  .menu-toggle:active {
    background: rgba(217, 28, 92, 0.1);
    border-color: rgba(217, 28, 92, 0.3);
  }
  
  .nav-menu, .btn-nav {
    display: none;
  }
  
  .nav-actions {
    gap: 1.2rem;
    align-items: center;
  }
  
  /* Language Selector Mobile Improvements */
  .lang-selector {
    margin-right: 0;
  }
  
  .lang-select-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-fast);
  }
  
  .lang-select-btn:hover,
  .lang-select-btn:active {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
  }
  
  .lang-select-btn .globe-icon {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  
  .lang-select-btn .lang-current,
  .lang-select-btn .chevron-icon {
    display: none;
  }
  
  .lang-dropdown {
    top: calc(100% + 8px);
    right: 0;
    min-width: 140px;
  }
  
  .lang-dropdown-item {
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
  }
  
  /* Responsive Header Heights on Scroll (Specificity fixes) */
  .header-nav {
    height: 72px;
  }
  
  .header-nav.scrolled {
    height: 64px;
  }

  .logo-img {
    height: 52px;
  }

  .header-nav.scrolled .logo-img {
    height: 44px;
  }
  
  /* Menu toggle animations */
  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero */
  .hero-heading { font-size: 4.8rem; }
  .hero-subheading { font-size: 1.6rem; }
  .hero-ctas {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-highlight-bar {
    padding: 1.2rem 2rem;
    border-radius: 20px;
  }
  
  /* About */
  .about-image-wrapper {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  
  .about-text-content {
    padding-left: 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  /* Services & Lists */
  .highlights-list {
    grid-template-columns: 1fr;
  }
  
  .folk-styles-grid {
    grid-template-columns: 1fr;
  }
  
  .henna-services-grid {
    grid-template-columns: 1fr;
  }
  
  .classes-actions, .workshops-actions, .performances-actions, .rentals-actions, .join-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .classes-actions button, .classes-actions a,
  .workshops-actions button,
  .performances-actions button,
  .rentals-actions button,
  .join-ctas a {
    width: 100%;
    text-align: center;
  }
  
  /* Testimonials */
  .testimonial-slider-container {
    padding: 0 2rem;
  }
  .testimonial-text {
    font-size: 2rem;
  }
  
  /* Forms */
  .contact-form-container {
    padding: 2.5rem;
  }
  
  .booking-modal {
    padding: 3rem 2rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .legal-links {
    justify-content: center;
  }
}

/* Portrait Mobile */
@media (max-width: 480px) {
  h1 { font-size: 3.6rem; }
  h2 { font-size: 2.8rem; }

  .gallery-instagram-actions .btn {
    width: 100%;
    max-width: 32rem;
  }
  
  .logo-img { height: 48px; }
  .header-nav { height: 76px; }
  .header-nav.scrolled { height: 70px; }
  .header-nav.scrolled .logo-img { height: 40px; }
  
  .hero-ganesha-mark {
    width: 70px;
    height: 70px;
    margin-bottom: 0.6rem;
  }

  .hero-ganesha-mark img {
    width: 60px;
    height: 60px;
  }

  .hero-decorative-divider {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-divider-svg {
    width: 160px;
    height: auto;
  }
  
  .event-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
  }
  
  .event-date {
    width: 60px;
    height: 60px;
  }
  
  .event-date .day { font-size: 2.4rem; }
  .event-date .month { font-size: 1rem; }
}

/* ==========================================================================
   20. Performances Page Styles
   ========================================================================== */

/* Hero Banner Specific for Performances */
.performances-hero {
  border-bottom: 1px solid var(--color-border-glass);
}

/* Split Layout Performances Hero */
.performances-split-hero,
.classes-split-hero,
.henna-split-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom, #120218, #23042d);
  padding-top: 14rem;
  padding-bottom: 11rem;
}

.split-hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6rem;
  align-items: center;
  width: 90%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.split-hero-content {
  text-align: left;
}

.split-hero-content .hero-heading {
  font-family: var(--font-serif);
  color: #ffffff;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.split-hero-content .hero-subheading {
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 3.5rem;
  max-width: 540px;
}

.performances-split-hero .hero-ctas,
.classes-split-hero .hero-ctas,
.henna-split-hero .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 0;
}

.split-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 440px;
  border-radius: 120px 120px 20px 20px; /* Ornate arch frame */
  border: 2px solid var(--color-gold-primary);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

.slider-card-wrapper .hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.slider-card-wrapper .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-darkest);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  border-radius: inherit;
}

.slider-card-wrapper .hero-slide.active {
  opacity: 1;
}

/* Glassmorphic Slide Controls inside Card */
.slide-controls-card {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(27, 0, 44, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.slide-arrow-card {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.slide-arrow-card:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-gold-primary);
  transform: scale(1.15);
}

.slide-dots-card {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slide-dot.active {
  background: var(--color-gold-primary);
  transform: scale(1.3);
  box-shadow: 0 0 8px var(--color-gold-primary);
}

/* Responsive Overrides */
@media (max-width: 992px) {
  .split-hero-container {
    grid-template-columns: 1fr;
    gap: 5rem;
    text-align: center;
  }
  .split-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .split-hero-content .hero-subheading {
    margin: 0 auto 3rem;
  }
  .performances-split-hero .hero-ctas,
  .classes-split-hero .hero-ctas,
  .henna-split-hero .hero-ctas {
    justify-content: center;
  }
  .slider-card-wrapper {
    max-width: 480px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .performances-split-hero,
  .classes-split-hero,
  .henna-split-hero {
    padding-top: 11rem;
    padding-bottom: 8rem;
  }
  .split-hero-content .hero-heading {
    font-size: 4.2rem;
  }
  .slider-card-wrapper {
    height: 320px;
    border-radius: 80px 80px 15px 15px;
  }
}

/* Upcoming Performance Cards */
.performance-list-card {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.p-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.p-card-date {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  letter-spacing: 0.05em;
}

.p-card-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.p-card-meta {
  font-size: 1.45rem;
  color: var(--color-text-muted);
  margin-bottom: 1.4rem;
}

.p-card-desc {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.p-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.p-card-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  transition: var(--transition-fast);
}

.performance-list-card:hover .p-card-link {
  transform: translateX(5px);
}

.performance-list-card.noninteractive {
  cursor: default;
}

.performance-list-card.noninteractive:hover .p-card-link {
  transform: none;
}

.p-card-info-tag {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
}

/* Type Badges */
.p-card-tag {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
}

.p-card-tag.performance, .p-card-tag.stage {
  background: rgba(142, 45, 226, 0.15);
  border: 1px solid #8e2de2;
  color: #c48eff;
}

.p-card-tag.workshop {
  background: rgba(247, 151, 30, 0.15);
  border: 1px solid #f7971e;
  color: #ffc272;
}

.p-card-tag.henna {
  background: rgba(218, 44, 119, 0.15);
  border: 1px solid #da2c77;
  color: #ffa1cb;
}

/* Archive Controls Panel */
.archive-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 2.5rem 3.5rem;
  margin-bottom: 4rem;
  border-radius: 12px;
  gap: 2rem;
}

.search-input-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 500px;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.4);
}

.search-input-wrap input {
  width: 100%;
  background: rgba(18, 2, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 2rem 1.4rem 5rem;
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.search-input-wrap input:focus {
  border-color: var(--color-gold-primary);
  background: rgba(18, 2, 24, 0.8);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.filter-dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.filter-dropdown-wrap label {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold-primary);
}

.filter-dropdown-wrap select {
  background: rgba(18, 2, 24, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  font-size: 1.5rem;
  color: var(--color-text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-dropdown-wrap select:focus {
  border-color: var(--color-gold-primary);
}

/* Past Performances Table */
.past-perf-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--color-border-glass);
  box-shadow: var(--shadow-premium);
  background: rgba(29, 5, 38, 0.3);
}

.past-perf-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1.5rem;
}

.past-perf-table th, .past-perf-table td {
  padding: 2.2rem 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.past-perf-table th {
  background-color: rgba(49, 15, 62, 0.4);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  border-bottom: 1px solid var(--color-border-glass);
}

.past-perf-table tbody tr {
  transition: var(--transition-fast);
}

.past-perf-table tbody tr:hover {
  background-color: rgba(212, 175, 55, 0.03);
}

.table-row-trigger {
  cursor: pointer;
}

.perf-title-cell {
  font-weight: 500;
  color: var(--color-text-light);
}

.view-story-btn {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  opacity: 0.7;
  display: inline-block;
  transition: var(--transition-fast);
  text-decoration: underline;
}

.past-perf-table tbody tr:hover .view-story-btn {
  opacity: 1;
  color: var(--color-gold-light);
  transform: translateX(3px);
}

/* Pagination Controls */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}

.pagination-controls button {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 2.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.pagination-controls button:hover:not(:disabled) {
  border-color: var(--color-gold-primary);
  color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

.pagination-controls button.active {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.pagination-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Performance Details Full View */
.detail-view-hidden {
  display: none;
}

.back-link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
  transition: var(--transition-fast);
}

.back-link:hover {
  transform: translateX(-5px);
  color: var(--color-gold-light);
}

.detail-layout-grid {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-glass);
  border-radius: 20px;
  padding: 6rem;
  box-shadow: var(--shadow-premium);
  animation: fadeIn 0.8s ease forwards;
}

.detail-meta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detail-date-badge {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-gold-primary);
  border: 1px solid var(--color-border-glass);
  padding: 0.4rem 1.4rem;
  border-radius: 30px;
}

.detail-type-badge {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1.4rem;
  border-radius: 30px;
}

.detail-type-badge.performance, .detail-type-badge.stage {
  background: rgba(142, 45, 226, 0.15);
  border: 1px solid #8e2de2;
  color: #c48eff;
}

.detail-type-badge.workshop {
  background: rgba(247, 151, 30, 0.15);
  border: 1px solid #f7971e;
  color: #ffc272;
}

.detail-type-badge.henna {
  background: rgba(218, 44, 119, 0.15);
  border: 1px solid #da2c77;
  color: #ffa1cb;
}

.detail-title {
  font-size: 4.8rem;
  line-height: 1.2;
  margin-bottom: 3.5rem;
  background: linear-gradient(to bottom, #ffffff 60%, var(--color-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.detail-narrative p {
  font-size: 1.7rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.detail-narrative strong {
  color: var(--color-gold-primary);
  font-weight: 600;
}

.detail-actions {
  display: flex;
  gap: 2.5rem;
  margin-top: 4.5rem;
  flex-wrap: wrap;
}

.detail-visual-content .styled-image-container {
  border: 2px solid var(--color-gold-primary) !important;
  border-radius: 0 !important; /* Sharp rectangular box without curves */
  overflow: hidden;
  box-shadow: var(--shadow-premium), 0 0 15px rgba(212, 175, 55, 0.3);
}

/* When the image container uses natural ratio (fit-blur-container),
   remove the fixed height so image shows in its original proportions */
.detail-visual-content .styled-image-container.fit-blur-container .visual-img {
  height: auto !important;
  max-height: 560px;
  min-height: 280px;
  width: 100%;
  object-fit: contain !important;
}


.detail-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 3rem 3rem;
  background: linear-gradient(to top, rgba(18, 2, 24, 0.95) 20%, rgba(18, 2, 24, 0));
  text-align: center;
}

.detail-visual-overlay h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
}

.detail-visual-overlay p {
  font-size: 1.3rem;
  font-weight: 300;
}

.detail-nav-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
}

.btn-detail-nav {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-detail-nav:hover {
  color: var(--color-gold-primary);
  transform: scale(1.05);
}

/* Responsive Overrides for Performances */
@media (max-width: 900px) {
  .archive-controls-row {
    flex-direction: column;
    align-items: stretch;
  }
  .search-input-wrap {
    max-width: 100%;
  }
  .filter-dropdown-wrap {
    justify-content: space-between;
  }
  .detail-layout-grid {
    padding: 4rem 3rem;
  }
  .detail-title {
    font-size: 3.6rem;
  }
}

@media (max-width: 768px) {
  .detail-layout-grid {
    grid-template-columns: 1fr;
  }
  .detail-story-content {
    order: 2;
  }
  .detail-visual-content {
    order: 1;
    margin-bottom: 4rem;
  }
  .detail-actions {
    flex-direction: column;
  }
  .detail-actions button, .detail-actions a {
    width: 100%;
    text-align: center;
  }
}

/* Background Mandala overlays for Performances Page */
.performances-split-hero,
#styles-we-explore,
#future-performances,
#performance-detail-view section {
  position: relative;
  overflow: hidden;
}

.performances-split-hero .bg-chakra-overlay {
  left: 18%;
  top: 50%;
  width: 42vw;
  height: 42vw;
  opacity: 0.16;
}

#styles-we-explore .bg-chakra-overlay,
#future-performances .bg-chakra-overlay {
  left: 90%;
  top: 30%;
  opacity: 0.12;
}

#performance-detail-view section .bg-chakra-overlay {
  left: 10%;
  top: 60%;
  opacity: 0.1;
}

@media (max-width: 768px) {
  .performances-split-hero .bg-chakra-overlay {
    left: 50%;
    width: min(92vw, 360px);
    height: min(92vw, 360px);
    opacity: 0.22;
  }
}

/* ==========================================================================
   21. Henna by Veena Landing Page Styles
   ========================================================================== */

/* Hero Banner Accent for Henna */
.henna-hero {
  border-bottom: 1px solid rgba(218, 44, 119, 0.25);
}

/* Style Showcase Portfolio */
.style-showcase-box {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.style-showcase-item {
  padding-left: 2.5rem;
  border-left: 2px solid var(--color-magenta);
}

.style-showcase-item h4 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 0.8rem;
}

.style-showcase-item p {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.5;
}

/* Info Cards for Preparation Guide */
.info-card-block {
  padding: 4rem 3.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-color: rgba(218, 44, 119, 0.15);
}

.info-card-block:hover {
  border-color: var(--color-magenta);
  box-shadow: var(--shadow-premium), 0 0 20px rgba(218, 44, 119, 0.2);
}

.info-card-title {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.info-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--color-magenta);
  opacity: 0.8;
}

.info-card-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.info-card-list li {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  padding-left: 2rem;
}

.info-card-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--color-magenta);
  font-size: 1.1rem;
}

.info-card-list li strong {
  color: var(--color-text-light);
  font-weight: 600;
}

/* Event styles adaptation */
.folk-styles-grid .style-tag {
  transition: var(--transition-fast);
}

.folk-styles-grid .style-tag:hover {
  border-color: var(--color-magenta);
  background: rgba(218, 44, 119, 0.03);
}

/* Tablet Overrides */
@media (max-width: 900px) {
  .style-showcase-box {
    margin-bottom: 4rem;
  }
}

/* ==========================================================================
   22. VDance Classes Page Styles
   ========================================================================== */

/* Hero Banner Accent for Classes */
.classes-hero {
  border-bottom: 1px solid var(--color-border-glass);
}

/* Class Meta Highlight Panel */
.class-meta-highlights {
  border-color: var(--color-border-glass);
}

/* Sangeet Choreography Grids & Cards */
.sangeet-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.sangeet-card {
  transition: var(--transition-smooth);
}

.sangeet-card:hover {
  border-color: var(--color-gold-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

/* Responsive adjust for Classes layout */
@media (max-width: 900px) {
  .sangeet-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   23. Indian Theme Detailing & Chakra Overlays
   ========================================================================== */

/* Ensure sections contain the background elements properly */
.hero-section, 
.about-section, 
.services-section, 
.why-choose-section, 
.testimonials-section, 
.join-team-section, 
.contact-redesign-main,
.contact-section,
.classes-section,
.workshops-section,
.performances-section,
.henna-section,
.rentals-section,
.events-section {
  position: relative;
  overflow: hidden;
}

/* Mandala Background Overlay */
.bg-chakra-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(58vw, 720px);
  height: min(58vw, 720px);
  margin-top: calc(min(58vw, 720px) / -2);
  margin-left: calc(min(58vw, 720px) / -2);
  opacity: 0.095;
  pointer-events: none;
  z-index: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 14px 28px rgba(180, 123, 18, 0.12));
  transform-origin: center;
}

.bg-chakra-overlay.mandala-1 {
  background-image: url('./assets/images/mandala/mandala1.png');
}

.bg-chakra-overlay.mandala-2 {
  background-image: url('./assets/images/mandala/mandala2.png');
  opacity: 0.11;
}

.bg-chakra-overlay.mandala-3 {
  background-image: url('./assets/images/mandala/mandala3.png');
  opacity: 0.085;
}

.bg-chakra-overlay.mandala-7 {
  background-image: url('./assets/images/mandala/7.webp');
  opacity: 0.12;
}

.bg-chakra-overlay.rotating {
  animation: slow-chakra-rotate 130s linear infinite;
}

@keyframes slow-chakra-rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.about-section .bg-chakra-overlay {
  left: 9%;
  top: 38%;
}

.why-choose-section .bg-chakra-overlay {
  left: 86%;
  top: 50%;
  opacity: 0.12;
}

.services-section .bg-chakra-overlay,
.classes-section .bg-chakra-overlay,
.performances-section .bg-chakra-overlay {
  left: 91%;
  top: 22%;
}

.workshops-section .bg-chakra-overlay,
.henna-section .bg-chakra-overlay,
.rentals-section .bg-chakra-overlay,
.events-section .bg-chakra-overlay,
.contact-section .bg-chakra-overlay {
  left: 8%;
  top: 76%;
  animation-duration: 170s;
}

.main-footer .bg-chakra-overlay {
  top: auto;
  bottom: -28px;
  left: 50%;
  width: min(58vw, 660px);
  height: min(58vw, 660px);
  margin-top: 0;
  margin-left: calc(min(58vw, 660px) / -2);
  background-image: url('./assets/images/mandala/6.png');
  background-position: center bottom;
  opacity: 0.26;
  animation: none;
}

/* Ornate Gold Heading Separators */
.ornate-separator {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto 2.5rem;
  width: 100%;
}

.gold-divider-svg {
  width: 180px;
  height: 20px;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.4));
}

.section-header .ornate-separator {
  margin-top: -0.5rem;
  margin-bottom: 3.5rem;
}

.section-label::after {
  display: none !important; /* Replace the standard line divider with our ornate separator */
}

/* ==========================================================================
   24. Premium Layout Overrides (Mockup Redesign)
   ========================================================================== */

/* Header Adjustments */
.header-nav .btn-nav {
  background: var(--color-brand-pink-gradient);
  color: var(--color-text-light);
  border: 1px solid var(--color-gold-primary);
}

.header-nav .btn-nav:hover {
  background: linear-gradient(135deg, #f03e8a 0%, #d91c5c 100%);
  box-shadow: 0 8px 25px rgba(217, 28, 92, 0.4), var(--shadow-gold-hover);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 1.8vw, 2.4rem);
  white-space: nowrap;
  flex: 0 1 auto;
}

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

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

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 4.4rem;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dark);
  opacity: 0.86;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-brand-pink) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.6rem;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: center;
  transition: var(--transition-fast);
  background: var(--color-brand-pink-gradient) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-menu .nav-link-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-menu .nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(20, 5, 25, 0.16);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 2000;
  list-style: none;
  margin: 0;
}

.nav-menu .nav-link-wrap.has-dropdown:hover > .nav-dropdown,
.nav-menu .nav-link-wrap.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu .nav-dropdown li {
  position: static;
  list-style: none;
}

.nav-menu .nav-dropdown li a {
  display: block;
  padding: 0.85rem 1.1rem;
  border-radius: 9px;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  color: #2b1b36;
  text-decoration: none;
  white-space: normal;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-menu .nav-dropdown li a:hover {
  background: rgba(217, 28, 92, 0.08);
  color: var(--color-brand-pink, #d91c5c);
}

.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
  }
}

@media (min-width: 769px) {
  .header-nav .nav-socials {
    display: none;
  }
}

/* Hero Section Split Layout */
/* Hero Section Split Layout overrides */
.hero-section {
  background-color: var(--color-bg-darkest) !important;
  background-image: none !important;
}

/* Background Slider for Homepage Hero */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-darkest);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  z-index: 0;
}

.hero-bg-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #120218 0%, rgba(18, 2, 24, 0.95) 25%, rgba(29, 5, 38, 0.8) 45%, rgba(29, 5, 38, 0.2) 70%, rgba(18, 2, 24, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-pre-title {
  display: block;
  font-family: var(--font-script);
  font-size: 3.6rem;
  color: var(--color-gold-primary);
  margin-bottom: 0.5rem;
  opacity: 0.95;
  letter-spacing: 0.05em;
  text-transform: none;
}

#hero {
  overflow: hidden;
}

#hero .bg-chakra-overlay {
  left: 0;
  top: 50%;
  width: min(85vw, 680px);
  height: min(85vw, 680px);
  margin-top: calc(min(85vw, 680px) / -2);
  margin-left: calc(min(85vw, 680px) / -2);
  opacity: 0.16;
  z-index: 3;
}

@media (max-width: 768px) {
  #hero .bg-chakra-overlay {
    left: 50%;
    top: 50%;
    margin-left: 0;
    transform: translate(-50%, -50%);
    opacity: 0.22;
  }
}

.hero-ganesha-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  margin: 0 0 0.8rem;
  position: relative;
}

.hero-ganesha-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(251, 230, 158, 0.22) 0%, rgba(212, 175, 55, 0.08) 48%, rgba(212, 175, 55, 0) 72%);
  filter: blur(2px);
}

.hero-ganesha-mark img {
  position: relative;
  width: 74px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 16px rgba(212, 175, 55, 0.24));
}

@media (max-width: 480px) {
  .hero-ganesha-mark {
    width: 70px;
    height: 70px;
    margin-bottom: 0.6rem;
  }

  .hero-ganesha-mark img {
    width: 60px;
    height: 60px;
  }
}

.hero-divider-svg {
  width: 180px;
  height: 20px;
  color: var(--color-gold-primary);
  margin-bottom: 2rem;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
}

.hero-container-split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 6rem;
  align-items: center;
  text-align: left;
  width: 90%;
  max-width: var(--container-max-width);
  position: relative;
  z-index: 5;
}

.hero-container-split .hero-content {
  text-align: left;
  max-width: 100%;
  margin: 0;
}

.hero-container-split .hero-heading {
  font-family: var(--font-serif) !important;
  color: #ffffff !important;
  font-size: 5.6rem !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
  margin-bottom: 2rem !important;
  text-transform: uppercase !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
}

.hero-heading-energy {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 7.2rem;
  font-weight: 700;
  color: var(--color-gold-primary);
  background: var(--color-gold-gradient);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: 0;
  margin-right: 0.5rem;
}

.hero-heading-of {
  display: inline-block;
  font-family: var(--font-script) !important;
  color: #ffffff !important;
  font-size: 5.8rem !important;
  text-transform: none !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  margin-left: 1rem;
  vertical-align: middle;
  transform: rotate(-5deg);
}

.hero-container-split .hero-subheading {
  text-align: left;
  font-size: 1.72rem;
  line-height: 1.72;
  margin-bottom: 3.5rem;
  color: var(--color-text-muted);
}

.hero-container-split .hero-ctas {
  justify-content: flex-start;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
}

.btn-dark-gold {
  background: rgba(18, 2, 24, 0.45);
  color: var(--color-gold-primary) !important;
  border: 1.5px solid var(--color-gold-primary) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-dark-gold:hover {
  background: var(--color-gold-gradient) !important;
  color: var(--color-text-dark) !important;
  border-color: var(--color-gold-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), var(--shadow-gold-hover);
}

.btn-star-flower {
  width: 14px;
  height: 14px;
  margin-left: 0.8rem;
  color: var(--color-gold-light);
  fill: currentColor;
  transition: var(--transition-fast);
}

.btn:hover .btn-star-flower {
  transform: scale(1.25) rotate(45deg);
}

.btn-dark-gold:hover .btn-star-flower {
  color: var(--color-text-dark) !important;
}

#hero.home-hero {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  padding-bottom: 0;
  background-color: #1A0128 !important;
  isolation: isolate;
}

#hero.home-hero .hero-bg-slide {
  background-position: center top;
  filter: saturate(1.12) contrast(1.04) brightness(1.03);
  transform: scale(1.01);
}

#hero.home-hero .hero-bg-overlay {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

#hero.home-hero .hero-glow {
  display: none;
}

#hero.home-hero .bg-chakra-overlay {
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
  margin-left: 0 !important;
  margin-top: 0 !important;
  width: min(70vw, 550px) !important;
  height: min(70vw, 550px) !important;
  transform: translate(25%, -25%) !important;
  opacity: 0.12 !important;
  z-index: 2 !important;
}

#hero.home-hero .hero-container-split {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: min(90%, 145rem);
  max-width: 145rem;
  padding: 7rem 0 9rem;
  z-index: 5;
}

#hero.home-hero .hero-content {
  width: min(100%, 72rem);
  max-width: 72rem;
  padding: 0 !important;
  text-align: left;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: heroHeadlineIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#hero .hero-ganesha-mark,
.hero-ganesha-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-bottom: 1.2rem;
  animation: ganeshaFloat 5.4s ease-in-out infinite;
}

#hero .hero-ganesha-mark img,
.hero-ganesha-mark img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter:
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 24px rgba(212, 175, 55, 0.6));
}

#hero.home-hero .hero-divider-svg {
  width: 16rem;
  margin-bottom: 1.8rem;
  opacity: 0.96;
}

#hero.home-hero .hero-tag {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--color-gold-primary) !important;
  font-size: 1.3rem;
  letter-spacing: 0.28em;
  font-weight: 700;
}

#hero.home-hero .hero-heading {
  font-family: var(--font-serif) !important;
  max-width: 70rem;
  margin-bottom: 2.2rem !important;
  color: #ffffff !important;
  font-size: clamp(4.6rem, 5.2vw, 7.8rem) !important;
  line-height: 0.94 !important;
  letter-spacing: 0.02em !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 16px rgba(0, 0, 0, 1),
    0 0 30px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
  text-transform: uppercase !important;
  animation: heroHeadlineIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

#hero.home-hero .hero-heading-energy {
  display: inline-block;
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  background: none;
  -webkit-text-fill-color: initial;
  color: inherit;
}

#hero.home-hero .hero-heading-of {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  text-transform: lowercase !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 4.8vw, 6.8rem) !important;
  line-height: 0.8 !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 16px rgba(0, 0, 0, 1),
    0 0 24px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
  display: inline-block;
  margin: 0 0.5rem 0 0.5rem;
}

#hero.home-hero .hero-heading-indian {
  color: #FFD700 !important;
  -webkit-text-fill-color: #FFD700 !important;
  background: none !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 16px rgba(0, 0, 0, 1),
    0 0 30px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
  display: inline-block;
}

#hero.home-hero .hero-subheading {
  max-width: 60rem;
  margin-bottom: 3.5rem;
  color: #ffffff !important;
  font-weight: 500 !important;
  font-size: 1.7rem !important;
  line-height: 1.7 !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 14px rgba(0, 0, 0, 1),
    0 0 24px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
}

#hero.home-hero .highlight-gold {
  color: var(--color-gold-primary) !important;
  font-weight: 600 !important;
}

#hero.home-hero .btn-star-flower {
  color: var(--color-gold-primary) !important;
  fill: var(--color-gold-primary) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#hero.home-hero .btn:hover .btn-star-flower {
  transform: scale(1.25) rotate(45deg);
}

#hero.home-hero .hero-ctas {
  margin-bottom: 0;
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

#hero.home-hero .hero-ctas .btn {
  min-height: 4.8rem;
  padding: 1.2rem 2.6rem;
  border-radius: 999px;
  font-size: 1.28rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 100%;
  box-sizing: border-box;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

#hero.home-hero .hero-ctas .btn:hover {
  transform: translateY(-3px);
}

#hero.home-hero .btn-outline {
  background: rgba(0, 0, 0, 0.25) !important;
  color: var(--color-gold-primary) !important;
  border: 1px solid var(--color-gold-primary) !important;
}

#hero.home-hero .btn-outline:hover {
  background: var(--color-gold-gradient) !important;
  color: var(--color-text-dark) !important;
  border-color: var(--color-gold-primary) !important;
}

#hero.home-hero .btn-pink {
  background: linear-gradient(135deg, #ff6fa4 0%, #d91c5c 52%, #a60c46 100%) !important;
}

#hero.home-hero .btn-pink:hover {
  box-shadow: 0 16px 38px rgba(217, 28, 92, 0.38);
}

#hero.home-hero .btn-dark-gold {
  background: rgba(255, 255, 255, 0.06);
  color: #fbe69e !important;
  border-color: rgba(212, 175, 55, 0.58) !important;
}

#hero.home-hero .btn-dark-gold:hover {
  background: linear-gradient(135deg, #fbe69e 0%, #d4af37 100%) !important;
  color: #1A0128 !important;
}

#hero.home-hero.premium-home-hero .hero-bg-slide {
  background-position: center center;
}

#hero.home-hero.premium-home-hero .hero-bg-overlay {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

#hero.home-hero.premium-home-hero .hero-container-split {
  width: min(90%, 145rem);
  max-width: 145rem;
  padding: clamp(5rem, 7vh, 8rem) 0 clamp(7rem, 9vh, 10rem);
}

#hero.home-hero.premium-home-hero .hero-content {
  width: min(100%, 52rem);
  max-width: 52rem;
  padding: clamp(3rem, 4vw, 4.6rem) !important;
  background: rgba(20, 10, 30, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 30px !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  animation: fadeInScale 0.9s ease-out both;
}

#hero.home-hero.premium-home-hero .hero-ganesha-mark {
  width: 72px;
  height: 72px;
  margin: 0 0 1rem;
}

#hero.home-hero.premium-home-hero .hero-ganesha-mark img {
  width: 62px;
  height: 62px;
}

#hero.home-hero.premium-home-hero .hero-decorative-divider {
  display: block;
}

#hero.home-hero.premium-home-hero .hero-divider-svg {
  width: 16rem;
  margin-bottom: 2.2rem;
}

#hero.home-hero.premium-home-hero .hero-heading {
  position: relative;
  width: fit-content;
  max-width: 46rem;
  margin-bottom: 2.8rem !important;
  color: #ffffff !important;
  font-size: clamp(6.4rem, 5.7vw, 8.8rem) !important;
  line-height: 0.86 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-align: left;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.42);
  animation: fadeInUp 1s ease-out 0.15s both;
  opacity: 1 !important;
}

#hero.home-hero.premium-home-hero .hero-heading::after {
  content: '';
  position: absolute;
  left: 0.2rem;
  bottom: -1.25rem;
  width: min(100%, 21rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(251, 230, 158, 0.95), rgba(212, 175, 55, 0.36), transparent);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.36);
}

#hero.home-hero.premium-home-hero .hero-subheading {
  max-width: 43rem;
  margin-bottom: 3.2rem;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1.72rem, 0.78vw + 1.32rem, 2rem) !important;
  line-height: 1.45 !important;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
  opacity: 1 !important;
}

#hero.home-hero.premium-home-hero .hero-subheading-premium {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

#hero.home-hero.premium-home-hero .hero-subheading-lead {
  display: block;
  color: var(--color-gold-light);
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 2.45vw, 3.9rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
}

@media (max-width: 991px) {
  #hero.home-hero .hero-bg-slide,
  #hero.home-hero.premium-home-hero .hero-bg-slide {
    background-position: 70% center !important;
  }

  #hero.home-hero.premium-home-hero .hero-bg-overlay {
    display: none !important;
    background: none !important;
    opacity: 0 !important;
  }

  #hero.home-hero.premium-home-hero .hero-container-split,
  #hero.home-hero .hero-container-split {
    min-height: calc(100svh - var(--header-height)) !important;
    width: min(100% - 3rem, 44rem) !important;
    max-width: 44rem !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8rem 0 6rem !important;
    margin-left: auto;
    margin-right: auto;
  }

  #hero.home-hero.premium-home-hero .hero-content,
  #hero.home-hero .hero-content {
    width: min(100% - 2.4rem, 42rem) !important;
    max-width: 42rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 2.4rem 1.8rem 2.6rem !important;
    text-align: center;
    background: rgba(18, 5, 26, 0.72) !important;
    border: 1px solid rgba(212, 175, 55, 0.28) !important;
    border-radius: 24px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(212, 175, 55, 0.12) !important;
    backdrop-filter: blur(12px) saturate(1.2) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.2) !important;
  }

  #hero.home-hero.premium-home-hero .hero-ganesha-mark {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.9rem;
  }

  #hero.home-hero.premium-home-hero .hero-ganesha-mark img {
    width: 46px;
    height: 46px;
  }

  #hero.home-hero.premium-home-hero .hero-decorative-divider {
    display: flex;
    justify-content: center;
  }

  #hero.home-hero.premium-home-hero .hero-divider-svg {
    width: 12rem;
    margin-bottom: 1.2rem;
  }

  #hero.home-hero.premium-home-hero .hero-heading,
  #hero.home-hero.premium-home-hero .hero-subheading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #hero.home-hero.premium-home-hero .hero-heading {
    width: 100%;
    max-width: 36rem;
    margin-bottom: 1.4rem !important;
    font-size: clamp(4.4rem, 14vw, 6.4rem) !important;
  }

  #hero.home-hero.premium-home-hero .hero-subheading {
    max-width: 34rem;
    margin-bottom: 2.2rem !important;
    font-size: 1.55rem !important;
    line-height: 1.45 !important;
  }

  #hero.home-hero.premium-home-hero .hero-subheading-premium {
    align-items: center;
    gap: 0.35rem;
  }

  #hero.home-hero.premium-home-hero .hero-subheading-lead {
    font-size: clamp(2.4rem, 7.5vw, 3.4rem) !important;
    color: #FFD700 !important;
    -webkit-text-fill-color: #FFD700 !important;
  }
}

#hero.performance-first-hero {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding-top: var(--header-height);
  padding-bottom: 0;
  background:
    radial-gradient(circle at 50% 74%, rgba(217, 28, 92, 0.18), transparent 34%),
    #1A0128 !important;
  overflow: hidden;
}

#hero.performance-first-hero .hero-bg-slider {
  position: relative;
  inset: auto;
  width: 100%;
  height: 65vh;
  min-height: 42rem;
  max-height: 78rem;
  order: 1;
  overflow: hidden;
  z-index: 1;
}

#hero.performance-first-hero .hero-bg-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(26, 1, 40, 0) 58%, rgba(26, 1, 40, 0.72) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.1), transparent 34%);
}

#hero.performance-first-hero .hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  filter: saturate(1.12) contrast(1.04) brightness(1.03);
  transform: none;
}

#hero.performance-first-hero .hero-bg-overlay,
#hero.performance-first-hero .hero-glow {
  display: none !important;
}

#hero.performance-first-hero .hero-container-split {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: auto;
  width: min(92vw, 120rem);
  max-width: 120rem;
  padding: clamp(4.2rem, 6vw, 8rem) 0 clamp(7rem, 8vw, 10rem);
  margin: 0 auto;
  z-index: 5;
}

#hero.performance-first-hero .hero-content {
  width: min(100%, 78rem);
  max-width: 78rem;
  padding: 0;
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  animation: heroHeadlineIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

#hero.performance-first-hero .hero-brand-word {
  display: block;
  margin-bottom: clamp(1.6rem, 2vw, 2.4rem);
  color: var(--color-gold-primary);
  font-size: clamp(1.35rem, 1.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

#hero.performance-first-hero .hero-heading {
  max-width: 74rem;
  margin: 0 auto clamp(2rem, 2.6vw, 3rem) !important;
  color: #ffffff !important;
  font-size: clamp(4.2rem, 6.3vw, 8.8rem) !important;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

#hero.performance-first-hero .hero-heading-energy {
  display: inline;
  margin: 0;
  font-size: 1em;
  line-height: inherit;
  background: linear-gradient(135deg, #fff3ad 0%, #D4AF37 48%, #a87918 100%);
  -webkit-background-clip: text !important;
  background-clip: text;
  filter: drop-shadow(0 8px 22px rgba(212, 175, 55, 0.22));
}

#hero.performance-first-hero .hero-subheading {
  max-width: 52rem;
  margin: 0 auto clamp(2.8rem, 4vw, 4rem);
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.8rem, 1.8vw, 2.5rem);
  line-height: 1.45;
}

#hero.performance-first-hero .hero-ctas {
  justify-content: center;
  align-items: center;
  gap: clamp(1.6rem, 2vw, 2.6rem);
}

#hero.performance-first-hero .hero-ctas .btn {
  min-height: 5.4rem;
  padding: 1.4rem 2.6rem;
  border-radius: 999px;
  font-size: clamp(1.25rem, 1vw, 1.45rem);
}

#hero.performance-first-hero .hero-explore-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.3rem, 1vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s ease;
}

#hero.performance-first-hero .hero-explore-link:hover {
  color: var(--color-gold-primary);
  transform: translateY(2px);
}

@keyframes heroGlassIn {
  from {
    opacity: 0;
    transform: translate3d(-2.4rem, 2rem, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroHeadlineIn {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 991px) {
  #hero.home-hero {
    min-height: 100svh;
    padding-top: var(--header-height);
    padding-bottom: 0;
  }

  #hero.home-hero .hero-bg-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(20, 10, 30, 0.85) 100%
      ) !important;
  }

  #hero.home-hero .hero-bg-slide {
    background-position: center center !important;
    filter: saturate(1.14) contrast(1.03) brightness(1.06);
  }

  #hero.home-hero .hero-bg-slide:first-child {
    background-position: 36% center !important;
  }

  #hero.home-hero .hero-bg-slide:nth-child(2) {
    background-position: 46% center !important;
  }

  #hero.home-hero .hero-bg-slide:nth-child(3) {
    background-position: 62% center !important;
  }

  #hero.home-hero .hero-bg-slide:nth-child(4) {
    background-position: 54% center !important;
  }

  #hero.home-hero .hero-bg-slide:nth-child(5) {
    background-position: 58% center !important;
  }

  #hero.home-hero .hero-container-split {
    min-height: calc(100svh - var(--header-height));
    width: min(100% - 4rem, 42rem);
    padding: 18rem 0 10rem;
    justify-content: center;
    align-items: flex-end;
  }

  #hero.home-hero .hero-content {
    width: 100%;
    max-width: 42rem;
    text-align: center;
  }

  #hero.home-hero .hero-ganesha-mark {
    width: 54px;
    height: 54px;
    margin-bottom: 0.4rem;
    margin-left: auto;
    margin-right: auto;
  }

  #hero.home-hero .hero-ganesha-mark img {
    width: 46px;
    height: 46px;
  }

  #hero.home-hero .hero-divider-svg {
    width: 12rem;
    margin-bottom: 1rem;
  }

  #hero.home-hero .hero-heading,
  #hero.home-hero .hero-subheading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #hero.home-hero .hero-ctas {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 1rem;
  }

  #hero.home-hero .hero-ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #hero.home-hero .hero-container-split {
    width: min(100% - 4rem, 42rem);
    padding-top: 24rem;
    padding-bottom: 10rem;
  }

  #hero.home-hero.premium-home-hero .hero-content,
  #hero.home-hero .hero-content {
    width: min(100% - 1.6rem, 38rem) !important;
    padding: 2rem 1.3rem 2.2rem !important;
    border-radius: 20px !important;
  }

  #hero.home-hero .hero-ganesha-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 0.25rem;
  }

  #hero.home-hero .hero-ganesha-mark img {
    width: 40px;
    height: 40px;
  }

  #hero.home-hero .hero-divider-svg {
    width: 10.5rem;
    margin-bottom: 0.8rem;
  }

  #hero.home-hero .hero-tag {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  #hero.home-hero .hero-ctas {
    gap: 1rem;
  }

  #hero.home-hero .hero-ctas .btn {
    min-height: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero.home-hero .hero-content,
  #hero.home-hero .hero-heading,
  #hero.home-hero .hero-ganesha-mark {
    animation: none;
  }
}

.hero-bottom-medallion {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: calc(80px * 85 / 120);
  width: 44px;
  height: 44px;
  z-index: 11;
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.4));
}

/* Center Aligned Internal Page Heroes */
.hero-container-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  width: 90%;
}

.hero-container-center .hero-tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-gold-primary);
  margin-bottom: 2rem;
}

.hero-container-center .hero-heading {
  font-size: 5.1rem;
  line-height: 1.1;
  margin-bottom: 2.2rem;
  font-family: var(--font-serif);
  color: var(--color-text-light);
  background: linear-gradient(to bottom, #ffffff 60%, var(--color-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-container-center .hero-heading .font-gold-highlight {
  color: var(--color-gold-primary);
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-container-center .hero-subheading {
  font-size: 1.72rem;
  line-height: 1.72;
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.hero-container-center .hero-ctas {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-visual-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-right img {
  max-height: 520px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-visual-glow {
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.25) 0%, rgba(218, 44, 119, 0.1) 40%, rgba(18, 2, 24, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Wavy bottom shape divider */
.shape-divider-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: visible;
  line-height: 0;
  z-index: 10;
}

.shape-divider-bottom > svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.shape-divider-bottom .shape-fill {
  fill: var(--color-bg-cream);
}

/* About Section Cream Styling & 3-column Grid */
.cream-section {
  background-color: var(--color-bg-cream);
  color: var(--color-text-cream-muted);
}

.cream-section h2.section-title,
.cream-section h3.service-card-title,
.cream-section h3, 
.cream-section h4 {
  color: var(--color-text-dark);
}

.cream-section .section-label {
  color: var(--color-brand-pink);
}

.cream-section .section-label::after {
  background-color: var(--color-brand-pink);
}

.about-section.cream-section .container {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.45fr);
  gap: 4.5rem;
  align-items: center;
  width: min(100% - 4.8rem, 1400px);
  max-width: none;
}

.about-section.cream-section .story-paragraph p {
  color: var(--color-text-cream-muted);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.7;
}

.about-section.cream-section .arch-frame {
  border-color: var(--color-brand-pink);
  box-shadow: 0 15px 35px rgba(217, 28, 92, 0.15), 0 5px 15px rgba(0, 0, 0, 0.08);
}

.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-section .section-header {
  max-width: 84rem;
}

.clients-section .section-desc-small {
  max-width: 78rem;
  margin: 1.8rem auto 0;
  color: var(--color-text-cream-muted);
}

.clients-logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.2rem;
  margin-top: 4.2rem;
}

.client-logo-card {
  min-height: 14rem;
  padding: 2.2rem 2.4rem;
  border: 1px solid rgba(217, 28, 92, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 32px rgba(30, 6, 36, 0.08);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.client-logo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 20px 36px rgba(30, 6, 36, 0.12);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 7.8rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.clients-directory-hero {
  min-height: auto;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 7rem;
}

.clients-hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.4rem;
  min-height: 38rem;
  padding: 3.2rem;
}

.clients-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.clients-hero-number {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-gold-primary);
}

.clients-hero-label {
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.clients-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.clients-hero-mini-grid img {
  width: 100%;
  height: 8.8rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 8px;
  padding: 1.4rem;
}

.clients-directory-header {
  max-width: 82rem;
}

.clients-directory-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.2rem;
}

.clients-directory-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: 1.5rem;
  color: var(--color-text-cream-muted);
}

.clients-directory-summary span:first-child {
  font-size: 2.6rem;
  font-family: var(--font-serif);
  color: var(--color-brand-pink);
}

.clients-search-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 28rem;
  max-width: 36rem;
  width: 100%;
}

.clients-search-field svg {
  position: absolute;
  left: 1.6rem;
  width: 1.8rem;
  height: 1.8rem;
  color: rgba(34, 8, 42, 0.42);
}

.clients-search-field input {
  width: 100%;
  border: 1px solid rgba(217, 28, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-dark);
  font-size: 1.5rem;
  padding: 1.35rem 1.8rem 1.35rem 4.8rem;
  box-shadow: 0 10px 24px rgba(30, 6, 36, 0.05);
}

.clients-search-field input:focus {
  border-color: rgba(217, 28, 92, 0.3);
  box-shadow: 0 16px 30px rgba(217, 28, 92, 0.08);
}

.clients-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.client-directory-card {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  min-height: 24rem;
  padding: 2.2rem;
  border: 1px solid rgba(217, 28, 92, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(30, 6, 36, 0.06);
  text-decoration: none;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.client-directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.38);
  box-shadow: 0 24px 42px rgba(30, 6, 36, 0.1);
}

.client-directory-card.no-link {
  cursor: default;
}

.client-directory-card.no-link:hover {
  transform: none;
}

.client-directory-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 13rem;
}

.client-directory-logo {
  max-width: 100%;
  max-height: 8rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-directory-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.client-directory-name {
  font-size: 1.7rem;
  line-height: 1.35;
  color: var(--color-text-dark);
  margin: 0;
}

.client-directory-type {
  margin: 0;
  font-size: 1.3rem;
  color: var(--color-text-cream-muted);
}

.clients-directory-empty {
  grid-column: 1 / -1;
  padding: 3rem;
  border: 1px solid rgba(217, 28, 92, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text-dark);
  font-size: 1.5rem;
  text-align: center;
}

/* ==========================================================================
   29. Contact Page Editorial Redesign
   ========================================================================== */

.contact-page {
  background: var(--color-bg-cream);
}

.contact-page .contact-hero-redesign {
  min-height: auto;
  padding-top: calc(var(--header-height) + 4.5rem);
  padding-bottom: 13rem;
  background:
    linear-gradient(115deg, rgba(24, 2, 34, 0.95) 0%, rgba(45, 5, 56, 0.91) 44%, rgba(96, 20, 58, 0.84) 100%),
    url('assets/images/services_experiences.png') center/cover no-repeat;
  overflow: hidden;
}

.contact-page .contact-hero-grid {
  align-items: center;
}

.contact-page .contact-hero-copy .section-desc {
  max-width: 66rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.8rem;
}

.contact-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-hero-badges span {
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.28rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition-fast);
}

.contact-hero-badges span:hover {
  border-color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.contact-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-bottom: 0;
}

.contact-metric-card {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.contact-metric-card:hover {
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.08);
}

.contact-metric-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--color-gold-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-metric-card span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.3rem;
  line-height: 1.4;
}

.contact-page .contact-hero-panel {
  overflow: hidden;
  padding: 0;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-hero-panel-media {
  position: relative;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.22), rgba(217, 28, 92, 0.12));
}

.contact-hero-panel-media img {
  display: block;
  width: 100%;
  height: 32rem;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.6s ease;
}

.contact-page .contact-hero-panel:hover .contact-hero-panel-media img {
  transform: scale(1.04);
}

.contact-hero-panel-body {
  padding: 3rem;
}

.contact-panel-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.15rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  font-weight: 700;
}

.contact-hero-panel-body h3 {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-family: var(--font-serif);
  color: var(--color-text-light);
}

.contact-hero-panel-body p {
  margin-bottom: 2rem;
  color: var(--color-text-muted);
  font-size: 1.45rem;
  line-height: 1.6;
}

.contact-panel-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-panel-links a {
  color: var(--color-text-light);
  font-weight: 600;
  font-size: 1.55rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: var(--transition-fast);
}

.contact-panel-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

.contact-page .contact-redesign-main {
  position: relative;
  padding-top: 7rem;
}

.contact-redesign-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 5rem;
  align-items: start;
}

.contact-redesign-info {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.contact-info-block .section-title,
.contact-form-glass .section-title {
  text-align: left;
  margin-bottom: 1.4rem;
  font-family: var(--font-serif);
  color: var(--color-text-dark);
}

.contact-info-block .section-desc {
  color: var(--color-text-cream-muted);
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.7;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.contact-path-card {
  padding: 2.4rem 2.6rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(253, 249, 244, 0.75) 100%);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-left: 4px solid rgba(217, 28, 92, 0.25);
  box-shadow: 0 10px 30px rgba(30, 6, 36, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, border-left-color 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.contact-path-card::after {
  content: '→';
  position: absolute;
  right: 2.6rem;
  top: 50%;
  transform: translateY(-50%) translateX(0);
  font-size: 1.8rem;
  color: var(--color-brand-pink);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 28, 92, 0.24);
  border-left-color: var(--color-brand-pink);
  box-shadow: 0 20px 40px rgba(82, 32, 69, 0.08), 0 0 0 1px rgba(217, 28, 92, 0.06);
}

.contact-path-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(6px);
}

.contact-path-card h3 {
  margin-bottom: 0.7rem;
  font-size: 2.1rem;
  font-family: var(--font-serif);
  color: var(--color-text-dark);
  transition: color 0.3s ease;
  padding-right: 2.5rem;
}

.contact-path-card:hover h3 {
  color: var(--color-brand-pink);
}

.contact-path-card p {
  margin: 0;
  color: var(--color-text-cream-muted);
  font-size: 1.45rem;
  line-height: 1.6;
  padding-right: 2.5rem;
}

.contact-card-stack {
  display: grid;
  gap: 1.6rem;
}

.contact-detail-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  align-items: center;
  padding: 2.2rem 2.4rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(254, 252, 249, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 12px 28px rgba(30, 6, 36, 0.04);
  transition: var(--transition-smooth);
}

.contact-detail-feature:hover {
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 18px 38px rgba(30, 6, 36, 0.07);
  transform: translateY(-2px);
}

.contact-detail-feature h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-text-dark);
}

.contact-detail-feature p {
  margin: 0;
  color: var(--color-text-cream-muted);
  font-size: 1.45rem;
  line-height: 1.5;
}

.contact-detail-feature a {
  color: var(--color-brand-pink);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-detail-feature a:hover {
  color: var(--color-gold-dark);
}

.contact-detail-feature .info-icon-circle {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(217, 28, 92, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-pink);
  transition: var(--transition-fast);
}

.contact-detail-feature:hover .info-icon-circle {
  background: linear-gradient(135deg, var(--color-brand-pink) 0%, var(--color-magenta) 100%);
  color: var(--color-text-light);
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 15px rgba(217, 28, 92, 0.2);
}

.contact-detail-feature .info-icon-circle svg {
  width: 2rem;
  height: 2rem;
}

.contact-page .contact-social-grid {
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 1.4rem;
  align-items: center;
  margin-top: 1rem;
}

.contact-form-shell {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.contact-page .contact-form-glass {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-text-dark);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 16px;
  box-shadow: 0 30px 70px rgba(30, 6, 36, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 4rem 3.6rem;
  position: relative;
}

.contact-page .contact-form-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-brand-pink-gradient);
  border-radius: 16px 16px 0 0;
}

.contact-form-intro {
  margin-bottom: 2.8rem;
  color: var(--color-text-cream-muted);
  font-size: 1.45rem;
  line-height: 1.6;
}

.contact-page .contact-form-glass label {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.8rem;
  display: block;
  opacity: 0.9;
}

.contact-page .contact-form-glass input,
.contact-page .contact-form-glass textarea {
  background: rgba(255, 255, 255, 0.6);
  color: var(--color-text-dark);
  border: 1px solid rgba(18, 2, 24, 0.08);
  border-radius: 8px;
  padding: 1.5rem 1.8rem;
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.contact-page .contact-form-glass input::placeholder,
.contact-page .contact-form-glass textarea::placeholder {
  color: rgba(34, 8, 42, 0.4);
}

.contact-page .contact-form-glass input:hover,
.contact-page .contact-form-glass textarea:hover {
  border-color: rgba(217, 28, 92, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.contact-page .contact-form-glass input:focus,
.contact-page .contact-form-glass textarea:focus {
  border-color: var(--color-brand-pink);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(217, 28, 92, 0.06), 0 0 0 4px rgba(217, 28, 92, 0.06);
  outline: none;
}

.contact-page .contact-form-glass textarea {
  min-height: 16rem;
  resize: vertical;
}

.contact-page .form-feedback {
  display: none;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.4);
  margin-bottom: 2.2rem;
}

.contact-page .form-feedback p {
  margin: 0;
  color: var(--color-text-dark);
  font-size: 1.4rem;
  font-weight: 500;
}

.contact-page .success-icon {
  color: var(--color-gold-dark);
  font-size: 2rem;
}

.contact-page .contact-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 16rem;
  padding: 1.3rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: #ffffff;
  color: var(--color-text-dark);
  box-shadow: 0 8px 20px rgba(30, 6, 36, 0.03);
  text-decoration: none;
  transition: var(--transition-fast);
}

.contact-page .contact-social-btn svg {
  width: 1.8rem;
  height: 1.8rem;
}

.contact-page .contact-social-btn span {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-page .contact-social-btn.instagram:hover {
  background: linear-gradient(135deg, #f9ce71 0%, #e02f74 50%, #9b28b1 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(224, 47, 116, 0.25);
}

.contact-page .contact-social-btn.youtube:hover {
  background: #ff0000;
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 0, 0, 0.25);
}

@media (max-width: 991px) {
  .contact-page .contact-hero-grid,
  .contact-redesign-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-form-shell {
    position: static;
  }

  .contact-hero-badges {
    justify-content: center;
  }

  .contact-hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .contact-page .contact-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-page .contact-hero-redesign {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 9rem;
  }

  .contact-hero-badges {
    justify-content: center;
  }

  .contact-hero-metrics {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-page .contact-form-glass {
    padding: 3rem 2.4rem;
  }

  .contact-hero-panel-media img {
    height: 28rem;
    object-position: center 18%;
  }

  /* Form spacing stacked items */
  .contact-page .form-row {
    margin-bottom: 0;
  }
  .contact-page .form-group {
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-badges {
    gap: 0.8rem;
  }

  .contact-hero-badges span,
  .contact-metric-card {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .contact-page .contact-form-glass,
  .contact-detail-feature,
  .contact-path-card {
    padding: 2.2rem 1.8rem;
  }

  .contact-page .contact-social-grid {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-social-btn {
    width: 100%;
  }

  .contact-hero-panel-body h3 {
    font-size: 2.6rem;
  }
}

.about-stats-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.stat-card-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.2rem 2rem;
  background: var(--color-bg-cream-card);
  border: 1px solid rgba(217, 28, 92, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.stat-card-vertical:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(217, 28, 92, 0.1), var(--shadow-gold);
  border-color: var(--color-gold-primary);
}

.stat-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-pink);
  margin-bottom: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.stat-icon-circle svg {
  width: 22px;
  height: 22px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-cream-muted);
  margin-top: 0.4rem;
}

/* Services section viewed buttons matching pink styling */
.services-action .btn-gold-new {
  background: var(--color-brand-pink-gradient);
  color: var(--color-text-light);
  border: 1px solid var(--color-gold-primary);
  padding: 1.6rem 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(217, 28, 92, 0.3);
}

.services-action .btn-gold-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 28, 92, 0.5), var(--shadow-gold-hover);
  background: linear-gradient(135deg, #f03e8a 0%, #d91c5c 100%);
  border-color: var(--color-gold-light);
}

/* Why choose features matching mockup styling */
.why-choose-features-new {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.why-choose-item-new {
  flex: 1;
}

/* Upcoming Events section cream styling */
.events-section.cream-section {
  background-color: var(--color-bg-cream);
  padding-bottom: 10rem;
}

.events-section.cream-section .section-title {
  color: var(--color-text-dark);
}

.events-section.cream-section .events-description {
  color: var(--color-text-cream-muted);
  font-size: 1.7rem;
}

.events-section.cream-section .event-card.glass {
  background: var(--color-bg-cream-card);
  border: 1px solid rgba(217, 28, 92, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.events-section.cream-section .event-card.glass:hover {
  border-color: var(--color-brand-pink);
  box-shadow: 0 15px 35px rgba(217, 28, 92, 0.1), var(--shadow-gold);
}

.events-section.cream-section .event-date {
  background: var(--color-brand-pink-gradient);
  color: var(--color-text-light);
  border: 1px solid var(--color-gold-primary);
}

.events-section.cream-section .event-details h3 {
  color: var(--color-text-dark);
}

.events-section.cream-section .event-details .event-meta {
  color: var(--color-text-cream-muted);
}

.events-section.cream-section .event-details .event-tag {
  background: rgba(217, 28, 92, 0.08);
  color: var(--color-brand-pink);
}

.events-section.cream-section .btn-event-link {
  color: var(--color-brand-pink);
}

.events-section.cream-section .btn-event-link:hover {
  color: var(--color-brand-pink-hover);
}

/* Testimonials desktop 3-columns side-by-side */
.testimonials-section.cream-section {
  background-color: var(--color-bg-cream);
  padding-bottom: 12rem;
}

.testimonials-grid-desktop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}

.testimonial-card-new {
  background: var(--color-bg-cream-card);
  border: 1px solid rgba(217, 28, 92, 0.08);
  border-radius: 20px;
  padding: 4.5rem 3.5rem 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.testimonial-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(217, 28, 92, 0.08), var(--shadow-gold);
  border-color: var(--color-gold-primary);
}

.testimonial-card-new .quote-mark-top {
  position: absolute;
  top: 1.5rem;
  left: 2.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  color: rgba(217, 28, 92, 0.1);
  pointer-events: none;
}

.testimonial-card-new .quote-text {
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-text-cream-muted);
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-card-new .author-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
}

.testimonial-card-new .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-primary);
}

.testimonial-card-new .author-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-card-new .author-name {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.testimonial-card-new .author-title {
  font-size: 1.2rem;
  color: var(--color-text-cream-muted);
}

/* Contact CTA Banner Overlay Layout */
.contact-cta-banner-new {
  position: relative;
  padding: 12rem 0;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, #240a30 0%, #170422 62%), #170422;
  border-top: 1px solid var(--color-border-glass);
  border-bottom: 1px solid var(--color-border-glass);
  overflow: hidden;
}

.contact-cta-banner-new .banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 100%;
  background: radial-gradient(circle, rgba(217, 28, 92, 0.28) 0%, rgba(212, 175, 55, 0.1) 50%, rgba(18, 2, 24, 0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.contact-cta-banner-new .banner-container {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta-banner-new .section-label {
  display: inline-block;
  margin-bottom: 1.4rem;
}

.contact-cta-banner-new h2 {
  font-size: 5rem;
  line-height: 1.25 !important;
  margin-bottom: 2rem;
  color: #ffffff;
  overflow: visible !important;
}

.contact-cta-banner-new .font-gold-highlight {
  display: inline-block;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 0.05em;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
  line-height: 1.2;
  filter: drop-shadow(0 4px 16px rgba(212, 175, 55, 0.3));
}

.contact-cta-banner-new p {
  font-size: 1.9rem;
  color: var(--color-text-muted);
  margin-bottom: 4.5rem;
}

.contact-cta-banner-new .banner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.contact-cta-banner-new .dancer-overlay-left,
.contact-cta-banner-new .dancer-overlay-right {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: auto;
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

.contact-cta-banner-new .dancer-overlay-left {
  left: 0;
  transform: scaleX(-1);
}

.contact-cta-banner-new .dancer-overlay-right {
  right: 0;
}


/* Responsive Overrides */
@media (max-width: 991px) {
  .hero-section {
    background-image: none !important;
    background-color: var(--color-bg-darkest) !important;
    padding-bottom: 8rem;
  }
  .hero-bg-overlay {
    background: linear-gradient(to bottom, rgba(18, 2, 24, 0.95) 0%, rgba(29, 5, 38, 0.8) 50%, rgba(18, 2, 24, 0.95) 100%) !important;
  }
  .hero-bg-slide {
    background-position: center center !important;
  }
  .hero-pre-title {
    font-size: 2.8rem;
  }
  .hero-container,
  .hero-container-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  .hero-content,
  .hero-container-split .hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .hero-heading,
  .hero-container-split .hero-heading {
    text-align: center;
    font-size: 4.8rem !important;
  }
  .hero-heading-energy {
    font-size: 6.2rem;
  }
  .hero-heading-of {
    font-size: 5.2rem !important;
    margin-left: 0.5rem;
  }
  .hero-subheading,
  .hero-container-split .hero-subheading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.6rem;
  }
  .hero-ctas,
  .hero-container-split .hero-ctas {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .hero-bottom-medallion {
    width: 36px;
    height: 36px;
    top: calc(80px * 85 / 120);
  }
  .about-section.cream-section .container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  .clients-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .clients-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .clients-directory-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
  .clients-search-field {
    min-width: 0;
    max-width: 100%;
  }
  .about-image-wrapper {
    padding-right: 0;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-stats-column {
    flex-direction: row;
    justify-content: center;
  }
  .about-stats-column .stat-card-vertical {
    flex: 1;
  }
  .testimonials-grid-desktop {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 4rem auto 0;
  }
  .why-choose-features-new {
    flex-wrap: wrap;
    gap: 3rem;
  }
  .why-choose-item-new {
    flex: unset;
    width: calc(50% - 1.5rem);
  }
}

@media (max-width: 768px) {
  .contact-cta-banner-new h2 {
    font-size: 3.4rem;
  }
  .contact-cta-banner-new .dancer-overlay-left,
  .contact-cta-banner-new .dancer-overlay-right {
    display: none;
  }
  .why-choose-item-new {
    width: 100%;
  }
}

/* Responsive Testimonials desktop override */
@media (min-width: 992px) {
  .testimonial-slider-container {
    max-width: var(--container-max-width) !important;
    padding: 0 2rem !important;
  }

  .testimonial-slider {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 3rem !important;
    max-width: 100% !important;
  }
  
  .testimonial-slide {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative !important;
    height: auto !important;
    background: var(--color-bg-cream-card) !important;
    border: 1px solid rgba(217, 28, 92, 0.08) !important;
    border-radius: 20px !important;
    padding: 4.5rem 3.5rem 4rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: var(--transition-smooth) !important;
    flex-direction: column !important;
    text-align: left !important;
  }
  
  .testimonial-slide:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(217, 28, 92, 0.08), var(--shadow-gold) !important;
    border-color: var(--color-gold-primary) !important;
  }
  
  .testimonial-slide .quote-icon {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 1;
    color: rgba(217, 28, 92, 0.1);
    position: absolute;
    top: 1.5rem;
    left: 2.5rem;
    pointer-events: none;
    margin: 0;
  }
  
  .testimonial-slide .testimonial-text {
    font-size: 1.55rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--color-text-cream-muted);
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
  }

  .testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
  }

  .author-avatar-fallback {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--color-gold-primary);
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-pink);
    font-weight: 700;
    font-size: 1.4rem;
    flex-shrink: 0;
  }

  .slider-controls {
    display: none !important;
  }
}

/* Mobile-only avatar styling for consistency */
.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: auto;
  justify-content: center;
}

@media (min-width: 992px) {
  .testimonial-author-wrapper {
    justify-content: flex-start;
  }
}

.author-avatar-fallback {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-pink);
  font-weight: 700;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Language Selector Dropdown styles */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
}

.lang-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border-radius: 8px;
  transition: var(--transition-fast);
}

.lang-select-btn:hover {
  color: var(--color-gold-primary);
  background: rgba(255, 255, 255, 0.03);
}

.lang-select-btn .globe-icon {
  width: 1.6rem;
  height: 1.6rem;
  stroke-width: 1.5;
}

.lang-select-btn .chevron-icon {
  width: 1.2rem;
  height: 1.2rem;
  opacity: 0.6;
  transition: transform var(--transition-fast);
}

.lang-selector:hover .lang-select-btn .chevron-icon {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(29, 5, 38, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 8px;
  padding: 0.8rem 0;
  min-width: 120px;
  box-shadow: var(--shadow-premium), 0 10px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-fast);
  z-index: 100;
}

.lang-selector:hover .lang-dropdown,
.lang-selector.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-item {
  display: block;
  padding: 0.8rem 1.6rem;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-fast);
  text-align: left;
}

.lang-dropdown-item:hover,
.lang-dropdown-item.active {
  color: var(--color-gold-primary);
  background: rgba(212, 175, 55, 0.05);
}

/* Mobile Language Selector Styles */
.lang-mobile-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: var(--color-text-muted);
  width: 100%;
  margin: 1rem 0 2rem;
}

.lang-mobile-selector .globe-icon {
  width: 2rem;
  height: 2rem;
  color: var(--color-gold-primary);
  stroke-width: 1.5;
}

.lang-mobile-selector .lang-btn {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

.lang-mobile-selector .lang-btn.active,
.lang-mobile-selector .lang-btn:hover {
  color: var(--color-gold-primary);
}

.lang-mobile-selector .lang-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Sangeet Categories Grid */
.sangeet-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .sangeet-categories-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive collapse for Past Performances Table */
@media (max-width: 600px) {
  .past-perf-table-wrap,
  .table-responsive {
    border: none;
    box-shadow: none;
    background: none;
    overflow: visible !important;
  }

  .past-perf-table, 
  .archive-table,
  .past-perf-table thead, 
  .archive-table thead,
  .past-perf-table tbody, 
  .archive-table tbody,
  .past-perf-table th, 
  .archive-table th,
  .past-perf-table td, 
  .archive-table td,
  .past-perf-table tr,
  .archive-table tr { 
    display: block; 
    width: 100% !important;
  }
  
  /* Hide table headers visually but keep for screen readers */
  .past-perf-table thead tr,
  .archive-table thead tr { 
    position: absolute;
    width: 1px !important;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }
  
  .past-perf-table tbody tr,
  .archive-table tbody tr {
    background: rgba(29, 5, 38, 0.45);
    border: 1px solid var(--color-border-glass);
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 2.2rem 2.5rem;
    box-shadow: var(--shadow-premium);
  }
  
  .past-perf-table td,
  .archive-table td {
    padding: 0.8rem 0;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  
  .past-perf-table td:nth-child(1),
  .archive-table td:nth-child(1) {
    font-size: 1.2rem;
    color: var(--color-gold-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .past-perf-table td:nth-child(2),
  .archive-table td:nth-child(2) {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
  }
  
  .past-perf-table td:nth-child(3),
  .archive-table td:nth-child(3) {
    justify-content: flex-start;
    margin-bottom: 1rem;
  }
  
  .past-perf-table td:nth-child(4),
  .archive-table td:nth-child(4) {
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .past-perf-table tbody tr:hover,
  .archive-table tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.05);
  }
  
  .view-story-btn {
    opacity: 1 !important;
    transform: none !important;
    display: inline-block;
  }

  .pagination-controls,
  .archive-pagination {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .pagination-controls button,
  .archive-pagination button {
    flex: 0 1 auto;
    padding: 1rem 1.4rem;
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  position: relative;
  overflow: hidden;
}

.contact-layout-section {
  padding: 8rem 0;
  background: var(--color-bg-darkest);
  position: relative;
  z-index: 1;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  align-items: start;
}

/* Glass Contact Form Styling */
.contact-form-glass {
  background: rgba(29, 5, 38, 0.45);
  border: 1px solid var(--color-border-glass);
  border-radius: 24px;
  padding: 5rem;
  box-shadow: var(--shadow-premium), 0 20px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  position: relative;
}

.contact-form-glass .form-group {
  margin-bottom: 2.5rem;
}

.contact-form-glass label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold-primary);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form-glass input,
.contact-form-glass textarea {
  width: 100%;
  background: rgba(18, 2, 24, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  font-size: 1.45rem;
  color: var(--color-text-light);
  font-family: var(--font-sans);
  transition: var(--transition-smooth);
}

.contact-form-glass input:focus,
.contact-form-glass textarea:focus {
  border-color: var(--color-gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  background: rgba(18, 2, 24, 0.7);
  outline: none;
}

.contact-form-glass textarea {
  resize: vertical;
  min-height: 150px;
}

/* Beautiful details card */
.contact-details-card {
  background: linear-gradient(135deg, rgba(29, 5, 38, 0.7) 0%, rgba(18, 2, 24, 0.9) 100%);
  border: 1.5px solid rgba(212, 175, 55, 0.2);
  border-radius: 30px;
  padding: 5rem 4rem;
  box-shadow: var(--shadow-premium), var(--shadow-gold-hover);
  position: relative;
  overflow: hidden;
}

.contact-details-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(217, 28, 92, 0.15) 0%, rgba(18, 2, 24, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.details-block {
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.details-block:last-child {
  margin-bottom: 0;
}

.details-block-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold-primary);
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}

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

.info-icon-circle svg {
  width: 18px;
  height: 18px;
}

.info-text-wrapper p {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.6;
}

.info-text-wrapper strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}

.info-text-wrapper a {
  color: var(--color-text-muted);
  transition: var(--transition-fast);
}

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

/* Social links in contact */
.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.contact-social-btn svg {
  width: 16px;
  height: 16px;
}

.contact-social-btn.instagram:hover {
  border-color: #d91c5c;
  background: rgba(217, 28, 92, 0.08);
  color: #ff5e97;
}

.contact-social-btn.youtube:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
  color: #ff6666;
}

/* Responsive contact grid overrides */
@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media (max-width: 768px) {
  .contact-form-glass {
    padding: 4rem 3rem;
  }
  .contact-details-card {
    padding: 4rem 3rem;
  }
}

@media (max-width: 480px) {
  .contact-form-glass {
    padding: 3rem 2rem;
  }
  .contact-social-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile overflow and alignment hardening */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.hero-container,
.hero-container-split,
.hero-container-center,
.grid > *,
.flex > * {
  min-width: 0;
}

.btn,
button,
input,
textarea,
select {
  max-width: 100%;
}

.btn {
  white-space: normal;
}

@media (max-width: 768px) {
  html {
    font-size: 58%;
  }

  body {
    position: relative;
  }

  .container,
  .hero-container,
  .hero-container-split,
  .hero-container-center {
    width: min(100% - 3.2rem, var(--container-max-width));
  }

  .section-padding {
    padding: 6rem 0;
  }

  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 5rem);
    padding-bottom: 7rem;
    background-attachment: scroll;
    overflow: hidden;
  }

  .hero-container-split {
    width: min(100% - 3.2rem, var(--container-max-width));
  }

  .hero-container-split .hero-heading,
  .hero-container-center .hero-heading,
  .hero-heading {
    font-size: clamp(3.4rem, 12vw, 4.6rem);
    overflow-wrap: anywhere;
  }

  .hero-container-center .hero-heading .font-script,
  .hero-heading .font-script {
    display: inline-block;
    font-size: 1.35em !important;
    margin: 0 0.2rem !important;
  }

  .hero-tag,
  .hero-container-center .hero-tag {
    letter-spacing: 0.22em;
    line-height: 1.5;
  }

  .hero-ctas,
  .hero-container-center .hero-ctas,
  .hero-container-split .hero-ctas,
  .classes-actions,
  .workshops-actions,
  .performances-actions,
  .rentals-actions,
  .henna-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .hero-container-center .hero-ctas .btn,
  .hero-container-split .hero-ctas .btn,
  .classes-actions .btn,
  .workshops-actions .btn,
  .performances-actions .btn,
  .rentals-actions .btn,
  .henna-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-highlight-bar {
    width: 100%;
    border-radius: 18px;
  }

  .hero-visual-glow {
    width: 100%;
    height: 100%;
  }

  .bg-chakra-overlay {
    width: min(72vw, 320px);
    height: min(72vw, 320px);
    margin-top: 0;
    margin-left: 0;
    transform: translate(-50%, -50%);
  }

  .bg-chakra-overlay.rotating {
    animation: slow-chakra-rotate 170s linear infinite;
  }

  .main-footer .bg-chakra-overlay {
    left: 50%;
    bottom: -44px;
    width: min(92vw, 380px);
    height: min(92vw, 380px);
    margin-left: 0;
    transform: translateX(-50%);
    background-position: center bottom;
    animation: none !important;
  }

  .about-section,
  .why-choose-section,
  .testimonials-section,
  .join-team-section,
  .contact-section,
  .classes-section,
  .workshops-section,
  .performances-section,
  .henna-section,
  .rentals-section,
  .events-section,
  .main-footer {
    overflow: hidden;
  }

  .visual-accent-card,
  .visual-accent-box,
  .visual-overlay-box,
  .visual-badge-overlay,
  .about-floating-card {
    max-width: calc(100% - 3rem);
  }

  .styled-image-container,
  .arch-frame,
  .showcase-visual,
  .classes-visual,
  .workshops-visual,
  .performances-visual,
  .henna-visual,
  .rentals-visual {
    width: 100%;
    max-width: 100%;
  }

  .visual-img,
  .about-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .form-row.grid-2-cols,
  .modal-form .grid-2-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-row {
    margin-bottom: 0;
  }
  .form-group {
    margin-bottom: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-container,
  .hero-container-split,
  .hero-container-center {
    width: min(100% - 2.4rem, var(--container-max-width));
  }

  .section-title,
  h2 {
    overflow-wrap: anywhere;
  }

  .hero-subheading,
  .section-desc,
  .section-subtitle,
  .contact-subtext {
    font-size: 1.55rem;
  }

  .hero-highlight-bar {
    gap: 1rem;
    padding: 1.2rem 1.4rem;
  }

  .booking-modal {
    width: min(100% - 2rem, 600px);
    max-height: calc(100vh - 2rem);
  }

  .about-veena-modal-card {
    width: min(100% - 2rem, 940px);
  }
}

/* Refinement pass: mobile pacing, hierarchy, and lighter visual density */
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 3.2rem;
  }

  .section-title,
  .hero-container-center .hero-heading,
  .hero-container-split .hero-heading {
    letter-spacing: 0;
  }

  .section-subtitle,
  .section-desc {
    line-height: 1.65;
  }

  .service-card,
  .service-card-new,
  .performance-list-card,
  .feature-item,
  .info-card-block,
  .join-grid-card,
  .event-card,
  .testimonial-slide,
  .testimonial-card-new,
  .contact-form-container,
  .contact-form-glass,
  .contact-details-card {
    border-radius: 14px;
  }

  .service-card,
  .performance-list-card,
  .info-card-block,
  .join-grid-card,
  .testimonial-slide,
  .testimonial-card-new {
    padding: 2.4rem;
  }

  .service-card-new {
    padding: 2rem 1.8rem 2.4rem;
    text-align: left;
    align-items: stretch;
  }

  .about-veena-modal-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .about-veena-modal-card {
    padding: 2.6rem 2rem;
  }

  .about-veena-modal-media img {
    min-height: 280px;
    max-height: 320px;
  }

  .service-image-box {
    width: calc(100% + 3.6rem);
    margin: -2rem -1.8rem 1.8rem;
    height: 180px;
  }

  .service-card-title,
  .card-title {
    font-size: 1.7rem;
    line-height: 1.35;
  }

  .service-card-desc,
  .card-desc {
    margin-bottom: 1.8rem;
  }

  .service-card-arrow-btn {
    align-self: flex-start;
  }

  .about-floating-card,
  .visual-accent-box,
  .visual-accent-card,
  .visual-accent-text-block,
  .visual-overlay-box,
  .visual-badge-overlay {
    position: relative;
    inset: auto;
    transform: none;
    margin: 1.6rem auto 0;
    width: 100%;
    max-width: 100%;
  }

  .event-card {
    align-items: flex-start;
    gap: 1.8rem;
  }

  .clients-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .clients-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem;
  }

  .client-logo-card {
    min-height: 11.2rem;
    padding: 1.8rem;
  }

  .client-directory-card {
    min-height: 21rem;
    padding: 1.8rem;
  }

  .event-details h3,
  .p-card-title {
    font-size: 2rem;
    line-height: 1.35;
  }

  .archive-controls-row,
  .archive-filters {
    width: 100%;
    flex-direction: column;
    align-items: stretch !important;
  }

  .archive-controls-row .search-input-wrap,
  .archive-controls-row .filter-dropdown-wrap,
  .archive-filters input,
  .archive-filters select {
    width: 100% !important;
    max-width: 100%;
  }

  .filter-dropdown-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .main-footer {
    padding-top: 5.5rem;
    padding-bottom: 3rem;
  }

  .main-footer .grid-4-cols {
    gap: 3rem;
  }

  .footer-col h4 {
    margin-bottom: 1.6rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 56%;
  }

  .section-padding {
    padding: 4.8rem 0;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 3.5rem);
    padding-bottom: 5.5rem;
  }

  .hero-subheading {
    margin-bottom: 2.8rem;
  }

  .hero-visual-right img {
    max-height: 300px;
  }

  .services-grid-new,
  .testimonials-grid-desktop {
    gap: 2rem;
  }

  .clients-logo-wall {
    grid-template-columns: 1fr;
  }

  .clients-directory-grid {
    grid-template-columns: 1fr;
  }

  .clients-hero-card {
    min-height: auto;
    padding: 2.2rem;
  }

  .clients-hero-number {
    font-size: 4.8rem;
  }

  .visual-img,
  .about-img,
  .hero-visual-right img {
    max-height: 340px;
  }

  .gallery-item {
    height: 220px;
  }

  .gallery-filters {
    gap: 0.8rem;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 0.8rem);
    min-height: 42px;
    padding: 0.9rem 1rem;
  }

  .contact-cta-banner-new {
    padding: 6rem 0;
  }

  .contact-cta-banner-new h2 {
    font-size: 3rem;
  }

  .contact-cta-banner-new p {
    font-size: 1.55rem;
  }

  .insta-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Contact page mobile polish */
@media (max-width: 768px) {
  .contact-hero.hero-section {
    min-height: auto !important;
    padding-top: 10rem !important;
    padding-bottom: 5rem !important;
  }

  .contact-hero .hero-container {
    width: min(100% - 3.2rem, 64rem);
  }

  .contact-hero .hero-decorative-divider {
    margin-bottom: 1.4rem !important;
  }

  .contact-hero .hero-tag {
    margin-bottom: 1.2rem !important;
  }

  .contact-hero .hero-heading {
    font-size: clamp(3.6rem, 12vw, 5rem) !important;
    line-height: 1.05;
    margin-bottom: 1.8rem !important;
    text-wrap: balance;
  }

  .contact-hero .hero-heading .font-script {
    display: block;
    font-size: 1.25em !important;
    line-height: 0.8 !important;
    margin: 0.2rem 0 0.4rem !important;
  }

  .contact-hero .hero-subheading {
    max-width: 34rem !important;
    font-size: 1.65rem;
    line-height: 1.62;
  }

  .contact-hero .shape-divider-bottom > svg {
    display: none;
  }

  .contact-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 5.5rem;
    background: linear-gradient(to bottom, rgba(18, 2, 24, 0), var(--color-bg-darkest));
    pointer-events: none;
    z-index: 4;
  }

  .contact-layout-section {
    padding: 3.6rem 0 6rem;
  }

  .contact-page-grid {
    gap: 2.4rem;
  }

  .contact-form-glass,
  .contact-details-card {
    padding: 2.6rem 2rem;
    border-radius: 14px;
  }

  .contact-form-glass .section-title {
    font-size: 2.8rem !important;
  }

  .contact-form-glass > p {
    margin-bottom: 2.6rem !important;
  }

  .contact-form-glass .form-row.grid-2-cols {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .contact-form-glass .form-group {
    margin-bottom: 1.8rem;
  }

  .contact-form-glass input,
  .contact-form-glass textarea {
    padding: 1.35rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .contact-hero.hero-section {
    padding-top: 10.6rem !important;
    padding-bottom: 4.2rem !important;
  }

  .contact-hero .hero-heading {
    font-size: clamp(3.3rem, 11vw, 4.2rem) !important;
  }

  .contact-hero .hero-subheading {
    max-width: 31rem !important;
  }

  .contact-layout-section {
    padding-top: 3.6rem;
  }

  .contact-form-glass,
  .contact-details-card {
    padding: 2.4rem 1.8rem;
  }
}

/* ==========================================================================
   12. Premium CTA Cards & Scroll Reveal Styles
   ========================================================================== */

.hero-cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin: 4.5rem auto 5.5rem;
  max-width: 950px;
  width: 100%;
  z-index: 5;
  position: relative;
}

.hero-cta-card {
  background: rgba(49, 15, 62, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 18px;
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217, 28, 92, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.cta-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
  flex-shrink: 0;
  color: var(--color-gold-primary);
}

.cta-card-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card-info {
  z-index: 1;
}

.cta-card-info h4 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-light);
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.cta-card-info p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 300;
  margin: 0;
  line-height: 1.35;
}

/* Hover states */
.hero-cta-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold-primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--shadow-gold-hover);
  background: rgba(49, 15, 62, 0.5);
}

.hero-cta-card:hover::before {
  opacity: 1;
}

.hero-cta-card:hover .cta-card-icon {
  background: var(--color-gold-gradient);
  color: var(--color-bg-darkest);
  border-color: var(--color-gold-primary);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.hero-cta-card:hover h4 {
  color: var(--color-gold-light);
}

/* Mobile Responsive for Hero CTA cards */
@media (max-width: 992px) {
  .hero-cta-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin: 3.5rem auto 4.5rem;
  }
}

/* Scroll Reveal Base Styles */
.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Delay utilities for sequential reveals */
.reveal-element:nth-child(2) { transition-delay: 0.15s; }
.reveal-element:nth-child(3) { transition-delay: 0.3s; }
.reveal-element:nth-child(4) { transition-delay: 0.45s; }

/* Hero particles canvas */
.hero-particles-canvas {
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Button shimmer styling */
.btn-shimmer-glow {
  mix-blend-mode: screen;
}

/* ==========================================================================
   25. Premium Feature Cards Redesign (Class Advantage & Henna Benchmark)
   ========================================================================== */

.feature-item {
  background: rgba(29, 5, 38, 0.45) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  padding: 3.5rem 2.5rem !important;
  border-radius: 16px !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease;
  height: 100%;
}

#why-choose-henna .feature-item {
  border-color: rgba(218, 44, 119, 0.15) !important;
}

.feature-item:hover {
  transform: translateY(-10px) !important;
  border-color: var(--color-gold-primary) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15) !important;
}

#why-choose-henna .feature-item:hover {
  border-color: var(--color-magenta) !important;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(218, 44, 119, 0.15) !important;
}

.feature-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-primary);
  margin-bottom: 2.5rem;
  transition: transform 0.4s ease, background 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-item:hover .feature-icon-wrapper {
  transform: scale(1.12) rotate(8deg);
  background: rgba(255, 255, 255, 0.08);
}

.feature-item h3 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
}

.feature-item p {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

/* Responsive alignment adjustments for grid-5-cols */
@media (min-width: 1025px) {
  .grid-5-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 2.5rem !important;
    align-items: stretch;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .grid-5-cols {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2.5rem !important;
  }
  
  .grid-5-cols .feature-item {
    flex: 1 1 280px !important;
    max-width: 340px !important;
  }
}

@media (max-width: 768px) {
  .grid-5-cols {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }
  
  .grid-5-cols .feature-item {
    width: 100% !important;
  }
}

/* WhatsApp Floating Button */
#whatsapp-floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

#whatsapp-floating-button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

#whatsapp-floating-button:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
  #whatsapp-floating-button {
    bottom: max(12px, env(safe-area-inset-bottom));
    right: 12px;
    width: 42px;
    height: 42px;
  }
}

/* WhatsApp Lead Modal */
.whatsapp-lead-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 2, 24, 0.62);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.whatsapp-lead-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.whatsapp-lead-modal-content {
  background:
    radial-gradient(circle at 12% 8%, rgba(251, 230, 158, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.98), rgba(250, 241, 223, 0.96));
  border: 1px solid rgba(212, 175, 55, 0.62);
  border-radius: 20px;
  width: 90%;
  max-width: 480px;
  padding: 3.5rem;
  position: relative;
  box-shadow:
    0 26px 75px rgba(18, 2, 24, 0.42),
    0 10px 28px rgba(126, 78, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  color: var(--color-text-dark);
}

.whatsapp-lead-modal-overlay.open .whatsapp-lead-modal-content {
  transform: translateY(0);
}

.whatsapp-lead-modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(18, 2, 24, 0.58);
  font-size: 3.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
  line-height: 1;
}

.whatsapp-lead-modal-close:hover {
  color: var(--color-magenta);
}

.whatsapp-lead-modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.whatsapp-modal-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.22);
}

.whatsapp-modal-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--color-bg-darkest);
  margin-bottom: 0.5rem;
}

.whatsapp-modal-subtitle {
  font-size: 1.3rem;
  color: #5f5066;
  line-height: 1.4;
}

.whatsapp-lead-modal-content .form-group {
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
}

.whatsapp-lead-modal-content label {
  font-size: 1.2rem;
  color: #9c7419;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
}

.whatsapp-lead-modal-content input,
.whatsapp-lead-modal-content textarea {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(145, 102, 21, 0.22);
  color: var(--color-text-dark);
  border-radius: 8px;
  padding: 1.2rem;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color-scheme: light;
}

.whatsapp-lead-modal-content input::placeholder,
.whatsapp-lead-modal-content textarea::placeholder {
  color: rgba(44, 27, 50, 0.48);
}

.whatsapp-lead-modal-content input:focus,
.whatsapp-lead-modal-content textarea:focus {
  outline: none;
  border-color: var(--color-gold-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.btn-wa-submit {
  width: 100%;
  padding: 1.4rem;
  background: linear-gradient(135deg, #2ee879, #19b957);
  color: white;
  border: none;
  border-radius: 999px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.28);
}

.btn-wa-submit:hover {
  background: linear-gradient(135deg, #35f082, #18aa50);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.36);
  transform: translateY(-2px);
}

.btn-wa-submit:active {
  transform: scale(0.98);
}

/* ==========================================================================
   27. Dance Style Detail Pages
   ========================================================================== */

.style-detail-page {
  background: var(--color-bg-darkest);
}

.style-card-link {
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.style-card-link:focus-visible {
  outline: 2px solid var(--color-gold-primary);
  outline-offset: 4px;
}

.style-detail-hero {
  min-height: 72vh;
  padding-top: 13rem;
  padding-bottom: 8rem;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.style-detail-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 2, 24, 0.9), rgba(42, 8, 56, 0.68), rgba(18, 2, 24, 0.34)),
    radial-gradient(circle at 16% 30%, rgba(212, 175, 55, 0.16), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.style-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 6rem;
  align-items: center;
}

.style-detail-copy {
  max-width: 760px;
}

.style-detail-copy .hero-heading {
  font-size: clamp(5rem, 5vw, 7.6rem);
}

.style-detail-visual {
  position: relative;
  border-radius: 180px 180px 16px 16px;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.style-detail-visual img {
  width: 100%;
  height: 48rem;
  object-fit: cover;
}

.style-detail-intro {
  background: var(--color-bg-cream);
  color: var(--color-text-cream-muted);
}

.style-detail-intro .section-title,
.style-detail-intro h3,
.style-detail-intro h4 {
  color: var(--color-text-dark);
}

.style-detail-intro .section-desc,
.style-detail-intro p {
  color: var(--color-text-cream-muted);
  font-weight: 400;
}

.style-detail-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}

.style-detail-pill {
  background: #fff;
  border: 1px solid rgba(217, 28, 92, 0.12);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(18, 2, 24, 0.04);
}

.style-detail-pill strong {
  display: block;
  color: var(--color-brand-pink);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.style-detail-cta {
  background:
    linear-gradient(135deg, rgba(42, 8, 56, 0.94), rgba(18, 2, 24, 0.98)),
    var(--color-bg-darkest);
}

.style-detail-actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

@media (max-width: 900px) {
  .style-detail-layout,
  .style-detail-pill-grid {
    grid-template-columns: 1fr;
  }

  .style-detail-visual {
    display: none;
  }

  .style-detail-copy {
    text-align: center;
    margin: 0 auto;
  }

  .style-detail-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .style-detail-hero {
    padding-top: 10.5rem;
    padding-bottom: 6rem;
  }
}

/* ==========================================================================
   26. Henna Page Light Editorial Redesign
   ========================================================================== */

.henna-page {
  --henna-cream: #fff8f1;
  --henna-blush: #fff0f5;
  --henna-rose: #d91c5c;
  --henna-plum: #2a0838;
  --henna-ink: #211026;
  --henna-muted: #715f78;
  --henna-border: rgba(217, 28, 92, 0.16);
  --henna-card-shadow: 0 18px 45px rgba(82, 32, 69, 0.1);
  background: var(--henna-cream);
}

.henna-page main {
  background:
    linear-gradient(180deg, var(--henna-cream) 0%, #ffffff 42%, var(--henna-blush) 100%);
}

.henna-page .henna-split-hero {
  background-image:
    linear-gradient(90deg, rgba(42, 8, 56, 0.92) 0%, rgba(42, 8, 56, 0.72) 46%, rgba(42, 8, 56, 0.38) 100%),
    linear-gradient(to bottom, rgba(42, 8, 56, 0.34), rgba(42, 8, 56, 0.7)),
    url('assets/images/ElegantMehndi.png');
  background-position: center right;
  background-blend-mode: normal, multiply, normal;
  border-bottom: 0;
  overflow: hidden;
}

.henna-page .henna-split-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(212, 175, 55, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(217, 28, 92, 0.16), transparent 28%);
  pointer-events: none;
  z-index: -1;
}

.henna-page .henna-split-hero .bg-chakra-overlay {
  left: 18%;
  width: 42vw;
  height: 42vw;
  opacity: 0.2;
}

.henna-page .henna-amp {
  color: var(--color-brand-pink);
  font-size: 7.5rem;
  margin: 0 1rem;
  vertical-align: middle;
}

.henna-hero-visual {
  position: relative;
  width: 100%;
  min-height: 48rem;
  isolation: isolate;
}

.henna-hero-visual::before {
  content: '';
  position: absolute;
  inset: 8% -4% 5% 12%;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 180px 180px 18px 18px;
  background: linear-gradient(145deg, rgba(217, 28, 92, 0.14), rgba(212, 175, 55, 0.08));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  z-index: -1;
}

.henna-hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1.5px solid rgba(212, 175, 55, 0.62);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.32);
}

.henna-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.henna-hero-photo-main {
  top: 0;
  right: 0;
  width: min(88%, 43rem);
  height: 46rem;
  border-radius: 180px 180px 18px 18px;
}

.henna-hero-photo-small {
  left: 0;
  bottom: 3.5rem;
  width: 18rem;
  height: 22rem;
  border-radius: 90px 90px 12px 12px;
}

.henna-hero-note {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  padding: 1.3rem 1.6rem;
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.94);
  border: 1px solid rgba(212, 175, 55, 0.32);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  color: var(--henna-ink);
}

.henna-hero-note span,
.henna-hero-note strong {
  display: block;
}

.henna-hero-note span {
  color: var(--henna-rose);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.henna-hero-note strong {
  margin-top: 0.2rem;
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.1;
}

.henna-page .shape-divider-bottom .shape-fill {
  fill: var(--henna-cream);
}

.henna-page .cream-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 241, 0.98)),
    var(--henna-cream);
  color: var(--henna-muted);
}

.henna-page .cream-section .section-title,
.henna-page .cream-section h2,
.henna-page .cream-section h3,
.henna-page .cream-section h4,
.henna-page .cream-section .card-title {
  color: var(--henna-ink);
  -webkit-text-fill-color: initial;
  background: none;
}

.henna-page .cream-section .section-desc,
.henna-page .cream-section .section-subtitle,
.henna-page .cream-section .section-desc-small,
.henna-page .cream-section .card-desc,
.henna-page .cream-section p {
  color: var(--henna-muted);
}

.henna-page .section-label {
  color: var(--henna-rose);
}

.henna-page .section-label::after {
  background-color: var(--henna-rose);
}

.henna-page .ornate-separator {
  opacity: 0.84;
}

.henna-page .henna-intro-section {
  position: relative;
  padding-top: 8rem;
}

/* Manifesto block — premium brand statement */
.henna-manifesto-block {
  margin-top: 1rem;
  padding: 3.5rem 4rem 3rem;
  background: linear-gradient(135deg, rgba(255, 248, 241, 0.6), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-left: 4px solid var(--henna-rose);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 8px 32px rgba(82, 32, 69, 0.08), 0 2px 8px rgba(212, 175, 55, 0.1);
  position: relative;
  text-align: left;
}

.manifesto-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.manifesto-ornament svg {
  width: 80px;
  height: 28px;
  display: block;
  margin: 0 auto;
}

.henna-manifesto-quote {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  line-height: 1.75;
  color: var(--henna-ink);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 2.5rem;
  position: relative;
  quotes: none;
}

.henna-manifesto-quote strong {
  font-style: normal;
  font-weight: 600;
  color: var(--henna-rose);
  -webkit-text-fill-color: var(--henna-rose);
}

.henna-manifesto-quote em {
  color: var(--henna-ink);
  font-weight: 600;
  font-style: italic;
  opacity: 0.85;
}

.manifesto-attributes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.manifesto-attr {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #715f78;
  -webkit-text-fill-color: initial;
}

.attr-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--henna-rose);
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(217, 28, 92, 0.5);
}

.henna-page .henna-intro-section::before,
.henna-page .henna-prep-section::before,
.henna-page .henna-contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(217, 28, 92, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 70%);
  pointer-events: none;
}

.henna-page .henna-artist-section,
.henna-page .henna-benchmark-section,
.henna-page .henna-events-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(42, 8, 56, 0.94), rgba(85, 13, 62, 0.9)),
    var(--henna-plum);
  overflow: hidden;
}

.henna-page .henna-artist-section::after,
.henna-page .henna-benchmark-section::after,
.henna-page .henna-events-section::after {
  content: '';
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 22rem;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.14), transparent 66%);
  pointer-events: none;
}

.henna-page .henna-services-section .service-card {
  background: #ffffff;
  border: 1px solid var(--henna-border);
  border-radius: 12px;
  box-shadow: var(--henna-card-shadow);
}

.henna-page .henna-services-section .service-card:hover {
  border-color: var(--card-theme, var(--henna-rose));
  box-shadow: 0 22px 55px rgba(82, 32, 69, 0.14), 0 0 0 1px rgba(212, 175, 55, 0.18);
}

.henna-page .henna-services-section .card-body {
  background: linear-gradient(180deg, #ffffff, #fff9f3);
}

.henna-page .henna-services-section .btn-text {
  color: var(--henna-rose);
}

.henna-page .henna-services-section .btn-text:hover {
  color: var(--color-gold-dark);
}

.henna-page .henna-benchmark-section .feature-item {
  background: rgba(255, 248, 241, 0.09) !important;
  border-color: rgba(255, 240, 245, 0.18) !important;
}

.henna-page .henna-styles-section .style-showcase-item {
  background: #ffffff;
  border: 1px solid var(--henna-border);
  border-left: 4px solid var(--henna-rose);
  border-radius: 10px;
  padding: 2rem 2.2rem;
  box-shadow: 0 12px 30px rgba(82, 32, 69, 0.06);
}

.henna-page .henna-styles-section .style-showcase-item h4 {
  color: var(--henna-rose);
}

.henna-page .henna-styles-section .style-showcase-item p {
  color: var(--henna-muted);
}

/* Henna Medium Cards Redesign */
.henna-page .medium-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--henna-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(82, 32, 69, 0.06);
  transition: var(--transition-smooth);
}

.henna-page .medium-card:hover {
  transform: translateY(-8px);
  border-color: var(--henna-rose);
  box-shadow: 0 20px 40px rgba(82, 32, 69, 0.14);
}

.henna-page .medium-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.henna-page .medium-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.henna-page .medium-card:hover .medium-card-img {
  transform: scale(1.06);
}

.henna-page .medium-card-content {
  padding: 2.5rem 2.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.henna-page .medium-card-content h3 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--henna-rose);
  margin-bottom: 0.5rem;
}

.henna-page .medium-card-content p {
  font-size: 1.45rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--henna-muted);
}

.henna-page .henna-styles-section .styled-image-container,
.henna-page .henna-destination-section .styled-image-container {
  box-shadow: var(--henna-card-shadow);
}

.henna-page .henna-prep-section {
  position: relative;
  background:
    linear-gradient(180deg, #fff8f1 0%, #fff0f5 100%);
  color: var(--henna-muted);
}

.henna-page .henna-prep-section .section-title,
.henna-page .henna-prep-section .info-card-title {
  color: var(--henna-ink);
}

.henna-page .henna-prep-section .section-subtitle {
  color: var(--henna-muted);
}

.henna-page .henna-prep-section .info-card-block {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--henna-border);
  box-shadow: var(--henna-card-shadow);
  border-radius: 12px;
}

.henna-page .henna-prep-section .info-card-title {
  border-bottom-color: rgba(217, 28, 92, 0.14);
}

.henna-page .henna-prep-section .info-card-list li,
.henna-page .henna-prep-section .info-card-list li strong {
  color: var(--henna-muted);
}

.henna-page .henna-prep-section .info-card-list li strong {
  color: var(--henna-ink);
}

.henna-page .henna-destination-section .visual-accent-card,
.henna-page .henna-contact-section .contact-form-container,
.henna-page .henna-contact-section .contact-item,
.henna-page .henna-events-section .join-grid-card {
  border-radius: 12px;
}

.henna-page .henna-destination-section .visual-accent-card,
.henna-page .henna-contact-section .contact-form-container {
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--henna-border) !important;
  box-shadow: var(--henna-card-shadow);
}

.henna-page .henna-destination-section .visual-accent-card p,
.henna-page .henna-contact-section .contact-form-container,
.henna-page .henna-contact-section .form-group label,
.henna-page .henna-contact-section .form-title {
  color: var(--henna-ink);
}

.henna-page .henna-contact-section input,
.henna-page .henna-contact-section select,
.henna-page .henna-contact-section textarea {
  background: #fffaf6;
  border: 1px solid rgba(217, 28, 92, 0.16);
  color: var(--henna-ink);
}

.henna-page .henna-contact-section input:focus,
.henna-page .henna-contact-section select:focus,
.henna-page .henna-contact-section textarea:focus {
  border-color: var(--henna-rose);
  box-shadow: 0 0 0 3px rgba(217, 28, 92, 0.08);
}

.henna-page .henna-events-section .style-tag {
  background: rgba(255, 248, 241, 0.08);
  border-color: rgba(255, 240, 245, 0.16);
}

.henna-page .henna-events-section .join-grid-card {
  background: rgba(255, 248, 241, 0.08);
}

/* International Experience Section Styles */
.henna-page .henna-international-section {
  position: relative;
  background: var(--henna-cream);
  color: var(--henna-muted);
}

.henna-page .henna-culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.henna-page .culture-card {
  background: #ffffff;
  border: 1px solid var(--henna-border);
  border-radius: 16px;
  padding: 3rem 2.4rem;
  box-shadow: var(--henna-card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.henna-page .culture-card:hover {
  transform: translateY(-5px);
  border-color: var(--henna-rose);
  box-shadow: 0 22px 55px rgba(82, 32, 69, 0.12), 0 0 0 1px rgba(217, 28, 92, 0.1);
}

.henna-page .culture-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(217, 28, 92, 0.06);
  color: var(--henna-rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.henna-page .culture-card:hover .culture-icon-wrap {
  background: var(--color-brand-pink-gradient);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(217, 28, 92, 0.3);
}

.henna-page .culture-card h3 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--henna-ink);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.henna-page .culture-desc {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--henna-muted);
  margin-bottom: 0;
}

.henna-page .culture-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(217, 28, 92, 0.1);
  width: 100%;
}

.henna-page .culture-tag {
  display: inline-flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--henna-rose);
  background: rgba(217, 28, 92, 0.05);
  border: 1px solid rgba(217, 28, 92, 0.14);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  line-height: 1.3;
  transition: var(--transition-smooth);
}

.henna-page .culture-tag:hover {
  background: rgba(217, 28, 92, 0.12);
  border-color: var(--henna-rose);
  transform: translateY(-1px);
}

.henna-page .international-venues-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: #ffffff;
  border: 1px solid var(--henna-border);
  border-radius: 16px;
  padding: 4rem;
  box-shadow: var(--henna-card-shadow);
  margin-top: 4rem;
  align-items: center;
}

.henna-page .venues-info h3 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--henna-ink);
  margin-bottom: 1.5rem;
  text-align: center;
}

.henna-page .venues-info p {
  max-width: 800px;
  margin: 0 auto 2.5rem;
  text-align: center;
  line-height: 1.7;
}

.henna-page .henna-client-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2.4rem;
  padding-top: 2.5rem;
  border-top: 1px dashed var(--henna-border);
}

.henna-page .henna-client-strip span {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--henna-muted);
  position: relative;
}

.henna-page .henna-client-strip span::after {
  content: '•';
  position: absolute;
  right: -1.4rem;
  color: var(--henna-rose);
}

.henna-page .henna-client-strip span:last-child::after {
  display: none;
}

@media (max-width: 992px) {
  .henna-page .henna-culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .henna-page .henna-culture-grid {
    grid-template-columns: 1fr;
  }
  .henna-page .international-venues-block {
    padding: 3rem 2rem;
  }
  .henna-page .henna-client-strip {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
  .henna-page .henna-client-strip span::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .henna-hero-visual {
    display: none;
  }

  .henna-page .henna-split-hero .bg-chakra-overlay {
    left: 50%;
    width: min(92vw, 360px);
    height: min(92vw, 360px);
    opacity: 0.24;
  }

  .henna-page .henna-amp {
    font-size: 1.25em !important;
    margin: 0 0.25rem !important;
  }

  .henna-page .henna-services-section .service-card {
    padding: 0;
  }

  .henna-page .henna-styles-section .style-showcase-item {
    padding: 1.8rem;
  }
}

/* ==========================================================================
   VDance Premium Cinematic First-Visit Intro overlay styling
   ========================================================================== */

html.vdance-intro-active body {
  overflow: hidden !important;
}

.vdance-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 1.5s ease, clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  clip-path: circle(120% at 50% 50%);
  will-change: clip-path, background-color;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.intro-content {
  position: relative;
  width: 400px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.intro-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  pointer-events: none;
  z-index: 2;
}

.intro-svg-path {
  stroke: url(#introGoldGradient);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  filter: drop-shadow(0 0 7px rgba(212, 175, 55, 0.45));
}

.intro-brand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.intro-logo-wrapper {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  opacity: 0;
  will-change: opacity;
}

.intro-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.intro-text {
  opacity: 0;
  transform: translateY(15px);
  will-change: opacity, transform;
}

.intro-title {
  font-family: var(--font-script);
  font-size: 5rem;
  color: var(--color-gold-primary);
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.intro-subtitle {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.85;
}

/* Mandala Fragments for Burst */
.intro-mandala-burst {
  position: absolute;
  top: 200px; /* center of 400px height SVG */
  left: 50%;
  width: 0;
  height: 0;
  z-index: 4;
}

.intro-petal {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.intro-petal svg {
  width: 100%;
  height: 100%;
}

/* Skip Button */
.intro-skip-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 10px 20px;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.intro-skip-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--color-gold-primary);
  color: #ffffff;
  opacity: 1;
}

/* Reveal wipe active */
.vdance-intro-overlay.reveal-active {
  clip-path: circle(0% at 50% 50%);
}

/* Skip override */
.vdance-intro-overlay.intro-skipping {
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease-out !important;
  clip-path: circle(0% at 50% 50%) !important;
  opacity: 0 !important;
}

/* Post-reveal CSS enhancements */
.intro-post-glow {
  animation: introHeroGlow 2s ease-out;
}

@keyframes introHeroGlow {
  0% {
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.4);
    filter: brightness(1.15);
  }
  100% {
    box-shadow: inset 0 0 0px rgba(212, 175, 55, 0);
    filter: brightness(1);
  }
}

.intro-shimmer {
  position: relative;
  overflow: hidden !important;
}

.intro-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: singleIntroShimmer 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes singleIntroShimmer {
  0% {
    left: -60%;
  }
  100% {
    left: 140%;
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  #vdance-intro {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  html.vdance-intro-active body {
    overflow: auto !important;
  }
}

/* Responsive Scaling for Mobile */
@media (max-width: 480px) {
  .intro-content {
    width: 320px;
    height: 370px;
  }
  .intro-svg {
    width: 320px;
    height: 320px;
  }
  .intro-logo-wrapper {
    height: 90px;
    margin-bottom: 15px;
  }
  .intro-title {
    font-size: 4rem;
  }
  .intro-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
  }
  .intro-mandala-burst {
    top: 160px;
  }
  .intro-skip-btn {
    bottom: 25px;
    right: 25px;
    padding: 8px 16px;
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   VDance Premium Glassmorphic Music Player
   ========================================================================== */

.premium-music-player {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9998;
  background: rgba(29, 5, 38, 0.76);
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  border: 1px solid rgba(212, 175, 55, 0.38);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  padding: 10px 18px 10px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease-out;
  transform: translateY(0);
  opacity: 1;
}

.premium-music-player.hidden {
  transform: translateY(45px);
  opacity: 0;
  pointer-events: none;
}

/* Equalizer animation when playing */
.player-visual-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 20px;
  height: 20px;
  padding-bottom: 2px;
}

.player-visual-equalizer span {
  width: 2px;
  height: 3px;
  background-color: var(--color-gold-primary);
  border-radius: 2px;
  transition: height 0.3s ease;
}

.premium-music-player.playing .player-visual-equalizer span {
  animation: eqPulse 1.2s ease-in-out infinite alternate;
}

.premium-music-player.playing .player-visual-equalizer span:nth-child(1) { animation-delay: 0.1s; }
.premium-music-player.playing .player-visual-equalizer span:nth-child(2) { animation-delay: 0.4s; }
.premium-music-player.playing .player-visual-equalizer span:nth-child(3) { animation-delay: 0.2s; }
.premium-music-player.playing .player-visual-equalizer span:nth-child(4) { animation-delay: 0.6s; }

@keyframes eqPulse {
  0% { height: 3px; }
  100% { height: 16px; }
}

.player-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.player-title {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
}

.player-status {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

.premium-music-player.playing .player-status {
  color: var(--color-gold-primary);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  height: 20px;
}

.player-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.player-btn:hover {
  color: #ffffff;
}

.btn-play-pause {
  width: 26px;
  height: 26px;
  background: rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--color-gold-primary);
  padding: 0;
}

.btn-play-pause:hover {
  background: var(--color-gold-primary);
  color: #120218;
  border-color: var(--color-gold-primary);
}

.btn-close {
  font-size: 1.8rem;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  padding: 0;
  line-height: 1;
}

.btn-close:hover {
  opacity: 1;
  color: var(--color-magenta);
}

/* Responsive adjust for mobile */
@media (max-width: 480px) {
  .premium-music-player {
    bottom: 20px;
    left: 20px;
  }
}

/* Custom mobile overrides for about section background mandala */
@media (max-width: 991px) {
  .about-section .bg-chakra-overlay {
    left: 50% !important;
    top: calc(10rem + 240px) !important; /* Centers behind 480px image */
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 768px) {
  .about-section .bg-chakra-overlay {
    left: 50% !important;
    top: calc(6rem + 210px) !important; /* Centers behind 420px image */
    transform: translate(-50%, -50%) !important;
  }
}

@media (max-width: 480px) {
  .about-section .bg-chakra-overlay {
    left: 50% !important;
    top: calc(4.8rem + 170px) !important; /* Centers behind 340px image */
    transform: translate(-50%, -50%) !important;
  }
}

/* Responsive adaptation layer
   Keeps the visual system fluid between large monitors, laptops, tablets, and phones. */
:root {
  --fluid-page-gutter: clamp(2.4rem, 5vw, 8.8rem);
  --fluid-section-y: clamp(5.6rem, 7vw, 10rem);
  --fluid-section-y-tight: clamp(4rem, 5vw, 7.2rem);
  --fluid-grid-gap: clamp(1.8rem, 2.4vw, 3.6rem);
  --fluid-card-pad: clamp(2rem, 2.6vw, 3.6rem);
  --fluid-container-max: 128rem;
}

body {
  font-size: clamp(1.5rem, 0.18vw + 1.42rem, 1.7rem);
}

.container,
.hero-container,
.hero-container-center {
  width: min(100% - var(--fluid-page-gutter), var(--fluid-container-max));
}

.section-padding {
  padding-top: var(--fluid-section-y);
  padding-bottom: var(--fluid-section-y);
}

.section-header {
  margin-bottom: clamp(3.2rem, 5vw, 6rem);
}

h1,
.hero-heading,
.hero-container-center .hero-heading,
.split-hero-content .hero-heading {
  font-size: clamp(3.8rem, 5vw, 6.2rem);
  line-height: 1.04;
}

h2,
.section-title {
  font-size: clamp(3.2rem, 3.7vw, 4.8rem);
  line-height: 1.08;
}

h3,
.card-title,
.event-card-title,
.service-card-new h3 {
  font-size: clamp(2rem, 1.3vw + 1.45rem, 2.8rem);
  line-height: 1.16;
}

.section-desc,
.section-subtitle,
.hero-subheading,
.hero-container-center .hero-subheading,
.split-hero-content .hero-subheading {
  font-size: clamp(1.55rem, 0.45vw + 1.35rem, 1.9rem);
  line-height: 1.7;
}

.btn,
button.btn,
.filter-btn {
  min-height: clamp(4.4rem, 3vw, 5.4rem);
  padding: clamp(1.1rem, 1vw, 1.5rem) clamp(1.8rem, 2.2vw, 3.5rem);
  font-size: clamp(1.25rem, 0.25vw + 1.15rem, 1.45rem);
}

.grid,
.services-grid-new,
.clients-directory-grid,
.henna-page .henna-culture-grid,
.henna-page .henna-services-section .grid,
.performance-grid,
.events-grid {
  gap: var(--fluid-grid-gap);
}

.grid-2-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3-cols {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
}

.grid-4-cols,
.grid-5-cols {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.services-grid-new,
.clients-directory-grid,
.gallery-grid,
.henna-services-grid,
.clients-logo-wall,
.henna-page .henna-culture-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.clients-logo-wall {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}

.medium-card-img-wrap,
.service-card-new .card-image,
.event-card-image,
.style-card-image {
  height: clamp(20rem, 20vw, 30rem);
}

.service-card-new,
.event-card,
.join-grid-card,
.medium-card,
.clients-hero-card,
.clients-directory-card,
.contact-form-glass,
.visual-accent-card,
.info-card-block {
  padding: var(--fluid-card-pad);
}

.about-section.cream-section .container,
.classes-content,
.workshops-content,
.performances-content,
.rentals-content,
.contact-content,
.international-venues-block {
  gap: clamp(3.2rem, 5vw, 6.4rem);
}

.arch-frame,
.styled-image-container,
.showcase-visual,
.classes-visual,
.workshops-visual,
.performances-visual,
.henna-visual,
.rentals-visual {
  max-width: 100%;
}

.visual-img,
.about-img,
.hero-visual-right img {
  max-height: clamp(32rem, 42vw, 56rem);
  object-fit: cover;
}

.hero-section:not(.home-hero) {
  min-height: clamp(56rem, 78svh, 82rem);
}

.hero-container-center {
  max-width: min(82rem, 100%);
}

.performances-split-hero,
.classes-split-hero,
.henna-split-hero {
  min-height: clamp(58rem, 78svh, 82rem);
}

@media (min-width: 1600px) {
  :root {
    --fluid-container-max: 136rem;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  :root {
    --fluid-page-gutter: clamp(3.2rem, 4.5vw, 6.4rem);
    --fluid-section-y: clamp(5.2rem, 6vw, 8rem);
  }

  .header-nav .container {
    width: min(100% - 4rem, 118rem);
  }

  .nav-menu {
    gap: clamp(1.2rem, 1.8vw, 2.2rem);
  }

  .nav-link,
  .nav-btn {
    font-size: 1.2rem;
  }

  #hero.home-hero .hero-container-split {
    width: min(92%, 126rem);
    max-width: 126rem;
  }

  #hero.home-hero .hero-content {
    width: min(100%, 46rem);
    max-width: 46rem;
    padding: clamp(2.6rem, 3vw, 3.6rem);
  }

  #hero.home-hero .hero-heading {
    font-size: clamp(4rem, 4.3vw, 5.5rem) !important;
  }

  #hero.home-hero .hero-heading-energy {
    font-size: clamp(5.8rem, 6vw, 7.6rem);
  }

  #hero.home-hero .hero-heading-of {
    font-size: clamp(4.4rem, 4.8vw, 5.8rem) !important;
  }

  #hero.home-hero .hero-subheading {
    font-size: 1.52rem;
    margin-bottom: 2.4rem;
  }

  .hero-section:not(.home-hero) {
    min-height: clamp(52rem, 72svh, 72rem);
  }

  .hero-section:not(.home-hero) .hero-heading,
  .hero-container-split .hero-heading,
  .hero-container-center .hero-heading {
    font-size: clamp(4rem, 4.2vw, 5.2rem) !important;
    line-height: 1.04 !important;
  }

  .hero-section:not(.home-hero) .hero-heading-energy {
    font-size: clamp(5rem, 5.5vw, 6.4rem) !important;
  }

  .hero-section:not(.home-hero) .hero-heading-of {
    font-size: clamp(4.4rem, 4.8vw, 5.8rem) !important;
  }

  .hero-section:not(.home-hero) .hero-subheading {
    font-size: clamp(1.48rem, 0.45vw + 1.25rem, 1.68rem) !important;
    margin-bottom: clamp(2rem, 3vw, 3rem) !important;
  }

  .section-title {
    max-width: 92rem;
  }

  .clients-logo-wall,
  .clients-directory-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  }

  .contact-hero.hero-section {
    min-height: auto !important;
    padding-top: calc(var(--header-height) + 5rem) !important;
    padding-bottom: 6rem !important;
  }

  .contact-hero .hero-container-split,
  .contact-hero .hero-container {
    width: min(100% - 6rem, 86rem) !important;
  }

  .contact-hero .hero-subheading {
    max-width: 70rem !important;
    margin-bottom: 2.2rem !important;
  }

  .contact-hero-badges {
    display: none !important;
  }

  .contact-hero-metrics {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .grid-2-cols,
  .about-section.cream-section .container,
  .classes-content,
  .workshops-content,
  .performances-content,
  .rentals-content,
  .contact-content,
  .international-venues-block {
    grid-template-columns: 1fr;
  }

  .visual-accent-card,
  .about-floating-card {
    max-width: min(100%, 42rem);
  }

  .clients-directory-toolbar,
  .events-toolbar,
  .gallery-filters {
    flex-wrap: wrap;
  }

  .contact-hero.hero-section {
    min-height: auto !important;
    padding-top: calc(var(--header-height) + 4rem) !important;
    padding-bottom: 5.5rem !important;
  }

  .contact-hero .hero-container-split,
  .contact-hero .hero-container {
    width: min(100% - 4rem, 72rem) !important;
  }

  .contact-hero .hero-subheading {
    max-width: 62rem !important;
    font-size: clamp(1.48rem, 0.5vw + 1.28rem, 1.62rem) !important;
    margin-bottom: 2rem !important;
  }

  .contact-hero-badges {
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0 !important;
  }

  .contact-hero-badges span {
    padding: 0.7rem 1.1rem;
    font-size: 1.15rem;
  }

  .contact-hero-metrics {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .container,
  .hero-container,
  .hero-container-center {
    width: min(100% - clamp(2.8rem, 5vw, 4.8rem), var(--fluid-container-max));
  }

  .section-padding {
    padding-top: clamp(4.8rem, 8vw, 7rem);
    padding-bottom: clamp(4.8rem, 8vw, 7rem);
  }

  .hero-section:not(.home-hero),
  .performances-split-hero,
  .classes-split-hero,
  .henna-split-hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + clamp(4rem, 6vw, 6rem));
    padding-bottom: clamp(5rem, 8vw, 7rem);
  }

  .hero-container-center .hero-heading,
  .split-hero-content .hero-heading {
    font-size: clamp(3.6rem, 7vw, 5rem) !important;
  }

  .hero-section:not(.home-hero) .hero-heading,
  .hero-container-split .hero-heading {
    font-size: clamp(3.6rem, 7vw, 4.8rem) !important;
  }

  .hero-section:not(.home-hero) .hero-heading-energy {
    font-size: clamp(4.8rem, 10vw, 6.2rem) !important;
  }

  .hero-section:not(.home-hero) .hero-heading-of {
    font-size: clamp(4rem, 8vw, 5.2rem) !important;
  }

  .hero-container-center .hero-subheading,
  .split-hero-content .hero-subheading {
    max-width: 64rem;
  }

  .clients-logo-wall {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  }
}

@media (max-width: 768px) {
  .contact-hero.hero-section {
    padding-top: calc(var(--header-height) + 2.8rem) !important;
    padding-bottom: 5rem !important;
  }

  .contact-hero .hero-container {
    width: min(100% - 3.2rem, 58rem) !important;
  }

  .contact-hero .hero-heading {
    font-size: clamp(3.2rem, 10vw, 4.4rem) !important;
  }

  .contact-hero .hero-subheading {
    max-width: 46rem !important;
    font-size: clamp(1.45rem, 3.8vw, 1.62rem) !important;
    margin-bottom: 2rem !important;
  }

  .contact-hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem !important;
  }

  .contact-hero-badges span {
    font-size: 1.15rem;
    padding: 0.65rem 1rem;
  }

  .contact-hero-metrics {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .contact-metric-card {
    padding: 1.2rem 1.4rem !important;
  }
}

@media (max-width: 480px) {
  .contact-hero.hero-section {
    padding-top: calc(var(--header-height) + 2rem) !important;
    padding-bottom: 4rem !important;
  }

  .contact-hero .hero-ganesha-mark,
  .contact-hero .hero-decorative-divider {
    display: none;
  }

  .contact-hero .hero-subheading {
    max-width: 33rem !important;
    font-size: 1.45rem !important;
  }

  .contact-hero-badges {
    display: none !important;
  }
}

@media (max-width: 768px) {
  h1,
  .hero-heading,
  .hero-container-center .hero-heading,
  .split-hero-content .hero-heading {
    font-size: clamp(3.4rem, 11vw, 4.8rem);
  }

  h2,
  .section-title {
    font-size: clamp(2.8rem, 8.5vw, 4rem);
  }

  .section-header {
    margin-bottom: clamp(2.8rem, 8vw, 4rem);
  }

  .section-desc,
  .section-subtitle {
    text-wrap: pretty;
  }

  .service-card-new,
  .event-card,
  .join-grid-card,
  .medium-card,
  .clients-hero-card,
  .clients-directory-card,
  .contact-form-glass {
    padding: clamp(1.8rem, 6vw, 2.6rem);
  }

  .gallery-item,
  .medium-card-img-wrap,
  .event-card-image {
    height: clamp(18rem, 58vw, 26rem);
  }
}

@media (max-width: 420px) {
  .container,
  .hero-container,
  .hero-container-center {
    width: min(100% - 2.4rem, var(--fluid-container-max));
  }

  .btn,
  button.btn,
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .section-label,
  .hero-tag {
    letter-spacing: 0.18em;
  }

  .clients-logo-wall,
  .clients-directory-grid,
  .gallery-grid,
  .services-grid-new,
  .henna-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Shared premium hero treatment for inner pages */
#hero.premium-hero:not(.home-hero) {
  min-height: 100vh;
  min-height: 100svh;
  padding-top: var(--header-height);
  padding-bottom: 0;
  overflow: hidden;
  isolation: isolate;
  background-color: #1A0128 !important;
}

#hero.premium-hero:not(.home-hero) .hero-bg-slide {
  background-position: center center;
  filter: saturate(1.12) contrast(1.04) brightness(1.04);
}

#hero.premium-hero:not(.home-hero) .hero-bg-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0) 50%, rgba(7, 0, 12, 0.28) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.24) 100%) !important;
  opacity: 1 !important;
  z-index: 1;
}

#hero.premium-hero:not(.home-hero) .hero-glow {
  display: none;
}

#hero.premium-hero:not(.home-hero) .bg-chakra-overlay {
  opacity: 0.08;
  z-index: 2;
}

#hero.premium-hero:not(.home-hero) .hero-container,
#hero.premium-hero:not(.home-hero) .hero-container-split,
#hero.premium-hero:not(.home-hero) .hero-container-center {
  position: relative;
  z-index: 5;
  width: min(90%, 145rem);
  max-width: 145rem;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(5rem, 7vh, 8rem) 0 clamp(7rem, 9vh, 10rem);
  margin-left: auto;
  margin-right: auto;
}

#hero.premium-hero:not(.home-hero) .hero-content {
  width: min(100%, 58rem);
  max-width: 58rem;
  padding: clamp(2.4rem, 3.2vw, 3.6rem);
  text-align: left;
  background: rgba(20, 10, 30, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeInScale 0.9s ease-out both;
}

#hero.premium-hero:not(.home-hero) .hero-ganesha-mark {
  width: 72px;
  height: 72px;
  margin: 0 0 0.6rem;
  animation: float 4s ease-in-out infinite;
}

#hero.premium-hero:not(.home-hero) .hero-ganesha-mark img {
  width: 62px;
  height: 62px;
}

#hero.premium-hero:not(.home-hero) .hero-pre-title {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(2.2rem, 2vw, 3.2rem);
  line-height: 1;
}

#hero.premium-hero:not(.home-hero) .hero-divider-svg {
  width: 16rem;
  margin-bottom: 1.2rem;
}

#hero.premium-hero:not(.home-hero) .hero-tag {
  display: block;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 0.7vw, 1.25rem);
  letter-spacing: 0.34em;
  line-height: 1.3;
}

#hero.premium-hero:not(.home-hero) .hero-heading {
  max-width: 46rem;
  margin-bottom: 1.4rem !important;
  color: #ffffff !important;
  font-size: clamp(3.2rem, 3.6vw, 4.4rem) !important;
  line-height: 0.98 !important;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.28);
  animation: fadeInUp 1s ease-out 0.15s both;
}

#hero.premium-hero:not(.home-hero) .hero-heading-energy {
  display: block;
  margin: 0 0 0.25rem;
  font-size: clamp(4.2rem, 4.8vw, 5.8rem);
  line-height: 0.86;
  background: linear-gradient(135deg, #fbf5b7 0%, #d4af37 48%, #b38728 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

#hero.premium-hero:not(.home-hero) .hero-heading-of {
  margin: 0 0.7rem 0 0.2rem;
  color: #f6d8e8 !important;
  font-size: clamp(3.2rem, 3.8vw, 4.6rem) !important;
  font-weight: 400;
  text-transform: none;
}

#hero.premium-hero:not(.home-hero) .hero-subheading {
  max-width: 41rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.45rem, 0.5vw + 1.15rem, 1.6rem);
  line-height: 1.65;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

#hero.premium-hero:not(.home-hero) .hero-ctas {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: flex-start;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 0;
}

#hero.premium-hero:not(.home-hero) .hero-ctas .btn {
  min-height: 4.8rem;
  padding: 1.2rem 2.4rem !important;
  border-radius: 999px !important;
  font-size: 1.25rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  width: auto !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

#hero.premium-hero:not(.home-hero) .hero-ctas .btn:hover {
  transform: translateY(-3px);
}

#hero.premium-hero:not(.home-hero) .btn-pink {
  background: linear-gradient(135deg, #ff6fa4 0%, #d91c5c 52%, #a60c46 100%) !important;
}

#hero.premium-hero:not(.home-hero) .btn-pink:hover {
  box-shadow: 0 16px 38px rgba(217, 28, 92, 0.38);
}

#hero.premium-hero:not(.home-hero) .btn-dark-gold,
#hero.premium-hero:not(.home-hero) .btn-outline {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(212, 175, 55, 0.62) !important;
  color: #fbe69e !important;
}

#hero.premium-hero:not(.home-hero) .btn-dark-gold:hover,
#hero.premium-hero:not(.home-hero) .btn-outline:hover {
  background: linear-gradient(135deg, #fbe69e 0%, #d4af37 100%) !important;
  color: #1A0128 !important;
  box-shadow: 0 16px 36px rgba(212, 175, 55, 0.28);
}

#hero.premium-hero.contact-hero .contact-hero-badges,
#hero.premium-hero.contact-hero .contact-hero-metrics {
  display: none !important;
}

@media (max-width: 1366px) and (min-width: 992px) {
  #hero.premium-hero:not(.home-hero) .hero-container,
  #hero.premium-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero:not(.home-hero) .hero-container-center {
    width: min(92%, 126rem);
    max-width: 126rem;
  }

  #hero.premium-hero:not(.home-hero) .hero-content {
    width: min(100%, 46rem);
    max-width: 46rem;
    padding: clamp(2.8rem, 3.2vw, 3.8rem);
  }

  #hero.premium-hero:not(.home-hero) .hero-heading {
    font-size: clamp(3.8rem, 4.2vw, 5.4rem) !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-heading-energy {
    font-size: clamp(5.4rem, 5.8vw, 7.2rem);
  }

  #hero.premium-hero:not(.home-hero) .hero-subheading {
    margin-bottom: 2.3rem;
    font-size: 1.52rem;
  }
}

@media (max-width: 991px) {
  #hero.premium-hero:not(.home-hero) {
    min-height: 100svh !important;
    padding-top: var(--header-height) !important;
    padding-bottom: 0 !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-overlay {
    display: block !important;
    background: linear-gradient(to top, rgba(10, 2, 14, 0.96) 0%, rgba(10, 2, 14, 0.82) 26%, rgba(10, 2, 14, 0.4) 48%, transparent 62%) !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide {
    background-position: 36% center !important;
    filter: saturate(1.14) contrast(1.03) brightness(1.06);
  }

  .blog-page #hero .hero-bg-slide {
    background-image: url('assets/images/performance photos/EDG_0243_Tablet.webp') !important;
  }

  html[lang="de"] .blog-page #hero .hero-bg-slide {
    background-image: url('assets/images/performance photos/EDG_0243_Tablet.webp') !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:first-child {
    background-position: 36% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:nth-child(2) {
    background-position: 46% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:nth-child(3) {
    background-position: 36% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:nth-child(4) {
    background-position: 42% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:nth-child(5) {
    background-position: 38% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-container,
  #hero.premium-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero:not(.home-hero) .hero-container-center {
    min-height: calc(100svh - var(--header-height)) !important;
    width: min(100% - 4rem, 42rem) !important;
    max-width: 42rem !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    padding-top: 0 !important;
    padding-bottom: 9.5rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    margin-left: auto;
    margin-right: auto;
  }

  #hero.premium-hero:not(.home-hero) .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero-ganesha-mark,
  #hero .hero-ganesha-mark {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 78px !important;
    height: 78px !important;
    margin: 0 auto 1rem !important;
  }

  .hero-ganesha-mark img,
  #hero .hero-ganesha-mark img {
    width: 68px !important;
    height: 68px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.55)) !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-pre-title {
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 2.4rem;
  }

  #hero.premium-hero:not(.home-hero) .hero-decorative-divider {
    display: flex;
    justify-content: center;
  }

  #hero.premium-hero:not(.home-hero) .hero-divider-svg {
    width: 12rem;
    margin-bottom: 1rem;
  }

  #hero.premium-hero:not(.home-hero) .hero-tag {
    margin-bottom: 0.55rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.26em;
  }

  #hero.premium-hero:not(.home-hero) .hero-heading,
  #hero.premium-hero:not(.home-hero) .hero-subheading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #hero.premium-hero:not(.home-hero) .hero-heading {
    max-width: 36rem;
    margin-bottom: 1.3rem !important;
    font-size: clamp(3.2rem, 10vw, 4.4rem) !important;
    line-height: 0.96 !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
  }

  #hero.premium-hero:not(.home-hero) .hero-heading-energy {
    display: inline-block;
    margin-right: 0.45rem;
    font-size: clamp(4.2rem, 13vw, 5.6rem) !important;
    line-height: 0.9;
  }

  #hero.premium-hero:not(.home-hero) .hero-heading-of {
    font-size: clamp(3rem, 9vw, 3.8rem) !important;
    line-height: 0.8;
  }

  #hero.premium-hero:not(.home-hero) .hero-subheading {
    max-width: 33rem;
    margin-bottom: 2rem !important;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem !important;
    line-height: 1.5;
  }

  #hero.premium-hero:not(.home-hero) .hero-ctas {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 1rem !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-ctas .btn {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 1.15rem 2rem !important;
    font-size: clamp(1.1rem, 3vw, 1.25rem) !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  #hero.premium-hero:not(.home-hero) .hero-bg-slide:first-child {
    background-position: 36% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-bg-slide:nth-child(3) {
    background-position: 36% center !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-container,
  #hero.premium-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero:not(.home-hero) .hero-container-center {
    width: min(100% - 3.2rem, 38rem) !important;
    max-width: 38rem !important;
    justify-content: flex-end !important;
    align-items: flex-end !important;
    padding-top: 0 !important;
    padding-bottom: 9.5rem !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-ganesha-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 0.7rem;
  }

  #hero.premium-hero:not(.home-hero) .hero-ganesha-mark img {
    width: 40px;
    height: 40px;
  }

  #hero.premium-hero:not(.home-hero) .hero-divider-svg {
    width: 10.5rem;
    margin-bottom: 0.8rem;
  }

  #hero.premium-hero:not(.home-hero) .hero-subheading {
    max-width: 31rem;
    font-size: 1.45rem !important;
  }

  #hero.premium-hero:not(.home-hero) .hero-ctas .btn {
    min-height: 4.5rem;
  }
}

@media (max-width: 991px) {
  #hero.home-hero.premium-home-hero .hero-content,
  #hero.home-hero .hero-content,
  #hero.premium-hero:not(.home-hero) .hero-content,
  #hero.premium-hero .hero-content {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (max-width: 480px) {
  #hero.home-hero.premium-home-hero .hero-content,
  #hero.home-hero .hero-content,
  #hero.premium-hero:not(.home-hero) .hero-content,
  #hero.premium-hero .hero-content {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  #hero.premium-hero:not(.home-hero) .hero-content,
  #hero.premium-hero:not(.home-hero) .hero-heading,
  #hero.premium-hero:not(.home-hero) .hero-ganesha-mark {
    animation: none;
  }
}

/* ==========================================================================
   Large Desktop Fluid Layout
   ========================================================================== */

:root {
  --fluid-page-gutter: clamp(3.2rem, 6vw, 11.2rem);
  --fluid-section-y: clamp(8rem, 6vw, 12rem);
  --fluid-section-y-tight: clamp(5.6rem, 4.6vw, 8.8rem);
  --fluid-grid-gap: clamp(2.4rem, 2vw, 3.8rem);
  --fluid-card-pad: clamp(2.4rem, 2vw, 4rem);
  --fluid-container-max: 160rem;
  --home-card-radius: clamp(2rem, 1.8vw, 3rem);
  --home-media-height: clamp(26rem, 17vw, 36rem);
  --focus-ring: 0 0 0 3px rgba(251, 230, 158, 0.72), 0 0 0 6px rgba(217, 28, 92, 0.32);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
  box-shadow: var(--focus-ring);
}

.container,
.nav-container,
.hero-container,
.hero-container-split,
.hero-container-center,
.why-choose-container-new,
#hero.home-hero .hero-container-split,
#hero.premium-hero:not(.home-hero) .hero-container,
#hero.premium-hero:not(.home-hero) .hero-container-split,
#hero.premium-hero:not(.home-hero) .hero-container-center {
  width: min(94vw, var(--fluid-container-max));
  max-width: var(--fluid-container-max);
  margin-left: auto;
  margin-right: auto;
}

.section-padding,
.about-section,
.services-section,
.testimonials-section,
.join-team-section,
.contact-section,
.classes-section,
.workshops-section,
.performances-section,
.henna-section,
.rentals-section,
.events-section {
  padding-top: var(--fluid-section-y);
  padding-bottom: var(--fluid-section-y);
}

.section-header {
  max-width: min(100%, 96rem);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(4.8rem, 4.4vw, 7.2rem);
}

.section-title,
h2 {
  font-size: clamp(3.6rem, 2.35vw, 5.6rem);
  line-height: 1.06;
}

h1,
.hero-heading,
.hero-container-center .hero-heading,
.split-hero-content .hero-heading {
  font-size: clamp(4.6rem, 3.8vw, 7.2rem);
}

.hero-subheading,
.section-subtitle,
.section-desc,
.section-desc-small,
.story-paragraph p,
.card-desc,
.service-card-desc,
.join-grid-card p,
.event-card p,
.testimonial-card-new .quote-text {
  font-size: clamp(1.55rem, 0.22vw + 1.34rem, 1.85rem);
  line-height: 1.7;
}

.nav-container {
  gap: clamp(2rem, 2.4vw, 4.8rem);
}

.nav-menu {
  gap: clamp(1.8rem, 1.55vw, 3.2rem);
}

.nav-menu-left {
  margin-right: 0;
}

.nav-menu-right {
  margin-left: 0;
}

.nav-link {
  min-height: clamp(4.4rem, 3.1vw, 5.4rem);
  padding-inline: clamp(0.2rem, 0.45vw, 0.8rem);
  font-size: clamp(1.1rem, 0.2vw + 1.02rem, 1.32rem);
}

.logo-img {
  height: clamp(7.2rem, 5vw, 8.8rem);
  max-height: calc(var(--header-height) - 0.8rem);
}

.header-nav.scrolled .logo-img {
  height: clamp(6.2rem, 4vw, 7.4rem);
  max-height: calc(82px - 0.8rem);
}

@media (min-width: 1025px) {
  .nav-container {
    width: min(calc(100% - clamp(2rem, 3vw, 6rem)), 184rem);
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    column-gap: clamp(1.6rem, 2.4vw, 4.8rem);
  }

  .nav-logo {
    position: static;
    grid-column: 2;
    justify-self: center;
    transform: none;
  }

  .nav-menu {
    display: flex !important;
    max-width: 100%;
    min-width: 0;
    gap: clamp(0.6rem, 0.8vw, 1.8rem);
  }

  .nav-menu-left {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
    margin: 0;
  }

  .nav-menu-right {
    grid-column: 3;
    justify-self: end;
    justify-content: flex-end;
    margin: 0;
  }

  .nav-link {
    min-height: clamp(4rem, 3vw, 5.2rem);
    padding-inline: clamp(0.05rem, 0.15vw, 0.3rem);
    font-size: clamp(0.9rem, 0.14vw + 0.82rem, 1.15rem);
    letter-spacing: 0.06em;
  }

  .nav-actions {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .nav-menu {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(217, 28, 92, 0.18);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    padding: 12px 10px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
  }

  .nav-container {
    width: min(calc(100% - 4rem), 118rem);
    display: flex;
    justify-content: space-between;
  }

  .nav-actions {
    margin-left: auto;
  }
}

.grid,
.services-grid-new,
.gallery-grid,
.clients-logo-wall,
.clients-directory-grid,
.events-grid,
.performance-grid,
.henna-services-grid,
.henna-page .henna-culture-grid,
.testimonials-grid-desktop,
.testimonial-slider {
  gap: var(--fluid-grid-gap);
}

.services-grid-new,
.grid-3-cols,
.clients-directory-grid,
.events-grid,
.performance-grid,
.henna-services-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr)) !important;
}

.grid-4-cols,
.grid-5-cols,
.clients-logo-wall,
.henna-page .henna-culture-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)) !important;
}

.testimonials-grid-desktop,
.testimonial-slider {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 34rem), 1fr)) !important;
}

.service-card,
.service-card-new,
.event-card,
.join-grid-card,
.medium-card,
.client-directory-card,
.clients-hero-card,
.contact-metric-card,
.contact-path-card,
.info-card-block,
.feature-item,
.testimonial-card-new {
  min-width: 0;
}

.services-grid-new {
  align-items: stretch;
}

.service-card-new {
  border-radius: var(--home-card-radius);
}

.service-card-new,
.event-card,
.join-grid-card,
.medium-card,
.client-directory-card,
.clients-hero-card,
.contact-form-glass,
.visual-accent-card,
.info-card-block,
.testimonial-card-new {
  padding: var(--fluid-card-pad);
}

.service-image-box,
.card-img-container,
.medium-card-img-wrap,
.event-card-image,
.style-card-image-wrapper {
  height: var(--home-media-height);
}

.service-image-box {
  width: calc(100% + (var(--fluid-card-pad) * 2));
  margin: calc(var(--fluid-card-pad) * -1) calc(var(--fluid-card-pad) * -1) clamp(2.4rem, 2vw, 3.4rem);
}

.card-body {
  padding: var(--fluid-card-pad);
}

.service-card-title,
.card-title,
.join-grid-card h4,
.event-card-title,
.feature-item h3 {
  font-size: clamp(1.9rem, 0.58vw + 1.45rem, 2.8rem);
}

.service-card-desc {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

.why-choose-features-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: var(--fluid-grid-gap);
}

.why-choose-item-new {
  width: auto;
  flex: none;
}

.hero-cta-cards {
  max-width: min(100%, 120rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 30rem), 1fr));
  gap: var(--fluid-grid-gap);
}

.about-section.cream-section .container,
.classes-content,
.workshops-content,
.performances-content,
.rentals-content,
.contact-content,
.international-venues-block,
.contact-layout-grid,
.style-detail-layout {
  gap: clamp(4.8rem, 5vw, 8.8rem);
}

.about-floating-card {
  max-width: clamp(25rem, 18vw, 36rem);
}

.testimonial-slider-container,
.contact-cta-banner-new .banner-container,
.hero-cta-cards {
  width: min(94vw, var(--fluid-container-max));
}

@media (min-width: 1400px) {
  :root {
    --fluid-container-max: 160rem;
    --fluid-section-y: clamp(9rem, 6vw, 13rem);
  }

  .services-grid-new {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1600px) {
  :root {
    --fluid-container-max: 168rem;
    --fluid-page-gutter: clamp(4rem, 5vw, 12rem);
    --fluid-grid-gap: clamp(2.8rem, 1.9vw, 4.2rem);
    --home-media-height: clamp(28rem, 16vw, 38rem);
  }

  .service-image-box,
  .card-img-container,
  .medium-card-img-wrap,
  .event-card-image,
  .style-card-image-wrapper {
    height: var(--home-media-height);
  }
}

@media (min-width: 1920px) {
  :root {
    --fluid-container-max: 176rem;
    --fluid-section-y: clamp(10rem, 5.8vw, 14rem);
    --fluid-card-pad: clamp(3rem, 1.8vw, 4.4rem);
  }

  .services-grid-new,
  .grid-3-cols,
  .clients-directory-grid,
  .events-grid,
  .performance-grid,
  .henna-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 34rem), 1fr)) !important;
  }

  .services-grid-new {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 992px) {
  .services-grid-new {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 991px) {
  .container,
  .nav-container,
  .hero-container,
  .hero-container-split,
  .hero-container-center,
  .why-choose-container-new,
  #hero.home-hero .hero-container-split,
  #hero.premium-hero:not(.home-hero) .hero-container,
  #hero.premium-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero:not(.home-hero) .hero-container-center {
    width: min(100% - clamp(2.8rem, 5vw, 4.8rem), var(--fluid-container-max));
  }

  .service-card-new {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  #hero.performance-first-hero {
    padding-top: var(--header-height) !important;
  }

  #hero.performance-first-hero .hero-bg-slider {
    width: 100%;
    height: 65vh;
    min-height: 36rem;
    max-height: 58rem;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #hero.performance-first-hero .hero-container-split {
    min-height: auto !important;
    width: min(100% - 3.2rem, 46rem) !important;
    padding: clamp(3.4rem, 8vw, 5rem) 0 clamp(5.8rem, 10vw, 7.2rem) !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  #hero.performance-first-hero .hero-content {
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #hero.performance-first-hero .hero-brand-word {
    margin-bottom: 1.5rem;
    font-size: 1.22rem;
    letter-spacing: 0.34em;
  }

  #hero.performance-first-hero .hero-heading {
    font-size: clamp(4rem, 12vw, 5.6rem) !important;
    line-height: 0.98 !important;
  }

  #hero.performance-first-hero .hero-subheading {
    margin-bottom: 2.8rem;
    font-size: clamp(1.65rem, 4.5vw, 2rem);
  }

  #hero.performance-first-hero .hero-ctas {
    flex-direction: column;
    gap: 1.6rem;
  }

  #hero.performance-first-hero .hero-ctas .btn {
    width: min(100%, 32rem);
    justify-content: center;
  }

  #hero.mobile-stacked-hero {
    display: block;
    min-height: auto !important;
    padding-top: var(--header-height) !important;
    padding-bottom: clamp(3.6rem, 8vw, 5.2rem) !important;
    background: #1A0128 !important;
    overflow: visible;
  }

  #hero.mobile-stacked-hero .hero-bg-slider {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 2.4rem, 42rem);
    height: clamp(24rem, 70vw, 34rem);
    margin: clamp(1.4rem, 4vw, 2.4rem) auto 0;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34), 0 0 26px rgba(212, 175, 55, 0.12);
    overflow: hidden;
    z-index: 4;
  }

  #hero.mobile-stacked-hero .hero-bg-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(26, 1, 40, 0.28) 100%),
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.12), transparent 38%);
    pointer-events: none;
    z-index: 3;
  }

  #hero.mobile-stacked-hero .hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
    filter: saturate(1.12) contrast(1.03) brightness(1.05);
  }

  #hero.mobile-stacked-hero .hero-bg-overlay {
    display: none !important;
  }

  #hero.mobile-stacked-hero .hero-glow {
    display: block;
    top: 34%;
    opacity: 0.72;
  }

  #hero.mobile-stacked-hero .bg-chakra-overlay {
    opacity: 0.12;
  }

  #hero.mobile-stacked-hero .hero-container,
  #hero.mobile-stacked-hero .hero-container-split,
  #hero.mobile-stacked-hero .hero-container-center {
    display: block !important;
    min-height: auto !important;
    width: min(100% - 3.2rem, 42rem) !important;
    max-width: 42rem !important;
    padding: clamp(2.2rem, 6vw, 3.2rem) 0 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container,
  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container-center {
    min-height: auto !important;
    padding: clamp(2.2rem, 6vw, 3.2rem) 0 0 !important;
  }

  #hero.mobile-stacked-hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: clamp(1.8rem, 5vw, 2.4rem) clamp(1.4rem, 4vw, 2rem) !important;
    text-align: center !important;
    background: rgba(20, 10, 30, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(4px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(4px) saturate(1.08) !important;
  }

  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: clamp(1.8rem, 5vw, 2.4rem) clamp(1.4rem, 4vw, 2rem) !important;
    background: rgba(20, 10, 30, 0.52) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28) !important;
    backdrop-filter: blur(4px) saturate(1.08) !important;
    -webkit-backdrop-filter: blur(4px) saturate(1.08) !important;
  }

  #hero.mobile-stacked-hero .hero-ganesha-mark {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero.mobile-stacked-hero .hero-decorative-divider {
    display: flex;
    justify-content: center;
  }

  #hero.mobile-stacked-hero .hero-heading,
  #hero.mobile-stacked-hero .hero-subheading {
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  #hero.performance-first-hero .hero-bg-slider {
    height: 65vh;
    min-height: 34rem;
  }

  #hero.performance-first-hero .hero-container-split {
    width: min(100% - 2.4rem, 38rem) !important;
  }

  #hero.performance-first-hero .hero-heading {
    font-size: clamp(3.6rem, 12vw, 4.8rem) !important;
  }

  #hero.mobile-stacked-hero .hero-bg-slider {
    width: min(100% - 2rem, 36rem);
    height: clamp(22rem, 74vw, 29rem);
    border-radius: 20px;
  }

  #hero.mobile-stacked-hero .hero-container,
  #hero.mobile-stacked-hero .hero-container-split,
  #hero.mobile-stacked-hero .hero-container-center {
    width: min(100% - 2.4rem, 36rem) !important;
  }

  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container,
  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container-split,
  #hero.premium-hero.mobile-stacked-hero:not(.home-hero) .hero-container-center {
    width: min(100% - 2.4rem, 36rem) !important;
    max-width: 36rem !important;
    padding-top: clamp(2.2rem, 6vw, 3.2rem) !important;
    padding-bottom: 0 !important;
  }
}


/* Homepage Hero — editorial layout: type sits directly on the photo, no boxed card */
#hero.premium-hero.home-hero .hero-container {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  min-height: 100vh !important;
  padding-top: 10rem !important;
  padding-bottom: 12rem !important;
}

#hero.premium-hero.home-hero .hero-content {
  width: min(100%, 60rem) !important;
  max-width: 60rem !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

#hero.premium-hero.home-hero .hero-ganesha-mark {
  display: block !important;
  margin: 0 0 1.4rem 0 !important;
  opacity: 0.96 !important;
  align-self: flex-start !important;
}

#hero.premium-hero.home-hero .hero-ganesha-mark img {
  height: 6.2rem !important;
  width: auto !important;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.35)) !important;
}

#hero.premium-hero.home-hero .hero-decorative-divider {
  display: block !important;
  justify-content: flex-start !important;
  width: 100% !important;
  max-width: 18rem !important;
  margin: 0 0 2.2rem 0 !important;
  align-self: flex-start !important;
}

#hero.premium-hero.home-hero .hero-divider-svg {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65)) !important;
}

#hero.premium-hero.home-hero .hero-tag {
  display: inline-block !important;
  font-family: var(--font-sans) !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  color: var(--color-gold-light) !important;
  margin-bottom: 1.2rem !important;
  text-transform: uppercase !important;
  text-align: left !important;
}

#hero.premium-hero.home-hero .hero-heading {
  font-family: var(--font-serif) !important;
  font-size: clamp(5.8rem, 7.4vw, 9.2rem) !important;
  font-weight: 500 !important;
  line-height: 0.92 !important;
  letter-spacing: 0.01em !important;
  color: #ffffff !important;
  width: auto !important;
  max-width: 100% !important;
  margin: 0 0 1.4rem 0 !important;
  text-transform: none !important;
  text-align: left !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 18px rgba(0, 0, 0, 1),
    0 0 32px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.85),
     1px -1px 0 rgba(0, 0, 0, 0.85),
    -1px  1px 0 rgba(0, 0, 0, 0.85),
     1px  1px 0 rgba(0, 0, 0, 0.85) !important;
}

#hero.premium-hero.home-hero .hero-heading::after {
  display: none !important;
}

#hero.premium-hero.home-hero .hero-subheading {
  font-size: clamp(1.65rem, 0.6vw + 1.35rem, 2rem) !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  color: #ffffff !important;
  margin: 0 0 3.6rem 0 !important;
  text-align: left !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 14px rgba(0, 0, 0, 1),
    0 0 24px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
  max-width: 44rem !important;
}

#hero.premium-hero.home-hero .hero-subheading span:not(.hero-subheading-lead) {
  -webkit-text-stroke: none !important;
  color: #ffffff !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 14px rgba(0, 0, 0, 1),
    0 0 24px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.8),
     1px -1px 0 rgba(0, 0, 0, 0.8),
    -1px  1px 0 rgba(0, 0, 0, 0.8),
     1px  1px 0 rgba(0, 0, 0, 0.8) !important;
}

#hero.premium-hero.home-hero .hero-subheading-premium {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
}

#hero.premium-hero.home-hero .hero-subheading-lead {
  display: block !important;
  font-family: var(--font-serif) !important;
  font-weight: 700 !important;
  font-size: clamp(3.2rem, 3.4vw, 4.8rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  color: #FFD700 !important;
  -webkit-text-fill-color: #FFD700 !important;
  background: none !important;
  -webkit-text-stroke: none !important;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 1),
    0 0 16px rgba(0, 0, 0, 1),
    0 0 30px rgba(0, 0, 0, 0.95),
    -1px -1px 0 rgba(0, 0, 0, 0.85),
     1px -1px 0 rgba(0, 0, 0, 0.85),
    -1px  1px 0 rgba(0, 0, 0, 0.85),
     1px  1px 0 rgba(0, 0, 0, 0.85) !important;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.95)) !important;
}

#hero.premium-hero.home-hero .btn-outline,
#hero.home-hero .btn-outline {
  background: rgba(18, 2, 24, 0.82) !important;
  color: #ffffff !important;
  border: 1.5px solid #FFD700 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9) !important;
  font-weight: 600 !important;
}

#hero.premium-hero.home-hero .btn-outline:hover,
#hero.home-hero .btn-outline:hover {
  background: var(--color-gold-gradient) !important;
  color: var(--color-text-dark) !important;
  border-color: #FFD700 !important;
  text-shadow: none !important;
}

#hero.premium-hero.home-hero .hero-ctas {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 1.6rem !important;
  justify-content: flex-start !important;
  align-items: center !important;
}

#hero.premium-hero.home-hero .hero-bg-overlay {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  z-index: -1 !important;
}

#hero.premium-hero.home-hero .shape-divider-bottom {
  position: absolute !important;
  bottom: -2px !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
  line-height: 0 !important;
  z-index: 10 !important;
}

#hero.premium-hero.home-hero .shape-divider-bottom > svg {
  position: relative !important;
  display: block !important;
  width: calc(100% + 1.3px) !important;
  height: 80px !important;
}

@media (max-width: 991px) {
  #hero.premium-hero.home-hero .hero-bg-slide,
  #hero.home-hero .hero-bg-slide {
    background-position: 36% center !important;
  }

  /* Bottom Gradient + Floating Text: keep the photo full-bleed and anchor
     the copy to a dark gradient band at the bottom instead of a floating
     blurred card, so the image stays visible on small screens. */
  #hero.premium-hero.home-hero .hero-container,
  #hero.home-hero .hero-container {
    align-items: flex-end !important;
    justify-content: center !important;
    padding-top: 0 !important;
    padding-bottom: 9.5rem !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    min-height: calc(100svh - var(--header-height)) !important;
  }

  #hero.premium-hero.home-hero .hero-content,
  #hero.home-hero .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  #hero.premium-hero.home-hero .hero-ganesha-mark,
  #hero.home-hero .hero-ganesha-mark,
  .hero-ganesha-mark {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 1.2rem auto !important;
    text-align: center !important;
    align-self: center !important;
  }

  #hero.premium-hero.home-hero .hero-ganesha-mark img,
  #hero.home-hero .hero-ganesha-mark img,
  .hero-ganesha-mark img {
    width: 76px !important;
    height: 76px !important;
    max-width: 76px !important;
    max-height: 76px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 22px rgba(212, 175, 55, 0.75)) !important;
  }

  #hero.premium-hero.home-hero .hero-decorative-divider,
  #hero.home-hero .hero-decorative-divider {
    display: flex !important;
    justify-content: center !important;
    margin: 0 auto 1.1rem auto !important;
    align-self: center !important;
  }

  #hero.premium-hero.home-hero .hero-heading,
  #hero.home-hero .hero-heading {
    font-size: clamp(3.8rem, 12vw, 5.2rem) !important;
    margin-bottom: 0.7rem !important;
    text-align: center !important;
  }

  #hero.premium-hero.home-hero .hero-subheading-premium,
  #hero.home-hero .hero-subheading-premium {
    align-items: center !important;
  }

  #hero.premium-hero.home-hero .hero-subheading-lead,
  #hero.home-hero .hero-subheading-lead {
    font-size: clamp(2.2rem, 7vw, 3rem) !important;
    text-align: center !important;
    color: #FFD700 !important;
    -webkit-text-fill-color: #FFD700 !important;
  }

  #hero.premium-hero.home-hero .hero-subheading,
  #hero.home-hero .hero-subheading {
    font-size: 1.45rem !important;
    line-height: 1.45 !important;
    margin-bottom: 2rem !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  #hero.premium-hero.home-hero .hero-ctas,
  #hero.home-hero .hero-ctas {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    gap: 1rem !important;
  }

  .hero-ctas .btn {
    width: auto !important;
    max-width: 100% !important;
    min-height: 4.6rem !important;
    padding: 1.15rem 2rem !important;
    font-size: clamp(1.1rem, 3.2vw, 1.25rem) !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    justify-content: center !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
  }

  #hero.premium-hero.home-hero .hero-ctas .btn,
  #hero.home-hero .hero-ctas .btn {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 1.15rem 2rem !important;
    font-size: clamp(1.1rem, 3vw, 1.25rem) !important;
    letter-spacing: 0.04em !important;
  }

  /* Dark-to-transparent gradient rising from the bottom, replacing the
     desktop left-to-right fade so the text band stays readable without
     covering the rest of the photo. */
  #hero.premium-hero.home-hero .hero-bg-overlay,
  #hero.home-hero .hero-bg-overlay {
    display: block !important;
    background: linear-gradient(to top, rgba(10, 2, 14, 0.96) 0%, rgba(10, 2, 14, 0.82) 26%, rgba(10, 2, 14, 0.4) 48%, transparent 62%) !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }
}

/* Henna Services section - 3x3 Grid Layout & Rescaled Image Heights */
.henna-services-section .grid-3-cols,
.henna-services-section .grid-2-cols {
  grid-template-columns: repeat(3, 1fr) !important;
}

.henna-services-section .card-img-container {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  width: 100% !important;
  overflow: hidden;
}

.henna-services-section .service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 991px) {
  .henna-services-section .grid-3-cols,
  .henna-services-section .grid-2-cols {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .henna-services-section .grid-3-cols,
  .henna-services-section .grid-2-cols {
    grid-template-columns: 1fr !important;
  }
}

/* Join Team Hero - Remove Dark Overlay Across Image, Keep Text Dark Card Intact */
#hero.join-team-hero .hero-bg-overlay {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

@media (max-width: 991px) {
  #hero.join-team-hero .hero-container,
  #hero.join-team-hero .hero-container-split {
    justify-content: center !important;
    text-align: center !important;
    padding-top: 6rem !important;
  }
  #hero.join-team-hero .hero-content {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}

/* Henna Page Hero - Full Uncropped Photo Display */
.henna-page #hero .hero-bg-slider {
  background-color: #0c0314;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.henna-page #hero .hero-bg-slider::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: url('assets/images/mehndipics/hennahero3.png');
  background-size: cover;
  background-position: center;
  filter: blur(30px) brightness(0.35) saturate(1.2);
  transform: scale(1.15);
  z-index: 0;
}

.henna-page #hero .hero-bg-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
}

.henna-page #hero.premium-hero .hero-bg-overlay,
.henna-page #hero .hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    #0c0314 0%, 
    rgba(12, 3, 20, 0.9) 15%, 
    rgba(12, 3, 20, 0.4) 28%, 
    transparent 40%
  ) !important;
  opacity: 1 !important;
  z-index: 2 !important;
  pointer-events: none;
}

@media (max-width: 991px) {
  .henna-page #hero .hero-bg-slide {
    background-position: center center !important;
    background-size: cover !important;
  }
  .henna-page #hero.premium-hero .hero-bg-overlay,
  .henna-page #hero .hero-bg-overlay {
    display: block !important;
    background: linear-gradient(to top, rgba(12, 3, 20, 0.96) 0%, rgba(12, 3, 20, 0.82) 26%, rgba(12, 3, 20, 0.4) 48%, transparent 62%) !important;
    opacity: 1 !important;
    z-index: 2 !important;
  }
}

/* Henna Gallery Grid Fix - Beautiful 3x3 Responsive Square Grid */
#henna-gallery .gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  width: 100% !important;
}

#henna-gallery .gallery-item {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  border: 1px solid rgba(217, 28, 92, 0.2) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
}

#henna-gallery .gallery-item:hover {
  transform: translateY(-6px) scale(1.02) !important;
  border-color: var(--henna-rose, #d91c5c) !important;
  box-shadow: 0 18px 40px rgba(217, 28, 92, 0.25) !important;
}

#henna-gallery .gallery-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}

@media (max-width: 991px) {
  #henna-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px) {
  #henna-gallery .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Henna Page Medium Cards Redesign - Edge-to-Edge Premium Photo Cards */
.medium-card,
.henna-page .medium-card {
  padding: 0 !important;
  background: #ffffff !important;
  border: 1px solid rgba(217, 28, 92, 0.14) !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 35px rgba(82, 32, 69, 0.08) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.medium-card:hover,
.henna-page .medium-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--henna-rose, #d91c5c) !important;
  box-shadow: 0 24px 50px rgba(82, 32, 69, 0.16) !important;
}

.medium-card-img-wrap,
.henna-page .medium-card-img-wrap {
  width: 100% !important;
  height: 250px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  background: #000000 !important;
}

.medium-card-img,
.henna-page .medium-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  transition: transform 0.5s ease !important;
}

.medium-card:hover .medium-card-img,
.henna-page .medium-card:hover .medium-card-img {
  transform: scale(1.08) !important;
}

.medium-card-content,
.henna-page .medium-card-content {
  padding: 2.4rem 2.2rem 2.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.8rem !important;
  flex-grow: 1 !important;
  background: #ffffff !important;
}

.medium-card-content h3,
.henna-page .medium-card-content h3 {
  font-family: var(--font-serif) !important;
  font-size: 2.1rem !important;
  font-weight: 700 !important;
  color: var(--henna-rose, #d91c5c) !important;
  margin-bottom: 0.4rem !important;
  line-height: 1.3 !important;
}

.medium-card-content p,
.henna-page .medium-card-content p {
  font-size: 1.4rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
  color: #4a3b52 !important;
  margin: 0 !important;
}

