/* ==========================================================================
   HILARY JACKSON DANCE WORLD - BRIGHT, VIBRANT & JAZZY DANCE DESIGN SYSTEM
   "Born to Dance, In God We Trust"
   ========================================================================== */

:root {
  /* Crisp Light & Vibrant Color Palette */
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-warm: #fefce8;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;

  --color-primary: #d97706; /* Vibrant Amber Gold */
  --color-primary-light: #fbbf24;
  --color-primary-dark: #b45309;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --sunset-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  --royal-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  --flame-gradient: linear-gradient(135deg, #ff3366 0%, #f59e0b 100%);

  --text-dark: #0f172a;
  --text-heading: #1e293b;
  --text-body: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-gold: #fcd34d;

  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.07);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.1);
  --shadow-gold: 0 10px 25px rgba(217, 119, 6, 0.25);
  --shadow-hover: 0 16px 36px rgba(15, 23, 42, 0.12);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-body);
  line-height: 1.65;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* ----------------- Typography ----------------- */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

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

.text-dark {
  color: var(--text-dark);
}

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

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

.text-center {
  text-align: center !important;
}

/* ----------------- Layout Containers ----------------- */
.container {
  width: 100%;
  max-width: 1220px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5.5rem;
  position: relative;
}

.section-tight {
  padding-block: 3.5rem;
}

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

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

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: #fef3c7;
  color: #b45309;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid #fde68a;
}

.section-title {
  font-size: clamp(2.1rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

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

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.925rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.35);
  filter: brightness(1.05);
}

.btn-dark {
  background: #0f172a;
  color: #ffffff;
}

.btn-dark:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: #ffffff;
  border-color: var(--border-light);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1rem;
}

/* ----------------- Header & Navigation ----------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  line-height: 1.15;
}

.brand-sub {
  font-size: 0.725rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.2vw, 2.5rem);
  flex: 1;
  margin-inline: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-heading);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  white-space: nowrap;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--color-primary);
  background: #fef3c7;
}

.nav-link.active {
  color: var(--color-primary);
  background: #fffbeb;
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 70%;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.nav-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.nav-social-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-dark);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 0.4rem;
}

/* Mobile Drawer */
.mobile-menu {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  border-bottom: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-150%);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-link.active {
  color: var(--color-primary);
}

.mobile-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border-gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.mobile-social-btn:hover, .mobile-social-btn:active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ----------------- Hero Stage (Bright & Jazzy Split Slider Layout) ----------------- */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 155px;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 80% 20%, #fef3c7 0%, #f8fafc 50%, #ffffff 100%);
  overflow: hidden;
}

.hero-video-bg-mobile {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-pill.gold {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}

.hero-pill.blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.hero-title {
  font-size: clamp(2.3rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  letter-spacing: -0.03em;
}

.hero-title .text-gradient {
  color: var(--color-primary);
  background: none;
  -webkit-text-fill-color: var(--color-primary);
  font-weight: 900;
  text-shadow: none;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.35rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.history-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}

/* Mobile-only stats block (visible only on mobile, ALWAYS hidden on desktop) */
body .hero-stats-mobile,
.hero-stats.hero-stats-mobile {
  display: none !important;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.3rem;
}

/* Hero Right Column Slider - Fancy Luxury Edition */
.hero-slider-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin-inline: auto;
}

.hero-slider-frame {
  position: relative;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #fef3c7 35%, #ffffff 50%, #fde68a 70%, #d97706 100%);
  box-shadow: 0 22px 55px rgba(217, 119, 6, 0.2), 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slider-frame:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 32px 75px rgba(217, 119, 6, 0.28), 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: #0f172a;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1.5px solid var(--border-gold);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
}

.slider-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: -20px;
}

.slider-btn.next {
  right: -20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dots .dot.active {
  width: 32px;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.hero-badge-float {
  position: absolute;
  bottom: -15px;
  left: 55px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 12;
}

.hero-badge-float i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
}

.hero-pill.gold {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #b45309;
}

.hero-pill.blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1d4ed8;
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

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

.stat-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

/* Jazzy Hero Collage & Media */
.hero-media {
  position: relative;
}

.hero-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.hero-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #ffffff;
  aspect-ratio: 4/5;
  background: #f1f5f9;
}

.hero-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* ----------------- Fancy Luxury Showcase Portrait ----------------- */
.fancy-portrait-wrapper {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin-inline: auto;
}

