/* =============================================
   AURA DANCE STUDIO — Premium CSS
   Light Theme · Gold Accent · Playfair + Poppins
   ============================================= */

/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #d4af37;
  --gold-light: #e8d07a;
  --gold-dark: #a8891f;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f0d060 50%, #c09a20 100%);
  --cream: #faf8f5;
  --beige: #f2ede6;
  --beige-mid: #e8e0d4;
  --white: #ffffff;
  --text-dark: #1a1610;
  --text-mid: #4a4035;
  --text-light: #9a8e80;
  --border: rgba(212, 175, 55, 0.2);
  --shadow-soft: 0 8px 40px rgba(26, 22, 16, 0.08);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  --radius: 4px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --max-w: 1280px;
  --section-pad: 120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: auto; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
select { appearance: none; -webkit-appearance: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(3rem, 8vw, 7rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }
em { font-style: italic; color: var(--gold-dark); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold-gradient);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,175,55,0.45);
  filter: brightness(1.05);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--gold);
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: #fff;
}
.btn-full { width: 100%; text-align: center; }
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.15); }

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; margin-bottom: 70px; }
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }
.section-sub {
  margin-top: 18px;
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.revealed {
  opacity: 1;
  transform: none;
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 30px rgba(26,22,16,0.08);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo { display: flex; flex-direction: column; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #fff;
  line-height: 1;
  transition: color 0.4s;
}
.navbar.scrolled .logo-text { color: var(--text-dark); }
.logo-tagline {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.4s;
}
.navbar.scrolled .logo-tagline { color: var(--gold-dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
}
.navbar.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }
.nav-cta {
  background: var(--gold-gradient) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--text-dark); }
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,5,0.15) 0%,
    rgba(20,15,5,0.3) 40%,
    rgba(15,10,2,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 100px;
  max-width: 900px;
}
.hero-pre {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero-title {
  color: #fff;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 460px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 5%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  display: block;
  width: 50px; height: 1px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%; top: 0;
  width: 100%; height: 100%;
  background: #fff;
  animation: scrollLine 1.8s ease infinite;
}
@keyframes scrollLine {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: var(--white);
  padding: 36px 0;
  border-bottom: 1px solid var(--beige-mid);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
}
.trust-faces {
  display: flex;
}
.trust-faces img {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.trust-faces img:first-child { margin-left: 0; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testi-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}
.testi-img-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.testi-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  font-family: var(--font-display);
}
cite {
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--text-light);
  text-transform: uppercase;
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

/* ========== ABOUT ========== */
.about {
  padding: var(--section-pad) 0;
  background: var(--beige);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.about-img-col { position: relative; }
.about-img-frame {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-frame:hover img { transform: scale(1.04); }
.about-img-accent {
  position: absolute;
  bottom: -48px; right: -40px;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-soft);
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-img-accent:hover img { transform: scale(1.06); }
.about-text-col { padding-left: 20px; }
.about-text-col h2 { margin: 12px 0 24px; }
.about-lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-style: italic;
}
.about-body {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.9;
}
.about-milestones {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.milestone { display: flex; flex-direction: column; gap: 4px; }
.milestone-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1;
}
.milestone-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ========== CLASSES ========== */
.classes {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.classes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.class-card { border-radius: 8px; overflow: hidden; }
.class-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
}
.class-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.class-img-wrap:hover img { transform: scale(1.08); }
.class-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,7,0,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 1;
}
.class-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}
.class-level {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 6px 0 16px;
}
.class-btn {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  align-self: flex-start;
}
.class-img-wrap:hover .class-btn { opacity: 1; transform: none; }

/* ========== TRAINERS ========== */
.trainers {
  padding: var(--section-pad) 0;
  background: var(--cream);
}
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trainer-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.trainer-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.trainer-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.trainer-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.trainer-card:hover .trainer-img-wrap img { transform: scale(1.05); }
.trainer-info { padding: 24px; }
.trainer-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.trainer-info span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}
.trainer-info p { font-size: 0.83rem; color: var(--text-light); line-height: 1.7; }

