/* ====================================================
   MARANGONI BJJ — Main Stylesheet
   ==================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b2a; --navy-mid: #1e3a5f; --navy-dark: #060e1a;
  --gold: #c9a227; --gold-dark: #a07d1e;
  --white: #ffffff; --off-white: #f8f9fa;
  --text: #2d3748; --text-light: #718096; --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(0,0,0,0.09); --radius: 8px;
  --max-w: 1160px; --ease: all 0.25s ease;
}
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); line-height: 1.65; background: var(--white); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: 'Oswald','Arial Narrow',Arial,sans-serif; font-weight: 600; line-height: 1.2; letter-spacing: 0.02em; }
a { color: inherit; text-decoration: none; transition: var(--ease); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--navy); color: rgba(255,255,255,0.65); font-size: 13px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar a:hover { color: var(--gold); }
.topbar i { margin-right: 5px; }

/* NAV */
nav { background: var(--white); border-bottom: 3px solid var(--gold); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,0.07); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 72px; }
.logo img { height: 36px; width: auto; }
.nav-links { display: flex; gap: 0; align-items: center; flex: 1; justify-content: flex-end; }
.nav-links > li > a { padding: 7px 13px; font-size: 14px; font-weight: 500; color: var(--navy); border-radius: 4px; display: block; }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); min-width: 210px; padding: 6px 0; z-index: 2000; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; padding: 9px 18px; font-size: 14px; color: var(--text); }
.dropdown-menu li a:hover { background: var(--off-white); color: var(--gold); }
@keyframes btn-pulse {
  0%, 100% { background: var(--navy); box-shadow: 0 0 0 0 rgba(201,162,39,0); }
  50% { background: #c9a227; box-shadow: 0 0 12px 4px rgba(201,162,39,0.6); }
}
.btn-trial { background: var(--navy) !important; color: var(--white) !important; padding: 9px 18px !important; border-radius: 4px; font-weight: 700 !important; font-size: 13px !important; margin-left: 6px; letter-spacing: 0.02em; animation: btn-pulse 2s ease-in-out infinite; }
.btn-trial:hover { background: var(--navy-mid) !important; animation: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }

@media (max-width: 1100px) {
  .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); padding: 12px 24px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; max-height: calc(100vh - 72px); overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; border: none; border-left: 3px solid var(--gold); border-radius: 0; padding: 4px 0; margin: 0 0 4px 16px; }
  .dropdown:hover .dropdown-menu { display: none; }
  .btn-trial { margin-left: 0; }
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: var(--ease); }

/* BUTTONS */
.btn { display: inline-block; padding: 14px 32px; border-radius: 5px; font-weight: 700; font-size: 15px; cursor: pointer; transition: var(--ease); border: 2px solid transparent; letter-spacing: 0.03em; text-align: center; }
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(13,27,42,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); }

/* HERO */
.hero { position: relative; aspect-ratio: 2600 / 1269; min-height: 60vh; max-height: 80vh; display: flex; align-items: flex-end; background: var(--navy); overflow: hidden; width: 100%; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero.jpg') center center / cover no-repeat;
  filter: brightness(0.65);
  z-index: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.25) 100%); }

.hero-tagline {
  position: absolute; bottom: 16px; left: 0; right: 0;
  z-index: 2;
  font-family: 'Oswald', sans-serif !important;
  font-size: clamp(1.8rem, 4vw, 3.2rem) !important;
  font-weight: 700 !important;
  color: #000 !important;
  text-align: center !important;
  text-shadow: 0 0 20px rgba(255,255,255,0.85) !important;
  margin: 0 !important;
  padding: 0 20px;
}
.hero-bottom {
  background: #fff;
  padding: 18px 20px;
  text-align: center; display: flex;
  justify-content: center; align-items: center;
  gap: 14px; flex-wrap: wrap;
  border-bottom: 3px solid var(--gold);
}

.hero-btns { justify-content: center; display:flex; gap:14px; flex-wrap:wrap; padding: 0 0 0; }
.hero-content-centered { position: relative; z-index: 1; padding: 110px 0 90px; text-align: center; display: flex; flex-direction: column; align-items: center; width: 100%; }
.hero-content-centered .hero-desc { margin-left: auto; margin-right: auto; }
.hero-content-centered .hero-cta { justify-content: center; }
.eyebrow { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 14px; border-radius: 3px; margin-bottom: 22px; }
.hero-content h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); color: var(--white); margin-bottom: 20px; max-width: 680px; font-weight: 700; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.78); max-width: 520px; margin-bottom: 36px; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

