@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,600,500,400&display=swap');

/* ==========================================================================
   DANCE DARBAR KALA SANSTHAN - LUXURY EDITORIAL DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. COLOR PALETTE TOKENS & TYPOGRAPHY VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --color-primary: #5EBBEA;        /* Refined Ice Blue accent */
  --color-primary-light: rgba(94, 187, 234, 0.12);  /* Subtle accent surface */
  --color-primary-dark: #5EBBEA;   /* Clear vibrant accent on dark */
  --accent-blue: #5ab4f0;          /* Interactive curtain eyebrow accent */
  --color-navy: #FFFFFF;           /* Heading token (#FFFFFF) */
  --color-charcoal: #111111;       /* Section surface (#111111) */
  --color-white: #FFFFFF;          /* Pure white text/icon token */
  --color-surface: #1A1A1A;        /* Card & container surface (#1A1A1A) */
  --color-surface-elevated: #1E1E1E; /* Elevated card surface (#1E1E1E) */
  --color-off-white: #000000;      /* Page & body background (#000000) */
  --color-light-surface: #111111;  /* Alternate section background (#111111) */
  --color-muted-text: #A0A0A0;     /* Muted/secondary text (#A0A0A0) */
  --color-body-text: #E5E5E5;      /* Body copy text (#E5E5E5) */
  --color-border: rgba(255, 255, 255, 0.1);  /* Subtle dark theme border */
  --color-border-dark: rgba(255, 255, 255, 0.1);
  --glass-surface: rgba(26, 26, 26, 0.88);
  --glass-dark: rgba(10, 10, 10, 0.92);

  --font-heading: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-width: 1600px;
  --content-width: 1440px;

  --radius-large: 20px;
  --radius-medium: 14px;
  --radius-small: 8px;
  --radius-pill: 999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--color-body-text);
  background-color: var(--color-off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  line-height: 1.6;
  color: var(--color-body-text);
  background-color: var(--color-off-white);
}

/* Page Initial Load Entrance Transition */
.app-root {
  display: block;
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
  will-change: opacity, transform;
}

.app-root.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility Focus States for Keyboard Navigation */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Prefers Reduced Motion Accessibility Override */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .app-root {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Custom Selection */
::selection {
  background-color: rgba(94, 187, 234, 0.35);
  color: #FFFFFF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3A3A3A;
}

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

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

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #FFFFFF;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-heading {
  font-size: clamp(34px, 3.8vw, 64px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}

.section-heading {
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5EBBEA;
  margin-bottom: 8px;
  display: inline-block;
}

.eyebrow.light {
  color: #5EBBEA;
}

.lead-text {
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--color-body-text);
  max-width: 720px;
  font-weight: 400;
  line-height: 1.6;
}

.lead-text.light {
  color: var(--color-body-text);
}

/* --------------------------------------------------------------------------
   3. BUTTON SYSTEM & INTERACTIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 250ms ease-out;
  white-space: nowrap;
  box-sizing: border-box;
}

.btn-primary,
.claim-seat-btn {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
  cursor: pointer;
  transform: scale(1);
  transition: all 250ms ease-out;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.claim-seat-btn:hover,
.claim-seat-btn:focus-visible {
  background-color: #2A2A2A;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.45);
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
  outline: none;
}

.btn-primary:active,
.claim-seat-btn:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.btn-arrow,
.arrow-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  stroke: currentColor;
  transform: translateX(0);
  transition: transform 250ms ease-out, stroke 250ms ease-out, color 250ms ease-out;
  will-change: transform;
}

.btn-primary:hover .btn-arrow,
.btn-primary:hover .arrow-icon,
.btn-primary:focus-visible .btn-arrow,
.btn-primary:focus-visible .arrow-icon,
.claim-seat-btn:hover .btn-arrow,
.claim-seat-btn:hover .arrow-icon,
.claim-seat-btn:focus-visible .btn-arrow,
.claim-seat-btn:focus-visible .arrow-icon {
  animation: arrowBounce 0.8s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

.btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary.light {
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary.light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.full-width {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. LOGO FRAME (PROPORTIONAL SIZING & ENHANCED VISIBILITY)
   -------------------------------------------------------------------------- */
.logo-circle-frame {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.logo-circle-frame:hover {
  transform: scale(1.04);
}

.logo-circle-frame.sm {
  width: 38px;
  height: 38px;
}

.logo-circle-frame.footer-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}

.logo-img {
  width: 84%;
  height: 84%;
  object-fit: contain;
  display: block;
}

/* --------------------------------------------------------------------------
   5. HEADER NAVIGATION & CONTRAST STATES
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all var(--transition-normal);
  background-color: transparent;
}

/* Scrolled or Subpage Header (Dark Background State) */
.site-header.scrolled,
.site-header.is-subpage {
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.header-logo,
.logo-link {
  justify-self: start;
}

.header-nav,
.desktop-nav {
  justify-self: center;
}

.header-actions,
.header-cta-wrap {
  justify-self: end;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF !important;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color var(--transition-fast);
}

.site-header.is-home:not(.scrolled) .brand-title {
  color: #FFFFFF !important;
}

.brand-subtitle {
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #5EBBEA !important;
  line-height: 1.1;
  margin-top: 2px;
  transition: color var(--transition-fast);
}

.site-header.is-home:not(.scrolled) .brand-subtitle {
  color: #5EBBEA !important;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 36px);
}

.nav-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #E5E5E5;
  opacity: 0.88;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-home:not(.scrolled) .nav-link {
  color: #FFFFFF;
}

.nav-link:hover {
  opacity: 1;
  color: #FFFFFF;
}

.nav-link.active {
  opacity: 1;
  color: #FFFFFF;
  font-weight: 400;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #5EBBEA;
  transition: width 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

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

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header .nav-cta {
  height: 33px;
  min-height: 33px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  gap: 6px;
}

.site-header .nav-cta .btn-arrow {
  width: 12px;
  height: 12px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transition: all var(--transition-fast);
}

.site-header:not(.scrolled) .mobile-menu-toggle .bar {
  background-color: #FFFFFF;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #0A0A0A;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 36px;
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.mobile-menu-overlay.active .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 24px;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (FULL SCREEN CINEMATIC VIDEO)
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
  background-color: #000000;
  overflow: hidden;
  border: none;
  border-bottom: none;
  outline: none;
  box-shadow: none;
}

.hero-video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000000;
  border: none;
  border-bottom: none;
  outline: none;
  box-shadow: none;
}

.hero-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.38);
  transform-origin: center center;
  filter: brightness(0.88) contrast(0.95);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
}

.hero-video-element.is-ready {
  opacity: 0.82;
}

.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%) scale(1.18);
  pointer-events: none;
  border: none;
  z-index: 1;
  opacity: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 10s ease-out;
  border: none;
}

.hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.8) 88%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 380px;
  max-height: 50vh;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
}

