/* ============================================
   RISING TIDE MOCO MMA — COMPLETE REDESIGN
   Brand: Navy #00346D | Cream #FAE7C8 | Red #BF0B2F | White #FFF
   ============================================ */

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

:root {
  --navy: #00346D;
  --navy-dark: #002251;
  --navy-light: #004a99;
  --cream: #FAE7C8;
  --cream-light: #fdf3e6;
  --cream-dark: #e8c896;
  --red: #BF0B2F;
  --red-dark: #9a0926;
  --red-light: #d9213f;
  --white: #FFFFFF;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 30px rgba(191, 11, 47, 0.3);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-cream { color: var(--cream); }
.text-red { color: var(--red); }


/* --- CRM FORM EMBED --- */
.crm-form-embed {
  width: 100%;
  min-height: 600px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.cta__form-wrap .crm-form-embed,
.page-cta__form-wrap .crm-form-embed {
  border-radius: var(--radius-md);
}

.crm-form-embed iframe {
  display: block;
  min-height: 600px;
}


/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}


/* --- SECTION HEADER --- */
.section-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 12px;
}

.section-header__tag--light {
  color: var(--cream);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
}


/* ===================
   NAVIGATION
   =================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.nav--scrolled {
  background: rgba(0, 34, 81, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  transition: all var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.nav--scrolled .nav__logo-img {
  height: 42px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

/* Dropdown Nav */
.nav__dropdown {
  position: relative;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link--dropdown svg {
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__link--dropdown svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(0, 34, 81, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 8px 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s ease;
  z-index: 1001;
}

.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown--open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  padding-left: 24px;
}

.nav__link--phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream);
  font-weight: 600;
}

.nav__link--phone:hover {
  color: var(--white);
}

.nav__link--dropdown::after {
  display: none;
}

.nav__link--phone::after {
  display: none;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__cta {
  border-radius: var(--radius-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.mobile-menu.open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.mobile-menu__link:hover {
  color: var(--cream);
}

.mobile-menu__link--sub {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0;
  padding-left: 16px;
  border-left: 2px solid var(--red);
}

.mobile-menu__link--sub:hover {
  color: var(--cream);
}

.mobile-menu__phone {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--cream);
  margin-top: 8px;
}

.mobile-menu__logo {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.mobile-menu__cta {
  margin-top: 16px;
}


/* ===================
   HERO
   =================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
}

.hero__bg--has-image {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(191, 11, 47, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(250, 231, 200, 0.08) 0%, transparent 50%);
}

.hero__bg--has-image::before {
  background:
    linear-gradient(to bottom, rgba(0, 22, 51, 0.90) 0%, rgba(0, 34, 81, 0.72) 40%, rgba(0, 34, 81, 0.68) 70%, rgba(0, 22, 51, 0.88) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 34, 81, 0.3) 0%,
    rgba(0, 34, 81, 0.1) 50%,
    rgba(0, 34, 81, 0.6) 100%
  );
}

.hero__logo-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.hero__logo-watermark img {
  width: clamp(350px, 40vw, 580px);
  height: auto;
  opacity: 0.08;
  filter: grayscale(100%) brightness(3);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 120px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(250, 231, 200, 0.1);
  border: 1px solid rgba(250, 231, 200, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__stars {
  display: flex;
  gap: 2px;
}

.hero__trust-text {
  font-size: 0.85rem;
  color: rgba(250, 231, 200, 0.7);
  font-weight: 500;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}


/* ===================
   STATS BAR
   =================== */
.stats {
  background: var(--navy);
  padding: 48px 0;
  border-bottom: 3px solid var(--red);
}

.stats__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stats__item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}

.stats__plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--red);
  line-height: 1;
}

.stats__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

.stats__divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}


/* ===================
   PROGRAMS
   =================== */
.programs {
  padding: 100px 0;
  background: var(--gray-50);
}

.programs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  position: relative;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.program-card__icon {
  width: 56px;
  height: 56px;
  color: var(--red);
  margin-bottom: 20px;
}

.program-card__icon svg {
  width: 100%;
  height: 100%;
}

.program-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--cream-light);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.program-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.program-card__desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-card__features {
  margin-bottom: 24px;
  flex-grow: 1;
}

.program-card__features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.program-card__features li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* Program Card Image */
.program-card__image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

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

.program-card:hover .program-card__image img {
  transform: scale(1.05);
}


