/* ══════════════════════════════════════
   MIND BLOWING ATTITUDE – MASTER CSS
   ══════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --gold: #d4a843;
  --gold-light: #f5d78e;
  --gold-dark: #9a7420;
  --bg-primary: #0a0a0a;
  --bg-section: #111111;
  --bg-card: rgba(255,255,255,0.04);
  --white: #ffffff;
  --white-soft: rgba(255,255,255,0.85);
  --white-dim: rgba(255,255,255,0.55);
  --glass: rgba(255,255,255,0.06);
  --glass-border: rgba(212,168,67,0.2);
  --radius: 16px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--white-soft);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 12px;
}
.section-title span { color: var(--gold); }
.section-subtitle {
  text-align: center;
  color: var(--white-dim);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 50px;
}
.gold-line {
  width: 80px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  margin: 16px auto 20px;
  border-radius: 3px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(212,168,67,0.1);
  transform: translateY(-2px);
}
.btn-form {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}
.btn-form:hover {
  background: var(--gold);
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(212,168,67,0.4);
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 100px; right: 30px;
  width: 60px; height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 998;
  transition: var(--transition);
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20b857;
}
.whatsapp-float svg { width: 34px; height: 34px; fill: currentColor; }

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════
   TOP BAR & NAVBAR
   ══════════════════════════════ */
.top-bar {
  background: #060606;
  border-bottom: 1px solid rgba(212,168,67,0.15);
  height: 44px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.top-contact {
  display: flex;
  gap: 20px;
}
.top-contact a {
  color: var(--white-dim);
  font-size: 0.8rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-contact a i {
  color: var(--gold);
}
.top-contact a:hover {
  color: var(--gold-light);
}
.top-social {
  display: flex;
  gap: 15px;
}
.top-social a {
  color: var(--white-dim);
  font-size: 0.9rem;
  transition: var(--transition);
}
.top-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.navbar {
  position: fixed; 
  top: 44px; 
  left: 0; 
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, top 0.4s;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--white);
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
  background: none; border: none;
  padding: 8px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu .close-btn {
  position: absolute; top: 24px; right: 28px;
  width: 40px; height: 40px;
  background: none; border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  transform: rotate(0deg);
}
.mobile-menu.open .close-btn { animation: spin-close 0.5s ease forwards; }
@keyframes spin-close { from { transform: rotate(0deg); } to { transform: rotate(180deg); } }
.mobile-menu .close-btn:hover {
  background: rgba(212,168,67,0.15);
  transform: rotate(90deg);
}
.mobile-menu a {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--white-dim);
  padding: 16px 0;
  transition: color var(--transition), transform var(--transition);
  transform: translateY(20px);
  opacity: 0;
}
.mobile-menu.open a {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* staggered animation */
.mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(8) { transition-delay: 0.35s; }
.mobile-menu a:nth-child(9) { transition-delay: 0.4s; }
.mobile-menu a:nth-child(10) { transition-delay: 0.45s; }
.mobile-menu a:nth-child(11) { transition-delay: 0.5s; }

.mobile-nav-btn {
  margin-top: 30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #1a1a1a;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  transform: translateY(20px);
  opacity: 0;
  box-shadow: 0 10px 30px rgba(212,168,67,0.3);
  transition: all 0.4s ease 0.55s;
}
.mobile-menu.open .mobile-nav-btn {
  transform: translateY(0);
  opacity: 1;
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: url('background.png') center/cover no-repeat fixed;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(10,6,2,0.55) 50%, rgba(0,0,0,0.82) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 50px;
  background: rgba(212,168,67,0.08);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge .pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,168,67,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(212,168,67,0); }
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(2rem, 6vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(212,168,67,0.25);
}
.hero h1 span { color: var(--gold-light); }
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--white-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ════════════════ INTRO VIDEO ════════════════ */
.intro-video {
  background: var(--bg-primary);
  position: relative;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 20px rgba(212,168,67,0.1);
  border: 1px solid var(--glass-border);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-column .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(212,168,67,0.1);
  color: var(--gold);
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.content-column h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.content-column h2 span {
  color: var(--gold);
}
.content-column p {
  color: var(--white-dim);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white-soft);
  font-weight: 500;
}
.feature-item i {
  color: var(--gold);
}

/* floating rings in hero */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-ring:nth-child(1) { width: 300px; height: 300px; animation: ring-pulse 5s ease-in-out infinite; }
.hero-ring:nth-child(2) { width: 500px; height: 500px; animation: ring-pulse 5s ease-in-out 0.8s infinite; }
.hero-ring:nth-child(3) { width: 700px; height: 700px; animation: ring-pulse 5s ease-in-out 1.6s infinite; }
@keyframes ring-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.15; }
  50% { transform: translate(-50%,-50%) scale(1.05); opacity: 0.3; }
}

/* ══════════════════════════════
   ABOUT
   ══════════════════════════════ */