/* SECTIONS */
section { padding: 84px 0; }
.section-label { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 14px; }
.section-sub { font-size: 1.05rem; color: var(--text-light); max-width: 580px; line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.bg-light { background: var(--off-white); }
.bg-navy { background: var(--navy); color: var(--white); }

/* HOME HEADINGS */
.home-h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; text-align: center; }
.home-sub { text-align: center; margin: 0 auto 48px; max-width: 720px; color: var(--text-light); font-size: 1rem; line-height: 1.75; }

/* HOME PROGRAM CARDS */
.prog-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.prog-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 28px 24px; transition: var(--ease); }
.prog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prog-icon { width: 44px; height: 44px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; color: var(--navy); }
.prog-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.prog-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.7; margin-bottom: 12px; }
.prog-card a { color: var(--gold); font-size: 13px; font-weight: 600; }
.prog-card a:hover { text-decoration: underline; }

/* ABOUT */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: auto; max-height: 600px; object-fit: contain; object-position: top center; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--gold); color: var(--navy); padding: 20px 24px; border-radius: var(--radius); text-align: center; font-family: 'Oswald',sans-serif; box-shadow: var(--shadow); }
.about-badge-num { font-size: 2rem; font-weight: 700; line-height: 1; }
.about-badge-txt { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
.about-text p { color: var(--text-light); margin-bottom: 16px; line-height: 1.75; }
.about-text p:last-of-type { margin-bottom: 28px; }

/* PROGRAMS */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--gold); border-radius: var(--radius); padding: 30px 26px; transition: var(--ease); display: block; color: inherit; }
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-top-color: var(--navy); }
.program-icon { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 22px; }
.program-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 9px; }
.program-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.prog-bullets { list-style: none; padding: 0; margin: 10px 0 0; }
.prog-bullets li { font-size: 0.875rem; color: var(--text-light); padding: 5px 0 5px 20px; position: relative; line-height: 1.5; }
.prog-bullets li::before { content: '✓'; color: var(--gold); font-weight: 700; position: absolute; left: 0; }
.prog-cta-row { display: flex; gap: 14px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

/* TESTIMONIAL CAROUSEL */
.testi-carousel-wrap { position: relative; max-width: 780px; margin: 0 auto; }
.testi-carousel { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94); }
.testi-track .testi-card { min-width: 100%; flex-shrink: 0; display: flex; flex-direction: column; justify-content: space-between; min-height: 220px; }
.carousel-controls { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 28px; }
.carousel-btn { background: var(--navy); color: var(--white); border: none; border-radius: 50%; width: 44px; height: 44px; cursor: pointer; font-size: 22px; display: flex; align-items: center; justify-content: center; transition: var(--ease); flex-shrink: 0; }
.carousel-btn:hover { background: var(--gold); color: var(--navy); }
.carousel-dots { display: flex; gap: 10px; align-items: center; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: #cbd5e1; border: none; cursor: pointer; padding: 0; transition: background 0.25s ease,transform 0.25s ease; }
.carousel-dot.active { background: var(--navy); transform: scale(1.35); }

/* TESTIMONIALS */
.home-testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testi-card { background: var(--white); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); border-left: 4px solid var(--gold); display: flex; flex-direction: column; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 3px; }
.testi-text { font-size: 0.92rem; color: var(--text); line-height: 1.78; font-style: italic; flex: 1; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.author-av { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: 'Oswald',sans-serif; font-size: 16px; font-weight: 600; flex-shrink: 0; }
.author-name { font-weight: 600; color: var(--navy); font-size: 14px; }

/* TRIAL CTA BAND */
.trial-cta-band { background: var(--navy); padding: 72px 0; position: relative; overflow: hidden; }
.trial-cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(201,162,39,0.09) 0%,transparent 70%); }
.trial-cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.trial-cta-text h2 { color: var(--white); font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 10px; }
.trial-cta-text p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 520px; }