/* ===================
   ABOUT
   =================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 20px;
}

.about__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 36px;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about__feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.about__feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.about__feature-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* About Visual */
.about__visual {
  position: relative;
}

.about__logo-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.about__logo-bg {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.about__logo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 80%, rgba(191, 11, 47, 0.2), transparent 60%),
    radial-gradient(circle at 75% 20%, rgba(250, 231, 200, 0.08), transparent 50%);
}

.about__logo-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about__logo-img {
  position: relative;
  z-index: 1;
  width: 65%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: logoFloat 6s ease-in-out infinite;
}

/* About section with real photo */
.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  z-index: 1;
}

.about__logo-showcase--has-photo .about__logo-bg {
  display: none;
}

.about__logo-showcase--has-photo .about__logo-img {
  display: none;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.about__accent-box {
  position: absolute;
  bottom: 40px;
  right: -10px;
  background: var(--cream);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  z-index: 2;
}

.about__accent-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy);
  display: block;
  line-height: 1;
}

.about__accent-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}


/* ===================
   TESTIMONIALS
   =================== */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.testimonial-card--featured .testimonial-card__quote {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card--featured .testimonial-card__name {
  color: var(--cream);
}

.testimonial-card--featured .testimonial-card__role {
  color: rgba(250, 231, 200, 0.5);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.testimonial-card--featured .testimonial-card__author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
  background: var(--red);
  color: var(--white);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-800);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.testimonials__cta {
  text-align: center;
}


/* ===================
   SCHEDULE
   =================== */
.schedule {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(191, 11, 47, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 0%, rgba(250, 231, 200, 0.05) 0%, transparent 50%);
}

.schedule__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.schedule__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.schedule__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 36px;
}

.schedule__times {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.schedule__time-block {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.schedule__time-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
  margin-bottom: 4px;
}

.schedule__time-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

/* Schedule Visual Card */
.schedule__visual {
  display: flex;
  justify-content: center;
}

.schedule__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.schedule__card-day {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

.schedule__card-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.schedule__card-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.schedule__card-item:last-child {
  border-bottom: none;
}

.schedule__card-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
}

.schedule__card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

.schedule__card-level {
  font-size: 0.75rem;
  padding: 3px 10px;
  background: var(--cream-light);
  color: var(--navy);
  border-radius: 100px;
  font-weight: 600;
  white-space: nowrap;
}


/* ===================
   CTA SECTION
   =================== */
.cta {
  padding: 100px 0;
  background: var(--white);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.cta__logo {
  width: 120px;
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 4px 12px rgba(0, 52, 109, 0.15));
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta__desc {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.cta__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cta__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta__input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  transition: all var(--transition);
  background: var(--gray-50);
}

.cta__input:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 52, 109, 0.1);
}

.cta__input::placeholder {
  color: var(--gray-400);
}

.cta__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.cta__submit {
  margin-top: 4px;
  padding: 16px 32px;
  font-size: 1rem;
}

.cta__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
}


/* ===================
   CONTACT
   =================== */
.contact {
  padding: 100px 0;
  background: var(--gray-50);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 32px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.contact__detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.contact__detail-link {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--transition);
}

.contact__detail-link:hover {
  color: var(--red);
}

.contact__serving {
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.contact__serving-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.contact__serving-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact__serving-areas span {
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 480px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}


/* ===================
   FOOTER
   =================== */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer__logo-img {
  width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
}

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

.footer__col-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer__link {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 5px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--white);
}

.footer__link--text {
  cursor: default;
}

.footer__link--text:hover {
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}


/* ===================
   ANIMATIONS
   =================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}


/* ===================
   RESPONSIVE
   =================== */