.fancy-portrait-card {
  position: relative;
  border-radius: 28px;
  padding: 8px;
  background: linear-gradient(135deg, #f59e0b 0%, #fef3c7 35%, #ffffff 50%, #fde68a 70%, #d97706 100%);
  box-shadow: 0 25px 60px rgba(217, 119, 6, 0.2), 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fancy-portrait-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 35px 80px rgba(217, 119, 6, 0.28), 0 15px 35px rgba(0, 0, 0, 0.12);
}

.fancy-portrait-inner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 3.8 / 4.9;
}

.fancy-portrait-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fancy-portrait-card:hover .fancy-portrait-inner img {
  transform: scale(1.03);
}

.fancy-corner-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 800;
  color: #b45309;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 5;
}

.fancy-corner-badge i {
  color: #d97706;
}

.fancy-bottom-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.5rem 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.72) 50%, rgba(15, 23, 42, 0.92) 100%);
  color: #ffffff;
  z-index: 4;
}

.fancy-bottom-banner .banner-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fancy-bottom-banner .banner-subtitle {
  font-size: 0.825rem;
  color: #fde68a;
  font-weight: 600;
  letter-spacing: 0.3px;
}

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

.hero-badge-float {
  position: absolute;
  bottom: -20px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 10;
}

.hero-badge-float i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ----------------- Marquee Ticker ----------------- */
.marquee-bar {
  background: #0f172a;
  color: #ffffff;
  padding-block: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.marquee-item span.gold {
  color: #fbbf24;
}

.marquee-item i {
  color: #f59e0b;
  font-size: 0.75rem;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------- Clean & Jazzy Cards ----------------- */
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

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

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
}

.bright-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.bright-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.bright-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #cbd5e1;
}

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

.card-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: #fef3c7;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all var(--transition);
}

.bright-card:hover .card-icon-box {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: scale(1.08);
}

.card-title {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

/* ----------------- Jazzy Media Cards ----------------- */
.photo-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.photo-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #e2e8f0;
}

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

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

.photo-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

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

/* ----------------- Filter Tabs ----------------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.filter-pill {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.filter-pill:hover, .filter-pill.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

/* ----------------- Interactive Quote Estimator ----------------- */
.calc-wrapper {
  background: #ffffff;
  border: 2px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control, .calc-select, .form-input, .form-textarea, .form-select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.85rem 1.15rem;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-md);
  color: var(--text-dark);
  outline: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
}

.form-control:focus, .calc-select:focus, .form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.calc-output-box {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fcd34d;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.calc-output-price {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--color-primary-dark);
  margin-block: 0.5rem;
  line-height: 1;
}

/* ----------------- Pricing Table (Bright & Jazzy) ----------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.price-card {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg), 0 0 0 4px rgba(245, 158, 11, 0.15);
  transform: scale(1.03);
}

.price-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #ffffff;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-top {
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.75rem;
  text-align: center;
}

.price-val {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-block: 0.35rem;
}

.price-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  flex-grow: 1;
}

.price-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-heading);
}

.price-feature-item i {
  color: #10b981;
  font-size: 0.9rem;
}

/* ----------------- Timeline ----------------- */
.history-timeline {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  padding-left: 2.5rem;
  border-left: 3px solid var(--color-primary);
}

.history-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.history-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 5px #ffffff, 0 0 0 7px var(--border-gold);
}

.history-content {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.history-content:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.history-year {
  display: inline-block;
  padding: 0.2rem 0.85rem;
  border-radius: var(--radius-full);
  background: #fef3c7;
  font-size: 0.8rem;
  font-weight: 800;
  color: #b45309;
  margin-bottom: 0.5rem;
}

/* ----------------- FAQ Accordion ----------------- */
.accordion {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.05rem;
  user-select: none;
}

.accordion-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  display: none;
}

.accordion-item.active {
  border-color: var(--color-primary);
}

.accordion-item.active .accordion-body {
  display: block;
}

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

.accordion-icon {
  color: var(--color-primary);
  transition: transform var(--transition);
}

/* ----------------- Floating WhatsApp ----------------- */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: all var(--transition);
}

.floating-wa:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