/* --------------------------------------------------------------------------
   AMRAPALI 2026 PAYMENT, QR & CONFIRMATION MODAL STYLES
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.badge-warning { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }
.badge-info { background: #E0F2FE; color: #075985; border: 1px solid #BAE6FD; }
.badge-success { background: #DCFCE7; color: #166534; border: 1px solid #BBF7D0; }
.badge-danger { background: #FEE2E2; color: #991B1B; border: 1px solid #FCA5A5; }

.qr-box-wrap {
  background: #141414;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-medium);
  padding: 20px;
  text-align: center;
  margin: 18px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.qr-code-square {
  width: 170px;
  height: 170px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.qr-code-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-medium);
  border: 1px solid var(--color-border);
  background: #1A1A1A;
  margin-top: 20px;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
  color: #E5E5E5;
}
.admin-table th {
  background: #141414;
  color: #FFFFFF;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 11.5px;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: middle;
}
.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

.admin-action-btn {
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: var(--radius-small);
  cursor: pointer;
  border: 1px solid transparent;
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.admin-btn-approve { background: #166534; color: #fff; }
.admin-btn-approve:hover { background: #14532d; }
.admin-btn-reject { background: #991B1B; color: #fff; }
.admin-btn-reject:hover { background: #7f1d1d; }
.admin-btn-resend { background: var(--color-primary-dark); color: #fff; }
.admin-btn-resend:hover { background: #0c4362; }

.hero-text-box {
  max-width: 900px;
}

.hero-heading {
  color: var(--color-white);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}

.hero-subheading {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.5vw, 19px);
  margin-bottom: 22px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-heading);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-icon {
  width: 16px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  position: relative;
}

.scroll-dot {
  width: 3px;
  height: 5px;
  background: var(--color-primary);
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollBob 2s infinite;
}

@keyframes scrollBob {
  0% { transform: translate(-50%, 0); opacity: 1; }
  80% { transform: translate(-50%, 8px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* --------------------------------------------------------------------------
   7. BRAND STORY / EDITORIAL SECTION
   -------------------------------------------------------------------------- */
.about-brand-section {
  background-color: #000000;
  position: relative;
  z-index: 2;
  border-top: none;
  margin-top: -1px;
  padding-top: calc(60px + 1px);
}

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

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.editorial-content h2 {
  margin-bottom: 16px;
}

.editorial-content p {
  font-size: 15px;
  color: var(--color-body-text);
  margin-bottom: 16px;
}

.editorial-media {
  position: relative;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.editorial-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.editorial-media:hover .editorial-img {
  transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   8. STATISTICS COUNTER SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 48px 0;
  border-top: none;
  border-bottom: none;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A0A0A0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0;
}

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

/* 1. Eyebrow, Heading, and Subheading Entrance (Fade-Up) */
.testimonial-reveal-header {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.testimonials-section.is-visible .testimonial-reveal-header {
  animation: testimonialHeaderFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--reveal-index, 0) * 120ms);
}

@keyframes testimonialHeaderFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2. Testimonial Cards — Staggered Entrance & Smooth Hover Lift */
.testimonial-card {
  background-color: #1A1A1A;
  border-radius: var(--radius-large);
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform, box-shadow;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease;
}

.testimonials-section.is-visible .testimonial-card {
  opacity: 1;
  transform: translateY(0);
  animation: testimonialCardEntrance 0.65s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: calc(180ms + var(--card-index, 0) * 150ms);
}

@keyframes testimonialCardEntrance {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonials-section.is-visible .testimonial-card:hover,
.testimonial-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.motion-quote-mark {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 68px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  transition: transform 0.5s ease, color 0.5s ease;
}

.testimonial-card:hover .motion-quote-mark {
  color: rgba(255, 255, 255, 0.12);
  transform: scale(1.1) rotate(-6deg);
}

.card-glow-border {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-large);
  padding: 1.5px;
  background: linear-gradient(135deg, transparent, rgba(94, 187, 234, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card:hover .card-glow-border {
  opacity: 1;
}

.testimonial-rating {
  position: relative;
  z-index: 2;
  color: #F59E0B;
  font-size: 15px;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating {
  transform: translateX(4px);
}

/* 3. Star Ratings Pop-in Animation */
.star-glyph {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
  will-change: opacity, transform;
}

.testimonials-section.is-visible .star-glyph {
  animation: starPopIn 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: calc(350ms + var(--card-index, 0) * 150ms + var(--star-index, 0) * 50ms);
}

@keyframes starPopIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-quote {
  font-size: 14.5px;
  line-height: 1.62;
  color: #E5E5E5;
  font-style: italic;
  margin-bottom: 18px;
  flex-grow: 1;
}

.author-name {
  font-family: var(--font-heading);
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.author-role {
  font-size: 12px;
  color: #A0A0A0;
  margin-top: 2px;
  display: block;
}

/* 4. Reduced Motion Compliance */
@media (prefers-reduced-motion: reduce) {
  .testimonials-section .testimonial-reveal-header,
  .testimonials-section.is-visible .testimonial-reveal-header {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .testimonials-section .testimonial-card,
  .testimonials-section.is-visible .testimonial-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .testimonials-section.is-visible .testimonial-card:hover,
  .testimonial-card:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(8, 18, 30, 0.04) !important;
  }

  .star-glyph,
  .testimonials-section.is-visible .star-glyph {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
/* --------------------------------------------------------------------------
   9. CLASS STATUS PILL BADGES
   -------------------------------------------------------------------------- */
.online-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  background-color: rgba(94, 187, 234, 0.18);
  color: #5EBBEA;
  border: 1px solid rgba(94, 187, 234, 0.38);
  vertical-align: middle;
}

.offline-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.08);
  color: #A0A0A0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   9.1 EXPLORE CLASSES SECTION & MAGNETIC CAROUSEL
   -------------------------------------------------------------------------- */
.explore-classes-section {
  position: relative;
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0 90px 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.explore-classes-section .section-container {
  position: relative;
  z-index: 2;
}

.explore-classes-bg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  user-select: none;
}

.explore-classes-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.5;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 55%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 18%,
    black 55%,
    transparent 100%
  );
  transition: opacity 0.3s ease;
}

.explore-classes-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    #000000 0%,
    rgba(0, 0, 0, 0.55) 40%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.explore-classes-fade-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 380px;
  background: linear-gradient(
    to top,
    #000000 0%,
    rgba(0, 0, 0, 0.96) 15%,
    rgba(0, 0, 0, 0.85) 30%,
    rgba(0, 0, 0, 0.5) 55%,
    rgba(0, 0, 0, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.explore-classes-header {
  text-align: center;
  margin-bottom: 48px;
  width: 100%;
  box-sizing: border-box;
}

.explore-classes-header .section-heading {
  max-width: 100%;
  word-break: normal;
}

.magnetic-carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.magnetic-backdrop {
  position: absolute;
  inset: -100px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.44, 0, 0.56, 1);
}

.magnetic-carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 30px 0;
  box-sizing: border-box;
}

.magnetic-item-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: none;
}

.magnetic-thumbnail-card {
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 0px;
  cursor: pointer;
  background-color: #161616;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
  will-change: width, height, border-radius;
}

.magnetic-thumbnail-card.is-hovered {
  border-radius: 16px;
}

.magnetic-thumbnail-card.is-expanded {
  border-radius: 24px;
}

.magnetic-thumbnail-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
}

.magnetic-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Per-item image cropping to keep subject/person clearly framed */
.magnetic-item-wrap[data-carousel-index="0"] .magnetic-card-img { object-position: 25% center; }
.magnetic-item-wrap[data-carousel-index="1"] .magnetic-card-img { object-position: 35% top; }
.magnetic-item-wrap[data-carousel-index="2"] .magnetic-card-img { object-position: center 30%; }
.magnetic-item-wrap[data-carousel-index="3"] .magnetic-card-img { object-position: 60% center; }
.magnetic-item-wrap[data-carousel-index="4"] .magnetic-card-img { object-position: center 40%; }

/* Hover overlay label: hidden by default, fades in on hover/focus */
.magnetic-hover-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 26px 4px 10px 4px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading), 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
  user-select: none;
  z-index: 3;
}