/* Tablet */
@media (max-width: 1024px) {
  .programs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about__visual {
    order: -1;
  }

  .about__logo-showcase {
    min-height: 380px;
  }

  .cta__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .contact__map {
    height: 350px;
  }

  .schedule__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 140px 24px 100px;
  }

  .hero__scroll {
    display: none;
  }

  .stats__grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stats__item {
    flex: 1 1 40%;
    padding: 12px 0;
  }

  .stats__divider {
    display: none;
  }

  .programs__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
  }

  .cta__form-wrap {
    padding: 28px 20px;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .programs,
  .about,
  .testimonials,
  .schedule,
  .cta,
  .contact {
    padding: 72px 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .stats__item {
    flex: 1 1 100%;
  }

  .footer__links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about__logo-showcase {
    min-height: 300px;
  }

  .about__accent-box {
    right: 10px;
    bottom: 30px;
    padding: 18px 22px;
  }

  .hero__logo-watermark img {
    width: 250px;
  }
}


/* ===========================================
   PROGRAM PAGES — Shared Inner Page Styles
   =========================================== */

/* --- PAGE HERO --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg--has-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-hero__bg--has-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 22, 51, 0.92) 0%, rgba(0, 34, 81, 0.80) 40%, rgba(0, 34, 81, 0.75) 70%, rgba(0, 22, 51, 0.90) 100%);
}

.page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 90%, rgba(191, 11, 47, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 85% 10%, rgba(250, 231, 200, 0.06) 0%, transparent 50%);
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-hero__subtitle {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.page-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb a:hover {
  color: var(--cream);
}

.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.35);
}

.breadcrumb__current {
  color: var(--cream);
  font-weight: 600;
}


/* --- PROGRAM OVERVIEW --- */
.program-overview {
  padding: 80px 0 40px;
  background: var(--white);
}


/* --- DISCIPLINE SECTION --- */
.discipline {
  padding: 60px 0 80px;
  background: var(--white);
}

.discipline--alt {
  background: var(--gray-50);
}

.discipline__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.discipline__grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
  direction: rtl;
}

.discipline__grid--reverse > * {
  direction: ltr;
}

.discipline__badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--cream-light);
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 16px;
}

.discipline__badge--navy {
  background: var(--navy);
  color: var(--cream);
}

.discipline__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.discipline__desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.discipline__desc:last-of-type {
  margin-bottom: 28px;
}

.discipline__features {
  margin-bottom: 32px;
}

.discipline__features-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.discipline__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.discipline__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}

.discipline__list li svg {
  color: var(--red);
  flex-shrink: 0;
}

/* Discipline Visual */
.discipline__visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.discipline__image-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--red), var(--red-dark));
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.discipline__image-card--has-photo {
  padding: 0;
}

.discipline__image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.1), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08), transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.discipline__image-card--has-photo::before {
  background: none;
}

.discipline__image-card--navy {
  background: linear-gradient(145deg, var(--navy), var(--navy-dark));
}

.discipline__image-placeholder {
  position: relative;
  z-index: 1;
}

.discipline__logo-placeholder {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
  opacity: 0.85;
}

/* Discipline real photo */
.discipline__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.discipline__image-card:hover .discipline__photo {
  transform: scale(1.03);
}

.discipline__review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.discipline--alt .discipline__review-card {
  background: var(--white);
}

.discipline__review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.discipline__review-text {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.discipline__review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}


/* --- AUDIENCE SECTION --- */
.program-audience {
  padding: 80px 0;
  background: var(--white);
}

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

.audience__card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.audience__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--red);
}

.audience__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.audience__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* --- PILLARS SECTION (Kids Page) --- */
.pillars {
  padding: 80px 0;
  background: var(--white);
}

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

.pillar-card {
  text-align: center;
  padding: 48px 28px 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.pillar-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.pillar-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.pillar-card--featured .pillar-card__number {
  background: var(--red);
  color: var(--white);
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.pillar-card--featured .pillar-card__title {
  color: var(--cream);
}

.pillar-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.pillar-card--featured .pillar-card__desc {
  color: rgba(255, 255, 255, 0.6);
}


/* --- HIGHLIGHT BANNER (Women's Page) --- */
.highlight-banner {
  padding: 60px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.highlight-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(191, 11, 47, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 50%, rgba(250, 231, 200, 0.06) 0%, transparent 50%);
}

.highlight-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight-banner__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
}

.highlight-banner__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}


/* --- PAGE CTA --- */
.page-cta {
  padding: 80px 0;
  background: var(--gray-50);
}

.page-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.page-cta__logo {
  width: 100px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 12px rgba(0, 52, 109, 0.15));
}

.page-cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-cta__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 28px;
}

.page-cta__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-cta__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}

.page-cta__contact-item:hover {
  color: var(--red);
}

.page-cta__contact-item svg {
  color: var(--red);
  flex-shrink: 0;
}

.page-cta__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xl);
}

.page-cta__form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  text-align: center;
}


/* ===========================================
   SCHEDULE PAGE
   =========================================== */

.schedule-page {
  padding: 60px 0 80px;
  background: var(--white);
}

/* Legend */
.sched-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
  padding: 20px 28px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 32px;
}

.sched-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
}