/* ----------------- Footer ----------------- */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding-top: 5rem;
  padding-bottom: 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-desc {
  color: #94a3b8;
  font-size: 0.925rem;
  line-height: 1.7;
  margin-block: 1.25rem;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.footer-social-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-link-list a {
  color: #94a3b8;
  font-size: 0.925rem;
}

.footer-link-list a:hover {
  color: #fbbf24;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid #1e293b;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* ----------------- Toast Alerts ----------------- */
.toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1050;
}

.toast {
  background: #0f172a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  font-size: 0.925rem;
  border-left: 4px solid var(--color-primary);
}

/* ----------------- Responsive Breakpoints ----------------- */
@media (max-width: 1200px) {
  .nav-menu {
    gap: 1.25rem;
    margin-inline: 1rem;
  }
  .nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }
}

@media (max-width: 1040px) {
  .nav-menu, .nav-actions .btn-outline, .nav-actions .nav-socials {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero {
    padding-top: 140px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .hero-desc {
    margin-inline: auto;
  }
  .hero-actions,
  .history-actions {
    justify-content: center;
    margin-bottom: 0.75rem;
  }
  .hero-badge-row {
    justify-content: center;
  }
  .hero-stats {
    max-width: 520px;
    margin-inline: auto;
  }
  .hero-media {
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }
  .slider-btn.prev {
    left: 8px;
  }
  .slider-btn.next {
    right: 8px;
  }
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
  /* On mobile: hide the stats inside hero-content, show the one below the slider */
  .hero-stats-desktop {
    display: none !important;
  }
  body .hero-stats-mobile,
  .hero-stats.hero-stats-mobile {
    display: flex !important;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(251, 191, 36, 0.35);
    justify-content: space-around;
  }
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 2.5rem;
    overflow-x: hidden;
    position: relative;
  }
  .hero.hero-header {
    padding-top: 115px !important;
    padding-bottom: 0.75rem !important;
    min-height: auto !important;
  }
  .hero-video-bg-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
  }
  .hero-video-bg-mobile iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    min-width: 177.77vh;
    min-height: 56.25vw;
    transform: translate(-50%, -50%) scale(1.45);
    pointer-events: none;
    border: 0;
    opacity: 1;
  }
  .hero-video-overlay-mobile {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
      180deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(15, 23, 42, 0.85) 100%
    );
    pointer-events: none;
  }

  /* Default Standard Hero on Mobile (Dance King, Academy, Entertainment, Gallery, Contact) */
  .hero .hero-title {
    color: var(--text-dark);
    text-shadow: none;
  }
  .hero .hero-title .text-gradient {
    color: var(--color-primary);
    -webkit-text-fill-color: var(--color-primary);
    text-shadow: none;
  }
  .hero .hero-desc {
    color: #0f172a;
    text-shadow: none;
    font-weight: 500;
  }

  /* Mobile Hero with Video Background (Home page only) */
  .hero:has(.hero-video-bg-mobile) .hero-title,
  .hero-video-bg-mobile ~ .container .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95), 0 0 25px rgba(0, 0, 0, 0.7);
  }
  .hero:has(.hero-video-bg-mobile) .hero-title .text-gradient,
  .hero-video-bg-mobile ~ .container .hero-title .text-gradient {
    color: #fbbf24;
    -webkit-text-fill-color: #fbbf24;
    text-shadow: 0 0 16px rgba(251, 191, 36, 0.85);
  }
  .hero:has(.hero-video-bg-mobile) .hero-desc,
  .hero-video-bg-mobile ~ .container .hero-desc {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  }
  .hero:has(.hero-video-bg-mobile) .hero-actions .btn-dark,
  .hero-video-bg-mobile ~ .container .hero-actions .btn-dark {
    background: var(--gold-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.45);
    font-weight: 700;
  }
  .hero .container {
    position: relative;
    z-index: 3;
  }
  .nav-container {
    padding-inline: 1rem;
    height: 76px;
  }
  .logo-img {
    height: 44px;
  }
  .brand-name {
    font-size: 1rem;
  }
  .hero-grid {
    gap: 1rem;
  }
  .hero-actions {
    margin-bottom: 0.5rem;
  }
  .hero-title {
    font-size: clamp(1.85rem, 6vw, 2.3rem);
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .hero-pill {
    font-size: 0.74rem;
    padding: 0.3rem 0.75rem;
    white-space: normal;
    text-align: center;
  }
  .hero-slider-wrapper {
    max-width: 100%;
  }
  .hero-slider-frame {
    padding: 6px;
    border-radius: 20px;
  }
  .hero-slider {
    height: 340px;
    border-radius: 16px;
  }
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .slider-btn.prev {
    left: 6px;
  }
  .slider-btn.next {
    right: 6px;
  }
  .fancy-portrait-wrapper {
    max-width: 100%;
  }
  .fancy-portrait-card {
    height: 380px;
  }
  .hero-stats {
    background: none;
    border: none;
    border-top: 1px solid rgba(251, 191, 36, 0.35);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1rem 0 0 0;
    gap: 0.5rem;
    max-width: 100%;
    margin-inline: auto;
    margin-top: 1.25rem;
  }
  .stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95), 0 0 15px rgba(251, 191, 36, 0.85);
  }
  .stat-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.75);
  }
  .bright-card {
    padding: 1.5rem 1.25rem;
  }
  .photo-card-body {
    padding: 1.25rem 1rem;
  }
  .calc-wrapper {
    padding: 1.5rem 1rem;
    border-radius: var(--radius-md);
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .calc-output-box {
    padding: 1.75rem 1rem;
    border-radius: var(--radius-md);
  }
  .calc-select, .form-control, .form-input, .form-textarea, .form-select {
    font-size: 0.9rem;
    padding: 0.75rem 0.85rem;
  }
  .calc-output-price {
    font-size: 2.25rem;
  }
  .section {
    padding-block: 3.5rem;
    overflow-x: hidden;
  }
  .card-grid-4, .card-grid-3, .card-grid-2, .form-row, .price-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .filter-bar {
    gap: 0.4rem;
    margin-bottom: 2rem;
  }
  .filter-pill {
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }
  .section-title {
    font-size: 1.45rem;
  }
  .hero-slider {
    height: 290px;
  }
  .fancy-portrait-card {
    height: 310px;
  }
  .hero-actions .btn,
  .history-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .calc-wrapper {
    padding: 1.25rem 0.75rem;
  }
  .calc-output-price {
    font-size: 1.85rem;
  }
}