.about { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold-light));
  border-radius: var(--radius);
  z-index: -1;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.about-img-wrap:hover .about-img {
  transform: scale(1.05);
}
.about-text h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  margin-bottom: 8px;
}
.about-text h2 span { color: var(--gold); }
.about-text .subtitle {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.about-text p {
  color: var(--white-dim);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  text-align: center;
  padding: 20px 12px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.stat-num {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ══════════════════════════════
   PROBLEMS WE SOLVE
   ══════════════════════════════ */
.problems { background: var(--bg-primary); }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.problem-card {
  padding: 28px 20px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,67,0.1);
}
.problem-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
  display: block;
  transition: transform var(--transition);
}
.problem-card:hover .problem-icon {
  transform: scale(1.1) rotate(5deg);
}
.problem-card h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.problem-card p {
  color: var(--white-dim);
  font-size: 0.82rem;
}

/* ══════════════════════════════
   SERVICES
   ══════════════════════════════ */
.services { background: var(--bg-section); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  padding: 40px 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(212,168,67,0.12);
}
.service-icon {
  width: 70px; height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212,168,67,0.1);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.service-icon svg { width: 32px; height: 32px; }
.service-card:hover .service-icon {
  background: var(--gold);
  color: #1a1a1a;
  transform: rotateY(180deg);
}
.service-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--white-dim);
  font-size: 0.9rem;
}

/* ══════════════════════════════
   HOW IT WORKS
   ══════════════════════════════ */
.how-it-works { background: var(--bg-primary); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}
.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #1a1a1a;
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.step-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 8px;
}
.step-item p {
  color: var(--white-dim);
  font-size: 0.85rem;
}

/* ══════════════════════════════
   STUDENT & PARENTING
   ══════════════════════════════ */
.parenting { background: var(--bg-section); }
.parenting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.parenting-card {
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}
.parenting-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.parenting-card .card-icon {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 12px;
  background: rgba(212,168,67,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: var(--transition);
}
.card-icon svg { width: 24px; height: 24px; }
.parenting-card:hover .card-icon {
  background: var(--gold);
  color: #1a1a1a;
}
.parenting-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}
.parenting-card p {
  color: var(--white-dim);
  font-size: 0.88rem;
}

/* ══════════════════════════════
   RESULTS / TRANSFORMATIONS
   ══════════════════════════════ */
.results {
  background: linear-gradient(135deg, rgba(212,168,67,0.08), var(--bg-primary));
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.result-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
}
.result-icon { 
  width: 60px; height: 60px; 
  margin: 0 auto 20px; 
  color: var(--gold);
  display: block; 
}
.result-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.result-card p {
  color: var(--white-dim);
  font-size: 0.92rem;
}

/* ══════════════════════════════
   TESTIMONIALS
   ══════════════════════════════ */
.testimonials { background: var(--bg-section); }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  padding: 32px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cinzel Decorative', serif;
  font-size: 4rem;
  color: rgba(212,168,67,0.15);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}
.testimonial-card p {
  color: var(--white-dim);
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 700;
}
.author-info h5 {
  color: var(--white);
  font-size: 0.9rem;
}
.author-info span {
  color: var(--gold);
  font-size: 0.78rem;
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* ══════════════════════════════
   WORKSHOP CTA
   ══════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, rgba(212,168,67,0.12) 0%, var(--bg-primary) 50%, rgba(212,168,67,0.08) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section h2 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section h2 span { color: var(--gold-light); }
.cta-section p {
  color: var(--white-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 20px;
}
.cta-phone {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 30px;
  display: block;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   FAQ
   ══════════════════════════════ */
.faq { background: var(--bg-section); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--gold); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  background: none; border: none; width: 100%;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--white-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  background: #060606;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p {
  color: var(--white-dim);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  transition: var(--transition);
  font-size: 1.1rem;
}
.footer-social a:hover {
  background: var(--gold);
  color: #1a1a1a;
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 5px 15px rgba(212,168,67,0.3);
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: var(--white-dim);
  font-size: 0.88rem;
  padding: 6px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
  color: var(--white-dim);
  font-size: 0.88rem;
}
.footer-contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom span { color: var(--gold); }

/* ══════════════════════════════
   PAYMENT REQUEST
   ══════════════════════════════ */
.payment-request {
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.payment-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  background: var(--glass);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transition: var(--transition);
}
.payment-card:hover { border-color: var(--gold-light); transform: translateY(-5px); }
.payment-card h3 {
  font-family: 'Cinzel Decorative', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 25px;
  line-height: 1.4;
}
.payment-details {
  background: rgba(255,255,255,0.03);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  border-left: 4px solid var(--gold);
  text-align: left;
}
.payment-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.payment-row:last-child { border-bottom: none; }
.payment-row .label { color: var(--white-dim); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.payment-row .value { color: var(--white); font-weight: 700; font-size: 1rem; }
.payment-row .value.amount { color: var(--gold); font-size: 1.3rem; }

/* Video Testimonial Wrapper */
.testimonial-video {
  padding: 0;
  overflow: hidden;
  background: #000;
}
.testimonial-video-wrapper {
  position: relative;
  padding-bottom: 125%; /* Vertical focus for Facebook videos usually */
  height: 0;
  width: 100%;
}
.testimonial-video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ══════════════════════════════
   SCROLL-TO-TOP
   ══════════════════════════════ */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1a1a;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212,168,67,0.3);
}
.scroll-top.show {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212,168,67,0.5);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .steps-grid::before { display: none; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-slider { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { height: auto; padding: 10px 0; }
  .top-bar-inner { flex-direction: column; gap: 10px; }
  .top-contact { flex-direction: column; align-items: center; gap: 5px; }
  .navbar { top: 110px; } /* Adjust based on top bar height */
  .section-pad { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .parenting-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .testimonials-slider { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { padding: 12px 28px; font-size: 0.9rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr 1fr; }
  .parenting-card { flex-direction: column; }
}