/* CTA BAND */
.cta-band { background: var(--navy); padding: 76px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center,rgba(201,162,39,0.08) 0%,transparent 70%); }
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(1.6rem, 5vw, 2.4rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question, .faq-q { width: 100%; background: none; border: none; display: flex; justify-content: space-between; align-items: center; padding: 22px 0; cursor: pointer; font-family: 'Oswald',sans-serif; font-size: 1.1rem; font-weight: 500; color: var(--navy); text-align: left; letter-spacing: 0.02em; gap: 16px; transition: color 0.2s; }
.faq-question::after, .faq-q::after { content: '+'; font-size: 1.8rem; color: var(--gold); flex-shrink: 0; line-height: 1; font-family: sans-serif; font-weight: 300; }
.faq-item.open .faq-question, .faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-question::after, .faq-item.open .faq-q::after { content: '−'; }
.faq-answer, .faq-a { display: none; padding: 0 0 22px; color: var(--text-light); line-height: 1.78; font-size: 0.95rem; }
.faq-item.open .faq-answer, .faq-item.open .faq-a { display: block; }
/* Hide the Font Awesome chevron icon inside faq-q (the ::after pseudo handles toggle) */
.faq-q .fa-chevron-down { display: none; }
.faq-still-have { text-align: center; margin-top: 56px; padding: 44px 40px; background: var(--off-white); border-radius: var(--radius); }
.faq-still-have h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.faq-still-have p { color: var(--text-light); margin-bottom: 24px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(140deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 70px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }

/* SCHEDULE */
.schedule-intro { background: var(--off-white); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px; border-left: 4px solid var(--gold); font-size: 14px; color: var(--text-light); }
.schedule-intro strong { color: var(--navy); }
.schedule-section { margin-bottom: 56px; }
.schedule-section-title { font-family: 'Oswald',sans-serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--border); display: flex; align-items: center; gap: 10px; }
.schedule-section-title span { background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; letter-spacing: 0.08em; }

/* INSTRUCTORS */
.instructor-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: grid; grid-template-columns: 320px 1fr; }
.instructor-card + .instructor-card { margin-top: 40px; }
.instructor-card.reverse { direction: rtl; }
.instructor-card.reverse > * { direction: ltr; }
.instructor-img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: top center; }
.instructor-body { padding: 36px 40px; }
.instr-role { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.instr-name { font-size: 1.9rem; color: var(--navy); margin-bottom: 16px; }
.instructor-body p { color: var(--text-light); font-size: 0.92rem; line-height: 1.78; margin-bottom: 14px; }
.achievements { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.achievements h4 { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 12px; }
.achievements ul { display: flex; flex-wrap: wrap; gap: 8px; }
.achievements ul li { background: var(--navy); color: var(--white); font-size: 11px; font-weight: 600; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.02em; }

/* PROGRAMS PAGE */
.program-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.program-grid.rev { direction: rtl; }
.program-grid.rev > * { direction: ltr; }
.program-grid img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.program-content .age-tag { display: inline-block; background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: 0.06em; text-transform: uppercase; }
.program-content h2 { font-size: 2rem; color: var(--navy); margin-bottom: 14px; }
.program-content p { color: var(--text-light); line-height: 1.78; margin-bottom: 14px; font-size: 0.95rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-icon { width: 46px; height: 46px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); flex-shrink: 0; }
.ci-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.ci-value { font-weight: 600; color: var(--navy); font-size: 15px; line-height: 1.4; }
.ci-value a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 32px; }
.social-btn { width: 46px; height: 46px; background: var(--navy); color: var(--white); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; transition: var(--ease); }
.social-btn:hover { background: var(--gold); color: var(--navy); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-top: 28px; }
.map-embed iframe { display: block; width: 100%; height: 240px; border: none; }

/* FORM */
.form-title { font-size: 1.6rem; color: var(--navy); margin-bottom: 8px; }
.form-sub { color: var(--text-light); font-size: 14px; margin-bottom: 28px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
input, select, textarea { width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: inherit; font-size: 14px; color: var(--text); background: var(--white); transition: var(--ease); outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.13); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 10px; text-align: center; }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.55); padding: 64px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo img { height: 42px; margin-bottom: 16px; }
.footer-logo p { color: rgba(255,255,255,0.45); line-height: 1.75; font-size: 13px; }
.footer-col h4 { color: var(--white); font-family: 'Oswald',sans-serif; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { color: rgba(255,255,255,0.35); font-size: 16px; }
.footer-socials a:hover { color: var(--gold); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .programs-grid { grid-template-columns: repeat(2,1fr); }
  .prog-cards { grid-template-columns: repeat(2, 1fr); }
  .home-testi-grid { grid-template-columns: 1fr; }
  .trial-cta-inner { flex-direction: column; align-items: flex-start; }
  .about-strip { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap .about-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .instructor-card { grid-template-columns: 1fr; }
  .instructor-card.reverse { direction: ltr; }
  .instructor-img { min-height: 320px; }
  .program-grid, .program-grid.rev { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  /* Topbar: hide address, keep phone */
  .topbar-left span:first-child { display: none; }
  .topbar .container { justify-content: center; gap: 12px; flex-wrap: nowrap; }
  .topbar-left, .topbar-right { gap: 12px; }

  .programs-grid { grid-template-columns: 1fr; }
  .prog-cards { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .hero-tagline { font-size: clamp(1.4rem, 5vw, 2rem) !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  .cta-band { padding: 52px 0; }
  .trial-cta-band { padding: 52px 0; }
  .page-hero { padding: 48px 0 40px; }
  .instructor-img { width: 100%; height: auto; min-height: 0; max-height: none; object-fit: unset; }
  .btn { padding: 13px 24px; font-size: 14px; }
  .stats-banner-inner { font-size: 0.85rem; gap: 8px 16px; }
  .training-bg-section { min-height: 70vh; }
  /* Fix hero aspect-ratio forcing page wider than viewport */
  .hero { aspect-ratio: auto; min-height: 50vh; max-height: 60vh; }
  /* Prevent any element from overflowing viewport horizontally */
  *, *::before, *::after { max-width: 100%; }
  img { max-width: 100%; height: auto; }
  /* Show training photo at full width, no side cropping */
  .training-bg-section { background-size: 100% auto; background-position: center top; min-height: 0; padding: 80px 20px 100px; }

}


/* ====================================================
   GOOGLE REVIEWS STYLE TESTIMONIALS
   ==================================================== */
.gr-section { padding: 80px 0; }
.gr-heading { text-align:center; font-family:'Oswald',sans-serif; font-size:clamp(28px,4vw,42px); font-weight:700; color:var(--navy); margin-bottom:32px; }
.gr-google-pill {
  display:flex; align-items:center; justify-content:center; gap:10px;
  margin:0 auto 36px; max-width:200px;
  border-bottom:3px solid #4285F4; padding-bottom:10px;
}
.gr-google-pill svg { width:28px; height:28px; flex-shrink:0; }
.gr-google-pill-text { font-family:'Inter',sans-serif; font-size:18px; font-weight:700; color:#202124; }
.gr-google-pill-score { font-family:'Inter',sans-serif; font-size:18px; font-weight:700; color:#202124; }

/* Carousel wrapper */
.gr-carousel-outer { position:relative; overflow:hidden; }
.gr-carousel-track-wrap { overflow:hidden; }
.gr-carousel-track {
  display:flex; transition:transform 0.4s ease;
}
.gr-card {
  flex-shrink:0;
  background:#f8f9fa; border-radius:12px;
  padding:24px 22px 20px;
  display:flex; flex-direction:column; gap:12px;
  box-shadow:0 1px 4px rgba(0,0,0,0.08);
  box-sizing:border-box;
}
.gr-stars { color:#fbbc04; font-size:18px; letter-spacing:2px; }
.gr-text { font-family:'Inter',sans-serif; font-size:14px; line-height:1.65; color:#3c4043; flex:1; }
.gr-text .gr-read-more {
  background:none; border:none; padding:0; margin-left:2px;
  color:#1a73e8; font-size:14px; font-weight:600; cursor:pointer; font-family:'Inter',sans-serif;
}
.gr-text .gr-read-more:hover { text-decoration:underline; }
.gr-author { display:flex; align-items:center; gap:12px; margin-top:4px; }
.gr-avatar-wrap { position:relative; width:40px; height:40px; flex-shrink:0; }
.gr-avatar {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:'Inter',sans-serif; font-size:15px; font-weight:700; color:#fff;
}
.gr-g-badge {
  position:absolute; bottom:-2px; right:-2px;
  width:18px; height:18px; border-radius:50%; background:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 1px 3px rgba(0,0,0,0.2);
}
.gr-g-badge svg { width:13px; height:13px; }
.gr-author-info { display:flex; flex-direction:column; }
.gr-name { font-family:'Inter',sans-serif; font-size:14px; font-weight:600; color:#202124; display:flex; align-items:center; gap:5px; }
.gr-check { color:#1a73e8; font-size:13px; }
.gr-ago { font-family:'Inter',sans-serif; font-size:12px; color:#70757a; margin-top:1px; }

/* Carousel controls */
.gr-controls {
  display:flex; align-items:center; justify-content:center; gap:16px; margin-top:28px;
}
.gr-arrow {
  width:38px; height:38px; border-radius:50%; border:1px solid #dadce0;
  background:#fff; cursor:pointer; font-size:18px; color:#5f6368;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 1px 4px rgba(0,0,0,0.1); transition:box-shadow 0.2s;
}
.gr-arrow:hover { box-shadow:0 2px 8px rgba(0,0,0,0.18); color:#202124; }
.gr-dots { display:flex; gap:8px; align-items:center; }
.gr-dot {
  width:8px; height:8px; border-radius:50%;
  background:#dadce0; border:none; cursor:pointer; padding:0; transition:background 0.2s;
}
.gr-dot.active { background:#4285F4; }

@media (max-width:960px) {
  /* gr-card widths set by JS */
}
@media (max-width:640px) {
  /* gr-card widths set by JS */
  .gr-heading { font-size:26px; }
}

/* Training background section */
.training-bg-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('bg-training.jpg') center 30% / cover no-repeat;
}
.training-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}
@media (max-width: 640px) {
  .training-bg-section {
    background-size: 100% auto !important;
    background-position: center top !important;
    min-height: 0 !important;
    padding: 80px 20px 100px;
  }
}

/* Stats banner row */
.stats-banner {
  background: var(--navy);
  padding: 14px 20px;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.stats-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stats-banner-inner i {
  color: var(--gold);
  margin-right: 6px;
}
.stats-sep {
  color: var(--gold);
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  .stats-sep { display: none; }
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.28);
}
.whatsapp-float i {
  color: #fff;
  font-size: 28px;
}

/* 3-STEP SECTION */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
}
.step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-family: 'Oswald',sans-serif; font-size: 1.2rem; margin-bottom: 10px; color: var(--white); }
.step-card p { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.65; }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }

/* LEAD CAPTURE FLOATING BUTTON */
.lead-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 56px; height: 56px;
  background: var(--navy);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lead-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.32); }
.lead-float i { color: var(--gold); font-size: 24px; }

/* LEAD CAPTURE POPUP */
.lead-popup {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 9998;
  width: 320px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.lead-popup.open { display: flex; }
.lead-popup-header {
  background: var(--navy);
  padding: 16px 18px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.lead-popup-title { font-family: 'Oswald',sans-serif; font-size: 1rem; color: var(--white); font-weight: 600; }
.lead-popup-sub { font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 3px; }
.lead-popup-close { background: none; border: none; color: rgba(255,255,255,0.8); font-size: 22px; cursor: pointer; line-height: 1; padding: 0; }
.lead-popup-close:hover { color: var(--white); }
.lead-popup-form { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; }
.lead-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lead-popup-form input,
.lead-popup-form select {
  width: 100%; padding: 10px 12px;
  border: 1px solid var(--border); border-radius: 6px;
  font-size: 14px; font-family: 'Inter',sans-serif;
  color: var(--text); background: var(--white); outline: none;
}
.lead-popup-form input:focus,
.lead-popup-form select:focus { border-color: var(--navy); }
.lead-submit {
  background: var(--navy); color: var(--white);
  border: none; border-radius: 6px; padding: 12px;
  font-size: 15px; font-weight: 700; font-family: 'Oswald',sans-serif;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s;
}
.lead-submit:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 400px) {
  .lead-popup { width: calc(100vw - 32px); right: 16px; }
  .lead-float { right: 16px; bottom: 20px; }
}

/* ADULT / KIDS SPLIT SECTION */
.split-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background-size: cover;
  background-position: center;
}
.split-adult {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
}
.split-kids {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a2d 100%);
}
.split-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.split-panel-inner {
  position: relative;
  z-index: 1;
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  max-width: 460px;
}
.split-label {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.split-title {
  font-family: 'Oswald',sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.split-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
@media (max-width: 640px) {
  .split-panel { min-height: 320px; }
  .split-panel-inner { padding: 40px 24px; }
  section > div[style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