/* ==========================================================================
   PERFORMANCE-OPTIMIZED ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */

/* ----------------- Scroll Reveal Base ----------------- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal {
  transform: translate3d(0, 32px, 0);
}

.reveal-left {
  transform: translate3d(-36px, 0, 0);
}

.reveal-right {
  transform: translate3d(36px, 0, 0);
}

.reveal-scale {
  transform: scale3d(0.92, 0.92, 1);
}

.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-scale.revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.1s !important; }
.delay-200 { transition-delay: 0.2s !important; }
.delay-300 { transition-delay: 0.3s !important; }
.delay-400 { transition-delay: 0.4s !important; }
.delay-500 { transition-delay: 0.5s !important; }

/* ----------------- Hero Entrance Animations ----------------- */
@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translate3d(0, 16px, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.hero-title {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-desc {
  animation: heroFadeUp 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-actions {
  animation: heroFadeUp 0.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-slider-wrapper,
.fancy-portrait-wrapper {
  animation: heroScaleIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ----------------- Badge & Pill Floating Animation ----------------- */
@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.fancy-corner-badge {
  animation: softFloat 4s ease-in-out infinite;
}

/* ----------------- Floating WhatsApp Pulse Effect ----------------- */
@keyframes waPulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.65), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 24px rgba(37, 211, 102, 0.35);
  }
}

.floating-wa {
  animation: waPulseRing 2.6s infinite ease-out;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.floating-wa:hover {
  transform: translateY(-4px) scale(1.08);
}

.floating-wa:active {
  transform: scale(0.95);
}

/* ----------------- Card Hover Animations & Image Zoom ----------------- */
.photo-card,
.bright-card,
.dancer-profile-card,
.calc-wrapper,
.faq-item {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
}

.photo-card:hover,
.dancer-profile-card:hover {
  transform: translate3d(0, -6px, 0);
}

.photo-card-img img,
.dancer-avatar-box img {
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-card:hover .photo-card-img img,
.dancer-profile-card:hover .dancer-avatar-box img {
  transform: scale(1.06);
}

/* ----------------- Button Press & Touch Micro-Feedback ----------------- */
.btn {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s ease,
              filter 0.25s ease,
              background-color 0.25s ease;
}

.btn:active {
  transform: scale(0.97) !important;
}

.jump-chip {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.25s ease,
              color 0.25s ease,
              box-shadow 0.25s ease;
}

.jump-chip:active {
  transform: scale(0.95);
}

/* ----------------- Accessibility: Reduced Motion Support ----------------- */
@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;
  }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