/* Show label on hover, focus-visible, focus, and is-hovered */
.magnetic-thumbnail-card:hover .magnetic-hover-label,
.magnetic-thumbnail-card:focus-visible .magnetic-hover-label,
.magnetic-thumbnail-card:focus .magnetic-hover-label,
.magnetic-thumbnail-card.is-hovered .magnetic-hover-label {
  opacity: 1;
}

/* Hide hover label when expanded so it doesn't overlap the detail overlay */
.magnetic-thumbnail-card.is-expanded .magnetic-hover-label {
  opacity: 0 !important;
}

.magnetic-detail-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  pointer-events: none;
  box-sizing: border-box;
}

.magnetic-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}

.magnetic-detail-desc {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.3vw, 15px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 8px 0;
  max-width: 480px;
}

.magnetic-detail-schedule {
  font-family: var(--font-heading);
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.4;
  color: var(--color-muted-text);
  margin: 0 0 20px 0;
}

.magnetic-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  align-self: flex-start;
}

.magnetic-detail-btn:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 187, 234, 0.4);
}

.magnetic-detail-btn .btn-arrow {
  transition: transform var(--transition-fast);
}

.magnetic-detail-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   10. EXPERIENCE & FEATURE PANELS
   -------------------------------------------------------------------------- */
.experience-section {
  padding: 60px 0;
  background-color: #000000;
}

.experience-panels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.exp-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  padding: 24px 20px;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.25);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: #5EBBEA;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.exp-title {
  font-size: 20px;
  color: #FFFFFF;
  margin: 10px 0 4px;
}

.exp-desc {
  color: var(--color-body-text);
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   11. FEATURED EVENT (AMRAPALI 2026)
   -------------------------------------------------------------------------- */
.featured-event-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.event-banner-card {
  background: #1A1A1A;
  border-radius: var(--radius-large);
  overflow: hidden;
  display: grid;
  grid-template-columns: 55% 45%;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 580px;
}

.event-media-side {
  position: relative;
  min-height: 380px;
  max-height: 580px;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-info-side {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-title-highlight {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin: 6px 0 14px;
}

.event-meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.meta-label {
  color: #A0A0A0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.meta-val {
  color: #FFFFFF;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   COMING SOON EVENT SECTION & THEATER CURTAIN REVEAL STYLES
   -------------------------------------------------------------------------- */
.upcoming-performance-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-top: -14px;
  margin-bottom: 54px;
}

.upcoming-performance-heading {
  font-family: 'Satoshi', var(--font-primary), sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
  padding: 0;
}

.pulse-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #5EBBEA;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(94, 187, 234, 0.6);
  animation: liveDotPulse 1.5s ease-in-out infinite;
  will-change: transform, opacity;
}

@keyframes liveDotPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 0.55;
    box-shadow: 0 0 6px rgba(94, 187, 234, 0.4);
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 14px rgba(94, 187, 234, 0.85);
  }
}

.coming-soon-card {
  background: #1A1A1A;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 130px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* --------------------------------------------------------------------------
   INTERACTIVE THEATER CURTAIN REVEAL STYLES
   -------------------------------------------------------------------------- */
.featured-event-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 20px;
}

.featured-event-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  background-color: #000000;
}

.upcoming-performance-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}

.upcoming-performance-heading {
  font-family: 'Satoshi', var(--font-primary), sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  text-align: center;
}

.curtain-stage-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.curtain-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2.4 / 1;
  max-height: 76vh;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #050505;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  user-select: none;
  -webkit-user-select: none;
  isolation: isolate;
  touch-action: none;
}

.curtain-stage:focus-visible {
  outline: 2px solid var(--accent-blue, #5ab4f0);
  outline-offset: 3px;
}

.stage-content {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 8%;
  background: radial-gradient(ellipse at 50% 45%, #1a1a1a 0%, #030303 75%);
  pointer-events: none;
}
.stage-eyebrow {
  color: var(--accent-blue, #5ab4f0); font-size: 0.78rem; letter-spacing: 0.1em;
  font-weight: 600; margin: 0 0 12px; text-transform: uppercase;
}
.stage-heading {
  color: #fff; font-weight: 800; font-size: clamp(1.4rem, 4vw, 2.7rem);
  line-height: 1.15; margin: 0; animation: slowBlink 2.6s ease-in-out infinite;
}
@keyframes slowBlink {
  0%, 100% { opacity: 0.4; text-shadow: 0 0 0 rgba(255,255,255,0); }
  50%      { opacity: 1;   text-shadow: 0 0 26px rgba(255,255,255,0.35); }
}

/* ---------- desktop: canvas cloth simulation ---------- */
canvas#curtainCanvas {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; display: block;
  touch-action: none; cursor: grab;
}
canvas#curtainCanvas.grabbing { cursor: grabbing; }

/* ---------- mobile / touch: lightweight CSS curtain, no physics ---------- */
.mobile-curtain { position: absolute; inset: 0; z-index: 2; display: none; overflow: hidden; }
.m-panel {
  position: absolute; top: 0; bottom: 0; width: 51%;
  background-size: cover; background-position: center;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.55);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.m-left  { left: 0;  border-radius: 0 34px 34px 0 / 0 55% 55% 0; }
.m-right { right: 0; border-radius: 34px 0 0 34px / 55% 0 0 55%; transform: scaleX(-1); }

.edge-fade { position: absolute; left: 0; right: 0; z-index: 4; pointer-events: none; }
.edge-fade-top    { top: 0; height: 14%; background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent); }
.edge-fade-bottom { bottom: 0; height: 16%; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }

.curtain-hint {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.75rem; letter-spacing: 0.05em;
  z-index: 5; pointer-events: none; transition: opacity 300ms ease; margin: 0;
}
@media (max-width: 640px) { .curtain-hint { font-size: 0.65rem; bottom: 12px; } }

.coming-soon-heading {
  font-family: 'Satoshi', var(--font-primary), sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 9.5vw, 110px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  animation: comingSoonEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes comingSoonEntrance {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .coming-soon-card {
    padding: 96px 20px;
    min-height: 320px;
  }
  .coming-soon-heading {
    font-size: clamp(44px, 10vw, 84px);
    letter-spacing: -0.025em;
  }
  .curtain-headline {
    font-size: clamp(28px, 6vw, 48px);
    letter-spacing: -0.02em;
  }
}

@media (max-width: 767px) {
  .coming-soon-card {
    padding: 76px 16px;
    min-height: 260px;
    border-radius: var(--radius-medium);
  }
  .coming-soon-heading {
    font-size: clamp(36px, 11vw, 58px);
    letter-spacing: -0.02em;
  }
  .upcoming-performance-header {
    margin-top: -8px;
    margin-bottom: 36px;
  }
  .upcoming-performance-heading {
    font-size: clamp(20px, 5.5vw, 28px);
    letter-spacing: 0.05em;
  }
  .curtain-stage {
    min-height: 280px;
    border-radius: 16px;
  }
  .curtain-fade-top {
    height: 70px;
  }
  .curtain-fade-bottom {
    height: 80px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stage-heading {
    animation: none !important;
    opacity: 1 !important;
  }
  .m-panel {
    transition: none !important;
  }
}

/* --------------------------------------------------------------------------
   AMRAPALI 2026 SEATS FULL / PORTAL CLOSED STYLES
   -------------------------------------------------------------------------- */
.amrapali-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
}

.btn-seats-full {
  background: rgba(255, 255, 255, 0.12) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  opacity: 0.85 !important;
  box-shadow: none !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  border-radius: var(--radius-pill) !important;
  padding: 0 28px !important;
  height: 48px !important;
  min-height: 48px !important;
}

.status-dot-closed {
  color: #EF4444;
  font-size: 13px;
  line-height: 1;
}

.amrapali-closed-note {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
  line-height: 1.45;
  max-width: 480px;
}

@media (max-width: 767px) {
  .amrapali-cta-wrap {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    margin-top: 16px !important;
  }

  .btn-seats-full {
    width: 80% !important;
    max-width: 280px !important;
    justify-content: center !important;
    margin: 0 auto !important;
  }

  .amrapali-closed-note {
    text-align: center !important;
    margin: 8px auto 0 auto !important;
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }
}

/* --------------------------------------------------------------------------
   12. LIGHTBOX MODAL
   -------------------------------------------------------------------------- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 36px;
  cursor: pointer;
}

.lightbox-media-wrap img {
  border-radius: var(--radius-medium);
  max-height: 75vh;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin-top: 16px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   13. MENTORS & TESTIMONIALS
   -------------------------------------------------------------------------- */
.mentors-section {
  background-color: #000000;
  padding: 150px 0;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.mentor-card {
  background-color: #1A1A1A;
  border-radius: var(--radius-large);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mentor-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.mentor-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mentor-role {
  font-size: 12px;
  font-weight: 700;
  color: #5EBBEA;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.mentor-name {
  font-size: 28px;
  color: #FFFFFF;
  margin: 8px 0 16px;
}

.mentor-bio {
  color: var(--color-body-text);
  font-size: 15px;
}

/* DUAL FAQ & CONTACT US SPLIT BANNER */
.dual-banner-section {
  background-color: #000000;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
  margin-bottom: 120px;
}

.dual-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  width: 100%;
  min-height: 240px;
}

.dual-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  color: #FFFFFF;
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
  height: 100%;
}

.dual-banner-item:hover {
  background-color: transparent;
}

.dual-eyebrow {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: #A0A0A0;
  margin-bottom: 8px;
}

.dual-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.dual-banner-item:hover .dual-title {
  color: #5EBBEA;
  transform: scale(1.03);
}

.dual-divider {
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
  justify-self: center;
}

/* FAQ Accordion */
.faq-section {
  padding: 150px 0;
  background-color: #000000;
}

.faq-list {
  max-width: 840px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: #5EBBEA;
}

.faq-question {
  padding: 24px 30px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #262626;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: #5EBBEA;
  color: #000000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  padding: 0 30px;
  color: #E5E5E5;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

/* --------------------------------------------------------------------------
   14. CLAIM FREE SEAT / TRIAL FORM
   -------------------------------------------------------------------------- */
.trial-main-container {
  padding-top: 130px;
  padding-bottom: 80px;
  background-color: #000000;
}

.trial-page-layout {
  display: grid;
  grid-template-columns: 46% 54%;
  background: #1A1A1A;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  min-height: 620px;
}

.trial-visual-side {
  position: relative;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.trial-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.trial-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  z-index: 1;
}

.trial-video-wrapper iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%) scale(1.35);
  pointer-events: none;
  z-index: 1;
}

.trial-visual-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 32px 32px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  color: #FFFFFF;
}