.sched-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sched-legend__dot--bjj { background: var(--red); }
.sched-legend__dot--striking { background: var(--navy); }
.sched-legend__dot--wrestling { background: #475569; }
.sched-legend__dot--kids { background: #0ea5e9; }
.sched-legend__dot--womens { background: #7c3aed; }
.sched-legend__dot--yoga { background: #059669; }
.sched-legend__dot--open { background: var(--cream-dark); }

/* Day Tabs */
.sched-tabs {
  display: flex;
  gap: 4px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 32px;
}

.sched-tab {
  flex: 1;
  padding: 12px 8px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.sched-tab:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
}

.sched-tab--active {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.sched-tab--active:hover {
  background: var(--navy);
  color: var(--white);
}

.sched-tab--today {
  position: relative;
}

.sched-tab--today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.sched-tab--active.sched-tab--today::after {
  background: var(--cream);
}

.sched-tab__full {
  display: inline;
}

.sched-tab__short {
  display: none;
}

/* Day Panel */
.sched-panel {
  display: none;
  animation: schedFadeIn 0.3s ease;
}

.sched-panel--active {
  display: block;
}

@keyframes schedFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.sched-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}

.sched-panel__title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.sched-panel__count {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Time Block */
.sched-block {
  margin-bottom: 28px;
}

.sched-block__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 12px;
}

.sched-block__label svg {
  color: var(--cream-dark);
}

.sched-block__classes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Individual Class Row */
.sched-class {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.sched-class:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.sched-class--personal {
  background: var(--gray-50);
  border-style: dashed;
}

.sched-class__time {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.sched-class__details {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sched-class__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
}

.sched-class__tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.sched-class__tag--bjj { background: var(--red); }
.sched-class__tag--striking { background: var(--navy); }
.sched-class__tag--wrestling { background: #475569; }
.sched-class__tag--kids { background: #0ea5e9; }
.sched-class__tag--womens { background: #7c3aed; }
.sched-class__tag--yoga { background: #059669; }
.sched-class__tag--open { background: var(--cream-dark); color: var(--navy); }

.sched-class__note {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 500;
  width: 100%;
}

.sched-class__level {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  white-space: nowrap;
  text-align: right;
}

/* Schedule Info Cards */
.sched-info {
  padding: 60px 0;
  background: var(--gray-50);
}

.sched-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sched-info__card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.sched-info__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.sched-info__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--red);
}

.sched-info__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.sched-info__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}


/* --- SCHEDULE PAGE RESPONSIVE --- */
@media (max-width: 768px) {
  .schedule-page {
    padding: 40px 0 60px;
  }

  .sched-legend {
    gap: 10px 16px;
    padding: 14px 16px;
  }

  .sched-tab__full {
    display: none;
  }

  .sched-tab__short {
    display: inline;
  }

  .sched-tab {
    padding: 10px 6px;
    font-size: 0.8rem;
  }

  .sched-panel__title {
    font-size: 1.6rem;
  }

  .sched-class {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }

  .sched-class__time {
    font-size: 0.95rem;
  }

  .sched-class__level {
    text-align: left;
  }

  .sched-info__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sched-info__card {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .sched-legend {
    gap: 8px 12px;
  }

  .sched-legend__item {
    font-size: 0.7rem;
  }

  .sched-tabs {
    gap: 2px;
    padding: 3px;
  }

  .sched-tab {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
}


/* --- LEGAL CONTENT PAGES --- */
.legal-content {
  padding: 60px 0 80px;
  background: var(--white);
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 800px;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
  max-width: 800px;
}

.legal-content li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--gray-300);
  text-underline-offset: 2px;
  transition: all var(--transition);
}

.legal-content a:hover {
  color: var(--red);
  text-decoration-color: var(--red);
}

.legal-content strong {
  color: var(--gray-800);
  font-weight: 700;
}


/* --- PROGRAM PAGE RESPONSIVE --- */
@media (max-width: 1024px) {
  .discipline__grid,
  .discipline__grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }

  .discipline__visual {
    position: static;
  }

  .page-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 130px 0 60px;
  }

  .audience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .discipline,
  .program-overview,
  .program-audience,
  .pillars,
  .highlight-banner,
  .page-cta {
    padding: 60px 0;
  }

  .page-cta__form-wrap {
    padding: 28px 20px;
  }

  .cta__form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-hero__title {
    font-size: 2.4rem;
  }

  .page-hero__actions .btn {
    width: 100%;
  }
}