/* ========== GALLERY ========== */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--beige);
}
.gallery-masonry {
  column-count: 4;
  column-gap: 16px;
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: 'View';
  position: absolute; inset: 0;
  background: rgba(212,175,55,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transition: all 0.35s;
}
.gallery-item:hover::after {
  background: rgba(212,175,55,0.35);
  opacity: 1;
}
.gallery-item img {
  transition: transform 0.6s ease;
  width: 100%;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-bg {
  position: absolute; inset: 0;
  background: rgba(10, 7, 0, 0.95);
}
.lightbox-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 85vw;
  max-height: 85vh;
  border-radius: 4px;
  overflow: hidden;
}
.lightbox-img-wrap img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  z-index: 3;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(212,175,55,0.5); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ========== PRICING ========== */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 48px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  background: var(--cream);
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.price-card.featured {
  background: var(--text-dark);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(26,22,16,0.2);
}
.price-badge {
  position: absolute;
  top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-head { display: flex; flex-direction: column; gap: 8px; }
.price-plan {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.price-card.featured .price-plan { color: var(--gold-light); }
.price-amount { display: flex; align-items: flex-start; gap: 4px; }
.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-top: 6px;
  font-weight: 500;
}
.price-card.featured .price-currency { color: #fff; }
.price-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1;
}
.price-card.featured .price-num { color: #fff; }
.price-period {
  font-size: 0.78rem;
  color: var(--text-light);
}
.price-card.featured .price-period { color: rgba(255,255,255,0.5); }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.price-features li {
  font-size: 0.88rem;
  color: var(--text-mid);
  padding-left: 18px;
  position: relative;
}
.price-features li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.8); }
.price-features li.disabled {
  color: var(--text-light);
  opacity: 0.4;
  text-decoration: line-through;
}
.price-card.featured .price-features li.disabled { color: rgba(255,255,255,0.3); }

/* ========== EVENTS ========== */
.events {
  padding: var(--section-pad) 0;
  background: var(--beige);
}
.events-scroll-wrap {
  overflow-x: auto;
  padding: 8px 5% 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.events-scroll-wrap::-webkit-scrollbar { display: none; }
.events-track {
  display: flex;
  gap: 24px;
  width: max-content;
}
.event-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, transform 0.3s;
}
.event-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.event-img-wrap {
  height: 220px;
  overflow: hidden;
}
.event-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.event-card:hover .event-img-wrap img { transform: scale(1.05); }
.event-info { padding: 28px 28px 32px; }
.event-date {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}
.event-info h3 { font-size: 1.1rem; margin-bottom: 10px; }
.event-info p { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.7; }
.event-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.event-link:hover { color: var(--text-dark); }

/* ========== CTA BANNER ========== */
.cta-banner {
  position: relative;
  padding: 160px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta-media {
  position: absolute; inset: 0;
}
.cta-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.cta-banner:hover .cta-media img { transform: scale(1); }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,7,0,0.85) 0%, rgba(30,20,0,0.6) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
}
.cta-content h2 { color: #fff; margin-bottom: 24px; }
.cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 40px; font-size: 1rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.enquiry-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  border: 1.5px solid var(--beige-mid);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
  background: var(--white);
}
.form-group input.error,
.form-group select.error { border-color: #c0392b; }
.form-error { font-size: 0.75rem; color: #c0392b; min-height: 16px; }
.whatsapp-btn {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.2s;
}
.whatsapp-btn:hover { background: #1ebe59; transform: translateY(-2px); }
.contact-info-col { display: flex; flex-direction: column; gap: 32px; }
.contact-detail { display: flex; flex-direction: column; gap: 6px; }
.detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.detail-val { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; }
.detail-val[href]:hover { color: var(--gold-dark); }
.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 260px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ========== FOOTER ========== */
.footer { background: var(--text-dark); }
.footer-main { padding: 80px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #fff;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-about { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a,
.footer-col ul li {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-list { gap: 16px !important; }
.footer-wa-btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background 0.25s;
}
.footer-wa-btn:hover { background: #1ebe59; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-credit { font-size: 0.78rem; color: rgba(255,255,255,0.25); }
.footer-credit strong { color: var(--gold); }

/* ========== MODAL ========== */
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 9000;
  background: rgba(10,7,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 56px 48px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.35s ease;
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1rem;
  color: var(--text-light);
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-dark); }
.modal-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.modal-box h3 { margin-bottom: 16px; }
.modal-box p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.modal-wa { font-weight: 500; color: var(--text-mid) !important; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .classes-grid { grid-template-columns: repeat(2, 1fr); }
  .trainers-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { column-count: 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-accent { right: 20px; }
  .about-text-col { padding-left: 0; }
  .testi-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.1rem;
    color: var(--text-dark);
    letter-spacing: 0.1em;
  }
  .nav-links.open .nav-cta { color: #fff !important; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px; }
  .classes-grid { grid-template-columns: 1fr; }
  .trainers-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 16px; }
  .hero-content { padding-bottom: 80px; }
  .about-milestones { flex-direction: column; gap: 20px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