.trial-form-side {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #1A1A1A;
}

.trial-form-heading {
  font-family: var(--font-heading);
  font-size: 40px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.trial-form-desc {
  color: #A0A0A0;
  margin-bottom: 36px;
  font-size: 16px;
  line-height: 1.5;
}

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

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-small);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: var(--font-body);
  font-size: 16px;
  color: #FFFFFF;
  background: #141414;
  transition: all var(--transition-fast);
}

.form-control::placeholder {
  color: #737373;
}

.form-control:focus {
  outline: none;
  border-color: #5EBBEA;
  background: #181818;
  box-shadow: 0 0 0 4px rgba(94, 187, 234, 0.2);
}

.form-control.error {
  border-color: #d93025;
}

.error-text {
  font-size: 12px;
  color: #d93025;
  margin-top: 4px;
  display: none;
}

/* --------------------------------------------------------------------------
   15. SCHEDULE TABLE & CSS GRID
   -------------------------------------------------------------------------- */

.schedule-table-wrap {
  background: #1A1A1A;
  border-radius: var(--radius-medium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Base table support for admin dashboard tables */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th {
  background: #141414;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  vertical-align: middle;
}

.schedule-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: #E5E5E5;
  vertical-align: middle;
  text-align: left;
}

.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   VIEW SCHEDULE CSS GRID TABLE (Single Source of Truth)
   -------------------------------------------------------------------------- */
.schedule-grid-container {
  min-width: 860px;
  width: 100%;
}

.schedule-header,
.schedule-row {
  display: grid;
  grid-template-columns: 1.2fr 2.4fr 1.4fr 0.9fr 1.1fr;
  align-items: center;
  padding: 0 32px;
  column-gap: 16px;
  box-sizing: border-box;
}

.schedule-header {
  background: #141414;
  height: 56px;
  min-height: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.schedule-row {
  min-height: 68px;
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  color: #E5E5E5;
  transition: background var(--transition-fast);
}

.schedule-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.schedule-rows-wrap .schedule-row:last-child {
  border-bottom: none;
}

/* Column Alignment & Placement */
.schedule-header .col-class,
.schedule-row .col-class {
  text-align: left;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #FFFFFF;
}

.schedule-header .col-day,
.schedule-row .col-day {
  text-align: left;
  justify-self: start;
  color: #E5E5E5;
}

.schedule-header .col-instructor,
.schedule-row .col-instructor {
  text-align: left;
  justify-self: start;
  color: #E5E5E5;
}

.schedule-header .col-status,
.schedule-row .col-status {
  text-align: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.schedule-header .col-action,
.schedule-row .col-action {
  text-align: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Accordion Summary Row */
.schedule-summary-row {
  cursor: pointer;
  user-select: none;
}

.schedule-summary-row:hover {
  background: rgba(255, 255, 255, 0.035);
}

.schedule-summary-row:focus-visible {
  outline: 2px solid #5EBBEA;
  outline-offset: -2px;
}

.schedule-group.is-expanded .schedule-summary-row {
  background: rgba(255, 255, 255, 0.02);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Chevron Icon */
.schedule-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #5EBBEA;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.schedule-group.is-expanded .schedule-chevron {
  transform: rotate(180deg);
}

/* Batch Count Badge */
.batch-count-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-muted-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.02em;
}

/* Sub-Rows (Nesting & Indentation) */
.schedule-sub-rows {
  width: 100%;
}

.schedule-sub-row {
  background: rgba(255, 255, 255, 0.025);
  min-height: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-sub-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.schedule-sub-row .col-class.sub-col-class {
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.sub-branch-icon {
  color: #5EBBEA;
  font-size: 14px;
  line-height: 1;
  opacity: 0.8;
}

.sub-level-badge {
  font-weight: 700;
  color: #FFFFFF;
}

.sub-age-text {
  font-size: 13px;
  color: var(--color-muted-text);
}

.sub-day-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sub-time-text {
  font-size: 12px;
  color: #5EBBEA;
  font-weight: 600;
}

.schedule-group:last-child .schedule-row:last-child,
.schedule-group:last-child .schedule-sub-row:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .schedule-header,
  .schedule-row {
    padding: 0 20px;
    column-gap: 12px;
  }
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  background-color: var(--color-primary-light);
  color: var(--color-primary-dark);
}

/* --------------------------------------------------------------------------
   16. FOOTER STYLES
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0A0A0A;
  color: #E5E5E5;
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 64px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 64px;
}

.footer-brand-col {
  flex: 0 1 340px;
  max-width: 340px;
}

.footer-col {
  flex: 0 0 auto;
}

.footer-brand-name {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand-tagline {
  color: #A0A0A0;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-primary);
  color: #000000;
  transform: translateY(-4px);
}

.footer-heading {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
  margin: 0 0 24px 0;
  padding: 0;
  text-align: left;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: #A0A0A0;
  font-size: 14px;
  line-height: 1.5;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #8C8C8C;
}

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

/* --------------------------------------------------------------------------
   CLASS DETAIL / VIEW DETAILS PAGE STYLES (DESKTOP)
   -------------------------------------------------------------------------- */
.program-detail-page {
  padding-top: 140px;
  padding-bottom: 100px;
  background-color: #000000;
  min-height: 100vh;
}

.program-detail-page .back-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #5EBBEA;
  margin-bottom: 24px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.program-detail-page .back-link:hover {
  transform: translateX(-4px);
}

.program-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  background: #1A1A1A;
  padding: 48px;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.program-detail-hero .badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.program-detail-hero .mode-subtitle {
  font-size: 13.5px;
  font-weight: 700;
  color: #5EBBEA;
  margin-bottom: 14px;
}

.program-detail-hero .lead-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: #E5E5E5;
  margin-bottom: 28px;
}

.program-detail-hero .editorial-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-medium);
  display: block;
}

/* 2-Column Curriculum & Batch Overview Grid */
.program-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 24px;
}

.detail-section-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.curriculum-card {
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-large);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.curriculum-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.curriculum-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #E5E5E5;
  line-height: 1.5;
}

.curriculum-item .check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(94, 187, 234, 0.15);
  color: #5EBBEA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.batch-overview-card {
  background: #1E1E1E !important;
  color: #FFFFFF !important;
  border-radius: var(--radius-large) !important;
  padding: 36px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.overview-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.overview-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  color: #5EBBEA !important;
  letter-spacing: 0.1em !important;
  display: block !important;
}

.overview-val {
  font-size: 15px !important;
  color: #E5E5E5 !important;
  margin: 0 !important;
}

.overview-val.main {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

.overview-val.timing {
  font-size: 14.5px !important;
  line-height: 1.5 !important;
  color: #DADADA !important;
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .header-container, .section-container, .hero-content, .footer-container {
    padding-left: 32px;
    padding-right: 32px;
  }
  
  .editorial-split:not(.program-detail-hero) {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .program-detail-hero {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .experience-panels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 767px) {
  /* Global Container Padding & Box Model Safety */
  .header-container, .section-container, .hero-content, .footer-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
  }

  .desktop-nav, .header-cta-wrap .nav-cta, .header-cta-wrap .header-about-link {
    display: none !important;
  }

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

  /* Header 70px Height */
  .site-header {
    height: 70px !important;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 70px !important;
  }

  .logo-circle-frame {
    width: 36px !important;
    height: 36px !important;
  }

  .brand-title {
    font-size: 16px !important;
  }

  .brand-subtitle {
    font-size: 9px !important;
  }

  /* Navigation Drawer (300ms Smooth Animation, 20px Links) */
  .mobile-menu-overlay {
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), visibility 300ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .mobile-nav-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 24px !important;
  }

  .mobile-link {
    font-size: 20px !important;
    font-weight: 600 !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .mobile-menu-footer {
    position: sticky;
    bottom: 0;
    padding-top: 16px;
    background: #0A0A0A;
  }

  /* Hero Section: 80vh Height, Max 2 Lines Heading, Max 3 Lines Subtitle */
  .hero-section {
    height: 80vh !important;
    min-height: 500px !important;
    max-height: 760px !important;
    padding-top: 80px !important;
    padding-bottom: 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  .hero-video-iframe {
    width: 320vw !important;
    height: 180vw !important;
    min-height: 100vh !important;
    min-width: 177.77vh !important;
    transform: translate(-50%, -50%) scale(1.4) !important;
    opacity: 1 !important;
  }

  .hero-heading {
    font-size: clamp(30px, 8.5vw, 38px) !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
    max-height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .hero-subheading {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin-bottom: 24px !important;
    opacity: 0.92;
    max-height: 4.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .hero-cta-group {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  /* 52px Minimum Height & Pill Radius for Mobile Touch Buttons */
  .btn {
    min-height: 52px !important;
    height: 52px !important;
    border-radius: 999px !important;
    width: 100% !important;
    justify-content: center !important;
    font-size: 15px !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }

  .btn:active {
    transform: scale(0.98);
  }

  /* 1. EVENTS SECTION - Apple/Stripe Style Two-Column Meta Alignment */
  .event-banner-card {
    grid-template-columns: 1fr !important;
    max-height: none !important;
    padding: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 36px rgba(8, 18, 30, 0.25) !important;
  }

  .event-media-side {
    min-height: 180px !important;
    height: 180px !important;
    max-height: 180px !important;
  }

  .event-info-side {
    padding: 24px 20px !important;
  }

  .event-meta-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding-top: 16px !important;
  }

  .meta-row {
    display: grid !important;
    grid-template-columns: 65px 1fr !important;
    align-items: baseline !important;
    gap: 12px !important;
    font-size: 13.5px !important;
  }

  .meta-label {
    color: rgba(255, 255, 255, 0.5) !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    white-space: nowrap !important;
    text-align: left !important;
  }

  .meta-val {
    color: var(--color-white) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    text-align: right !important;
    word-break: break-word !important;
  }

  /* Explore Classes Section & Magnetic Carousel Mobile Refinements */
  .explore-classes-section {
    padding: 50px 0 56px 0 !important;
  }

  .explore-classes-bg-img {
    object-position: center top !important;
  }

  .explore-classes-fade-top {
    height: 100px !important;
  }

  .explore-classes-fade-bottom {
    height: 240px !important;
    bottom: -1px !important;
  }

  .explore-classes-header {
    margin-bottom: 24px !important;
    padding: 0 12px !important;
  }

  .explore-classes-header .section-heading {
    font-size: clamp(22px, 5.8vw, 28px) !important;
    line-height: 1.2 !important;
  }

  .magnetic-carousel-wrapper {
    min-height: 440px !important;
  }

  .magnetic-carousel-track {
    gap: 0 !important;
    padding: 16px 0 !important;
  }

  .magnetic-thumbnail-card {
    width: 64px;
    height: 64px;
    border-radius: 0px;
  }

  .magnetic-thumbnail-card.is-expanded {
    border-radius: 20px;
  }

  .magnetic-hover-label {
    font-size: 11px !important;
    padding: 18px 4px 6px 4px !important;
  }

  .magnetic-detail-overlay {
    padding: 20px 18px !important;
  }

  .magnetic-detail-title {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .magnetic-detail-desc {
    font-size: 12.5px !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
  }

  .magnetic-detail-schedule {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: var(--color-muted-text) !important;
    margin-bottom: 14px !important;
  }

  .magnetic-detail-btn {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }

  /* 2. CLASSES CARDS & BUTTON ALIGNMENT */
  .editorial-split {
    grid-template-columns: 1fr !important;
    padding: 24px 20px !important;
    border-radius: 24px !important;
    gap: 20px !important;
    box-sizing: border-box !important;
  }

  /* CLASSES SECTION SINGLE CTA - MOBILE CENTER ALIGNED (70-80% WIDTH, 24PX TOP & 16PX BOTTOM MARGIN) */
  .editorial-content .program-card-actions {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 24px auto 16px auto !important;
    box-sizing: border-box !important;
  }

  .editorial-content .program-card-actions .btn {
    width: 80% !important;
    max-width: 280px !important;
    flex: 0 0 80% !important;
    min-height: 48px !important;
    height: 48px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
  }

  .program-detail-hero .program-card-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
    margin-top: 20px !important;
    box-sizing: border-box !important;
  }

  .program-detail-hero .program-card-actions .btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: none !important;
    font-size: 13px !important;
    padding: 0 12px !important;
    height: 48px !important;
    min-height: 48px !important;
    border-radius: 999px !important;
    justify-content: center !important;
    white-space: nowrap !important;
    box-sizing: border-box !important;
  }

  /* CLASS DETAIL PAGES MOBILE STYLES */
  .program-detail-page {
    padding-top: 90px !important;
    padding-bottom: 48px !important;
  }

  .program-detail-hero {
    margin-bottom: 32px !important;
    gap: 20px !important;
  }

  .program-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .curriculum-section, .batch-overview-section {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .detail-section-title {
    font-size: 20px !important;
    margin-bottom: 14px !important;
  }

  .curriculum-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .curriculum-item {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    gap: 12px !important;
  }

  .batch-overview-card {
    padding: 24px 20px !important;
    border-radius: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 16px !important;
  }

  /* RESERVATION POPUP / MODAL TOP SAFE SPACING */
  #amrapali-modal.lightbox-modal, #faq-modal.lightbox-modal {
    align-items: flex-start !important;
    padding-top: max(80px, env(safe-area-inset-top)) !important;
    padding-bottom: 32px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* CLAIM FREE SEAT / TRIAL FORM MOBILE SINGLE COLUMN REDESIGN WITH TOP VISUAL IMAGE */
  .trial-main-container {
    padding-top: 90px !important;
    padding-bottom: 48px !important;
    background-color: #000000 !important;
  }

  .trial-page-layout {
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    min-height: auto !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .trial-visual-side {
    display: block !important;
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 24px !important;
    position: relative !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    flex-shrink: 0 !important;
  }

  .trial-visual-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 20px !important;
  }

  .trial-video-wrapper {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 20px !important;
  }

  .trial-video-wrapper iframe {
    height: 180% !important;
    transform: translate(-50%, -50%) scale(1.35) !important;
    z-index: 1 !important;
  }

  .trial-visual-overlay {
    z-index: 2 !important;
    padding: 16px 18px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0) 100%) !important;
  }

  .trial-visual-overlay h2 {
    font-size: 18px !important;
    margin-top: 2px !important;
    margin-bottom: 2px !important;
    line-height: 1.25 !important;
    color: #FFFFFF !important;
  }

  .trial-visual-overlay p {
    font-size: 12px !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #E5E5E5 !important;
  }

  .trial-form-side {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    background-color: transparent !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  .trial-eyebrow {
    text-align: center !important;
    display: block !important;
    margin-bottom: 8px !important;
  }

  .trial-form-heading {
    font-size: clamp(26px, 7vw, 34px) !important;
    text-align: center !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
    color: #FFFFFF !important;
  }

  .trial-form-desc {
    font-size: 14.5px !important;
    text-align: center !important;
    margin-bottom: 28px !important;
    color: #A0A0A0 !important;
    line-height: 1.5 !important;
  }

  .form-group {
    margin-bottom: 18px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .form-label {
    display: block !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    margin-bottom: 6px !important;
    color: #FFFFFF !important;
  }

  .form-control, select.form-control {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    height: 52px !important;
    min-height: 52px !important;
    padding: 14px 16px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
    background: #141414 !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #FFFFFF !important;
  }

  select.form-control {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23FFFFFF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 20px !important;
    padding-right: 40px !important;
  }

  .trial-form-side .btn-primary {
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    justify-content: center !important;
    margin-top: 12px !important;
    box-sizing: border-box !important;
  }

  .amrapali-modal-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 32px 0 !important;
    position: relative !important;
    bottom: auto !important;
    border-radius: 24px !important;
    padding: 32px 20px 28px !important;
    max-height: none !important;
    box-sizing: border-box !important;
    background: #1A1A1A !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7) !important;
  }

  /* 3. STATISTICS SECTION */
  .stats-section {
    padding: 32px 0 !important;
  }

  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 16px 6px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 16px !important;
    box-sizing: border-box !important;
  }

  .stat-number, .stat-value {
    font-family: var(--font-heading) !important;
    font-size: clamp(16px, 4.5vw, 22px) !important;
    font-weight: 800 !important;
    color: var(--color-primary) !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
    white-space: nowrap !important;
    text-align: center !important;
  }

  .stat-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.25 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
    text-align: center !important;
  }

  /* About Brand Section */
  .about-brand-section {
    padding: 32px 20px 24px !important;
    text-align: center !important;
    background-color: #000000 !important;
    border-top: none !important;
    margin-top: -1px !important;
  }

  .about-brand-text {
    font-size: 15px !important;
    line-height: 1.55 !important;
    max-height: 6.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }

  /* Typography Scale */
  h1, .display-heading {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  h2, .section-heading {
    font-size: 28px !important;
    line-height: 1.22 !important;
  }

  h3 {
    font-size: 20px !important;
    line-height: 1.3 !important;
  }

  .section-padding {
    padding: 44px 0 !important;
  }

  .eyebrow {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }

  /* Testimonials: Horizontal Touch Swipe Slider */
  .testimonials-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 14px !important;
    padding-bottom: 16px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .testimonial-card {
    flex: 0 0 85% !important;
    min-width: 85% !important;
    scroll-snap-align: start !important;
    border-radius: 20px !important;
    padding: 22px 18px !important;
  }

  .motion-quote-mark {
    font-size: 50px !important;
    top: 10px !important;
    right: 14px !important;
  }

  .testimonial-rating {
    font-size: 13.5px !important;
    margin-bottom: 10px !important;
  }

  .testimonial-quote {
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
  }

  .author-name {
    font-size: 14px !important;
  }

  .author-role {
    font-size: 11.5px !important;
  }

  /* Schedule Cards for Mobile */
  .schedule-desktop-view {
    display: none !important;
  }

  .schedule-mobile-view {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  .schedule-mobile-card {
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }

  /* Compressed Mobile Footer Accordions (40% Reduced Padding) */
  .site-footer {
    padding: 32px 0 24px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .footer-brand-col {
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-bottom: 12px !important;
  }

  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .footer-accordion-toggle {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    border: none !important;
    padding: 16px 0 !important;
    color: var(--color-white) !important;
    font-family: var(--font-heading) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    text-align: left !important;
  }

  .accordion-arrow {
    transition: transform 0.3s ease !important;
  }

  .footer-accordion.active .accordion-arrow {
    transform: rotate(180deg) !important;
  }

  .footer-accordion-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease !important;
    padding: 0 0 !important;
  }

  .footer-accordion.active .footer-accordion-content {
    max-height: 520px !important;
    padding: 0 0 16px !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
  }

  /* Form iOS Zoom Prevention */
  .form-control, .form-select, input[type="text"], input[type="email"], input[type="tel"], select, textarea {
    font-size: 16px !important;
    padding: 14px 16px !important;
  }
}

@media (min-width: 768px) {
  .schedule-mobile-view {
    display: none !important;
  }
  .schedule-desktop-view {
    display: block !important;
  }
  .accordion-arrow {
    display: none !important;
  }
  .footer-accordion-toggle {
    background: transparent !important;
    border: none !important;
    cursor: default !important;
    pointer-events: none !important;
    padding: 0 !important;
    margin: 0 0 24px 0 !important;
    color: var(--color-white) !important;
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.12em !important;
    line-height: 1.2 !important;
    text-align: left !important;
    width: auto !important;
    display: inline-block !important;
  }
  .footer-accordion-content {
    max-height: none !important;
    overflow: visible !important;
    display: flex !important;
    padding: 0 !important;
  }
}

/* Extra Small Screens (320px - 360px) */
@media (max-width: 360px) {
  .header-container, .section-container, .hero-content, .footer-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .meta-row {
    grid-template-columns: 58px 1fr !important;
    gap: 8px !important;
  }

  .meta-label {
    font-size: 10px !important;
  }

  .meta-val {
    font-size: 12.5px !important;
  }

  .stat-number, .stat-value {
    font-size: 15px !important;
  }

  .stat-label {
    font-size: 9px !important;
  }
}

/* --------------------------------------------------------------------------
   RESERVE SEAT POPUP / MODAL REDESIGN
   -------------------------------------------------------------------------- */
#amrapali-modal .lightbox-backdrop {
  background-color: rgba(0, 0, 0, 0.75) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  transition: opacity 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.amrapali-modal-card {
  background: #1A1A1A !important;
  border-radius: 24px !important;
  width: 100% !important;
  max-width: 740px !important;
  max-height: 90vh !important;
  overflow: hidden !important;
  padding: 0 !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  position: relative !important;
  text-align: left !important;
  box-sizing: border-box !important;
  transform: scale(0.96) translateY(10px) !important;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), opacity 250ms ease !important;
  display: flex !important;
  flex-direction: column !important;
}

#amrapali-modal.active .amrapali-modal-card {
  transform: scale(1) translateY(0) !important;
}

.modal-header-banner {
  padding: 24px 32px 18px 32px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  background: #1A1A1A !important;
  flex-shrink: 0 !important;
}

.modal-close-btn {
  position: absolute !important;
  top: 20px !important;
  right: 24px !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
  font-size: 22px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all var(--transition-fast) !important;
  z-index: 12 !important;
}

.modal-close-btn:hover {
  background: #FFFFFF !important;
  color: #000000 !important;
}

.modal-event-pill-bar {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 10px !important;
  background: #141414 !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-size: 12.5px !important;
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

.modal-scroll-body {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 24px 32px 32px 32px !important;
  -webkit-overflow-scrolling: touch !important;
}

.modal-input-field {
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: #141414 !important;
  padding: 16px 20px !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  color: #FFFFFF !important;
  box-sizing: border-box !important;
  transition: all var(--transition-fast) !important;
}

.modal-input-field:focus {
  outline: none !important;
  border-color: #5EBBEA !important;
  background: #1A1A1A !important;
  box-shadow: 0 0 0 4px rgba(94, 187, 234, 0.25) !important;
}

select.modal-input-field {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23FFFFFF' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 18px center !important;
  background-size: 20px !important;
  padding-right: 48px !important;
}

.modal-cta-btn {
  width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  font-family: var(--font-heading) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  box-sizing: border-box !important;
}

.modal-footer-note {
  font-size: 12.5px !important;
  color: var(--color-muted-text) !important;
  text-align: center !important;
  margin-top: 12px !important;
}

/* MOBILE FULL-SCREEN MODAL SCREEN (< 767px) */
@media (max-width: 767px) {
  #amrapali-modal.lightbox-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
    align-items: flex-end !important;
    z-index: 9999 !important;
  }

  #amrapali-modal .lightbox-backdrop {
    width: 100% !important;
    height: 100% !important;
  }

  .amrapali-modal-card {
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100dvh !important;
    max-height: 100dvh !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateY(100%) !important;
    transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    background: #1A1A1A !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  #amrapali-modal.active .amrapali-modal-card {
    transform: translateY(0) !important;
  }

  .modal-header-banner {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    background: #1A1A1A !important;
    padding: max(16px, env(safe-area-inset-top)) 20px 14px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .modal-close-btn {
    top: max(14px, env(safe-area-inset-top)) !important;
    right: 16px !important;
    width: 36px !important;
    height: 36px !important;
  }

  .modal-scroll-body {
    flex: 1 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 20px 20px max(80px, calc(60px + env(safe-area-inset-bottom))) 20px !important;
    -webkit-overflow-scrolling: touch !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Single Column Stacking for Form Row Grids on Mobile (320px–480px) */
  .form-row-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
  }

  .form-group {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
  }

  .modal-input-field {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .amrapali-event-summary {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px !important;
  }

  .summary-item {
    width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
  }

  .modal-event-pill-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .qr-box-wrap {
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .modal-cta-btn {
    position: sticky !important;
    bottom: max(14px, env(safe-area-inset-bottom)) !important;
    z-index: 30 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    margin-top: 20px !important;
    box-shadow: 0 8px 24px rgba(8, 18, 30, 0.2) !important;
    box-sizing: border-box !important;
  }
}

/* ==========================================================================
   19. ABOUT US PAGE & FLIP GALLERY
   ========================================================================== */
.about-page-wrap {
  padding-top: 140px;
  padding-bottom: 120px;
  min-height: 80vh;
  background-color: #000000;
}

/* 1 & 2: Center-aligned Hero Header */
.about-hero-header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-eyebrow {
  color: var(--accent-blue, #5ab4f0);
  font-family: 'Satoshi', var(--font-heading), sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  text-align: center;
}

.about-heading {
  font-family: 'Satoshi', var(--font-heading), sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

/* 3, 4, 5: Grainy Carousel with ~64px vertical gap above and below */
.about-gallery-wrap {
  width: 100%;
  max-width: 100%;
  margin: 64px auto;
  display: flex;
  justify-content: center;
}

.grainy-carousel-host {
  position: relative;
  width: 100%;
  height: 380px;
  min-width: 0;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  touch-action: none;
  background: rgba(0, 0, 0, 0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* 6 & 7: Content Block (History & Mission) */
.about-content-block {
  max-width: 960px;
  margin: 0 auto;
}

.about-paragraph {
  font-family: 'Satoshi', var(--font-body), sans-serif;
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--color-body-text, #E5E5E5);
  margin: 0 0 12px 0;
  max-width: 100%;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   20. ABOUT US - FOUNDER PROFILE SECTION
   -------------------------------------------------------------------------- */
.founder-section {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 48px;
  align-items: center;
}

.founder-media {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-large, 20px);
  overflow: hidden;
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform var(--transition-normal, 0.35s ease);
}

.founder-card:hover .founder-img {
  transform: scale(1.02);
}

.founder-info {
  max-width: 520px;
}

.founder-eyebrow {
  color: var(--accent-blue, #5ab4f0);
  font-family: 'Satoshi', var(--font-heading), sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.founder-name {
  font-family: 'Satoshi', var(--font-heading), sans-serif;
  font-size: clamp(28px, 2.8vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 16px 0;
}

.founder-bio {
  font-family: 'Satoshi', var(--font-body), sans-serif;
  font-size: clamp(17px, 1.35vw, 18px);
  line-height: 1.85;
  color: var(--color-body-text, #E5E5E5);
  margin: 0;
  max-width: 52ch;
}

/* Tablet & Mobile Responsive */
@media (max-width: 900px) {
  .founder-card {
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .about-gallery-wrap {
    margin: 40px auto;
  }

  .grainy-carousel-host {
    height: 300px;
    border-radius: 14px;
  }

  .founder-section {
    margin-top: 40px;
    padding-top: 36px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  .founder-media {
    max-width: 280px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }

  .founder-info {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .founder-name {
    margin-bottom: 12px;
  }

  .founder-bio {
    max-width: 100%;
    text-align: center;
  }
}

/* ==========================================================================
   WHAT WE CREATE - CINEMATIC STORYTELLING SECTION
   ========================================================================== */
.what-we-create-section {
  background-color: #000000;
  color: #FFFFFF;
  padding-top: 130px;
  position: relative;
  overflow: hidden;
}

.wwc-header {
  text-align: center;
  max-width: 1050px;
  margin: 0 auto 64px auto;
  padding: 0 24px;
}

.wwc-header .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 12px 0 16px 0;
}

.wwc-header .lead-text {
  font-size: 17.5px;
  color: #A3A3A3;
  line-height: 1.6;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .wwc-header .lead-text {
    font-size: 17.5px;
    white-space: nowrap;
  }
}

@media (max-width: 899px) {
  .wwc-header .lead-text {
    font-size: clamp(15px, 3.8vw, 17px);
    white-space: normal;
    max-width: 680px;
  }
}

.wwc-panels-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  background-color: #000000;
}

.wwc-panel {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: none;
  background-color: #000000;
}

.wwc-panel-bg {
  position: absolute;
  inset: -40px 0 -40px 0;
  background-size: cover;
  background-position: center;
  background-color: #000000;
  transform: scale(1.0);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
  will-change: transform;
  z-index: 1;
}

.wwc-panel.is-active .wwc-panel-bg {
  transform: scale(1.04);
}

.wwc-panel-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    /* Top fade - light sliver blend */
    linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.3) 6%, rgba(0, 0, 0, 0) 14%),
    /* Bottom fade - light sliver blend */
    linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.3) 6%, rgba(0, 0, 0, 0) 14%),
    /* Center radial readability overlay */
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 2;
}

.wwc-panel-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 68px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  opacity: 0.35;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wwc-panel.is-active .wwc-panel-content {
  opacity: 1;
  transform: translateY(0);
}

.wwc-number-badge {
  display: none;
}

.wwc-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 auto 8px auto;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.wwc-tagline {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  font-style: italic;
  color: #93C5FD;
  margin: 0 auto 20px auto;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.wwc-description {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.65;
  color: #D4D4D8;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 28px auto;
  text-align: center;
}

.wwc-mobile-image-card {
  display: none;
}

.wwc-examples-wrap {
  margin: 0 auto 28px auto;
  width: 100%;
  max-width: 100%;
  text-align: center;
}

#panel-events .wwc-examples-wrap,
#panel-annual .wwc-examples-wrap {
  margin-bottom: 0;
}

.wwc-examples-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717A;
  margin: 0 auto 12px auto;
  display: block;
  text-align: center;
  width: 100%;
}

.wwc-examples-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.wwc-example-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  color: #E4E4E7;
  backdrop-filter: blur(4px);
  text-align: center;
}

.wwc-amrapali-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.35);
  border-radius: 12px;
  color: #93C5FD;
  font-size: 13px;
  font-weight: 600;
  margin: 0 auto 24px auto;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.wwc-amrapali-badge:hover {
  background: rgba(37, 99, 235, 0.25);
  transform: translateY(-2px);
  color: #BFDBFE;
  text-decoration: none;
}

.wwc-badge-icon {
  color: #60A5FA;
  font-size: 14px;
}

.wwc-note {
  font-size: 13px;
  color: #A1A1AA;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.wwc-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
}

.wwc-cta-btn {
  font-size: 15px;
  padding: 14px 28px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .wwc-panel-content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .wwc-panel-bg {
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile Stacked Layout (strictly vertical) */
@media (max-width: 767px) {
  .what-we-create-section {
    padding-top: 100px;
  }
  
  .wwc-header {
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .wwc-panel {
    min-height: auto;
    padding: 36px 0;
    flex-direction: column;
    align-items: center;
  }

  .wwc-panel-bg {
    display: none;
  }

  .wwc-panel-overlay {
    display: none;
  }

  .wwc-panel-content {
    opacity: 1;
    transform: none;
    padding: 0 18px;
    align-items: center;
    text-align: center;
  }

  .wwc-mobile-image-card {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    margin: 18px auto 24px auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .wwc-mobile-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .wwc-mobile-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  }

  .wwc-examples-list {
    gap: 6px 8px;
    justify-content: center;
  }

  .wwc-example-pill {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* ==========================================================================
   WEDDING INQUIRY PAGE STYLES
   ========================================================================== */
.wedding-inquiry-page-container {
  padding-top: 130px;
  padding-bottom: 80px;
  background-color: #000000;
  min-height: 100vh;
}

.wedding-inquiry-layout {
  display: grid;
  grid-template-columns: 44% 56%;
  background: #141417;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
  margin-top: 24px;
}

.wedding-visual-side {
  position: relative;
  background-color: #0A0A0C;
  overflow: hidden;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.wedding-visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  opacity: 0.45;
  transform: scale(1.03);
  z-index: 1;
}

.wedding-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.95) 70%, #0A0A0C 100%);
  z-index: 2;
}

.wedding-visual-content {
  position: relative;
  z-index: 3;
}

.wedding-visual-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin: 10px 0 16px 0;
}

.wedding-visual-desc {
  font-size: 15px;
  color: #D4D4D8;
  line-height: 1.6;
  margin-bottom: 28px;
}

.wedding-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.wedding-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #E4E4E7;
}

.wedding-feature-check {
  color: #2563EB;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.wedding-scope-notice {
  font-size: 12px;
  color: #A1A1AA;
  line-height: 1.5;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.wedding-form-side {
  padding: 52px 48px;
  background-color: #141417;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wedding-form-heading {
  font-family: var(--font-heading);
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 8px 0 12px 0;
  letter-spacing: -0.02em;
}

.wedding-form-desc {
  font-size: 15px;
  color: #A1A1AA;
  line-height: 1.55;
  margin-bottom: 32px;
}

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

.wedding-error-banner {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: var(--radius-small, 10px);
  padding: 14px 18px;
  color: #FCA5A5;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.wedding-error-banner a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 600;
}

.wedding-error-banner a:hover {
  color: #93C5FD;
}

.wedding-success-container {
  text-align: center;
  padding: 40px 24px;
}

.wedding-success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.wedding-success-heading {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.wedding-success-desc {
  font-size: 15px;
  color: #D4D4D8;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 32px auto;
}

.wedding-success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .wedding-inquiry-layout {
    grid-template-columns: 1fr;
  }
  .wedding-visual-side {
    padding: 36px 24px;
  }
  .wedding-form-side {
    padding: 36px 24px;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
