/* ============================================
   Run it Programs - Global Styles
   Authentic Martial Arts Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary-dark: #0B0B0B;      /* Deep black - power, dominance */
  --primary: #1A1A1A;            /* Dark charcoal */
  --primary-light: #2D2D2D;      /* Lighter charcoal */
  --red: #C41E24;                /* Crimson red - Thai boxing tradition */
  --red-dark: #9E1820;           /* Darker red for hover */
  --red-light: #E8333A;          /* Lighter red for accents */
  --gold: #D4A843;               /* Gold - Thai culture, achievement */
  --gold-light: #E4C060;         /* Light gold */
  --warm-bg: #F5F0E1;            /* Warm cream background */
  --white: #ffffff;
  --light-gray: #F8F6F1;         /* Warm light gray */
  --mid-gray: #E0DDD5;           /* Warm mid gray */
  --text-dark: #0B0B0B;          /* Near black */
  --text-body: #3D3D3D;          /* Dark gray body text */
  --text-light: #6B6B6B;         /* Medium gray */

  /* Legacy aliases for compatibility */
  --navy: var(--primary-dark);
  --navy-light: var(--primary-light);

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
  --font-heading: 'Oswald', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

.section--navy {
  background: var(--primary-dark);
  color: var(--white);
}

.section--light {
  background: var(--light-gray);
}

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

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

.section-label--light {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(196, 30, 36, 0.3);
}

.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 36, 0.4);
}

.btn--secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.btn--secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.3);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.btn--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}

.nav__brand svg,
.nav__brand img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: contain;
}

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

.nav__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 4px 0;
}

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

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

.nav__links .btn--secondary {
  color: var(--primary-dark);
  background: var(--white);
  border-color: var(--primary-dark);
}

.nav__links .btn--secondary:hover {
  color: var(--white);
  background: var(--primary-dark);
}

.nav__links .btn--primary {
  color: var(--white);
}

.nav__cta {
  padding: 10px 24px !important;
  font-size: 0.9rem !important;
}

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

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

/* --- Hero Section --- */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--primary-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero--image {
  background: linear-gradient(to right, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.75) 50%, rgba(11, 11, 11, 0.4) 100%), url('') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(196, 30, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--gold-light);
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.hero__title span {
  color: var(--gold-light);
}

.hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero__trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.85;
}

.hero__trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
}

.hero__image {
  position: relative;
  z-index: 2;
}

.hero__image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero__floating-card--top {
  top: -10px;
  right: -10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__floating-card--bottom {
  bottom: 10px;
  left: -10px;
}

.hero__floating-card .stars {
  color: var(--gold);
}

.hero__floating-card .number {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--red);
}

/* --- Programs Quick-Nav --- */
.programs-nav {
  background: var(--primary);
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.programs-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.programs-nav__tile {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  cursor: pointer;
  color: var(--white);
}

.programs-nav__tile:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.programs-nav__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.programs-nav__icon svg {
  width: 24px;
  height: 24px;
}

.programs-nav__icon--private {
  background: rgba(196, 30, 36, 0.2);
  color: var(--red-light);
}

.programs-nav__icon--school {
  background: rgba(212, 168, 67, 0.2);
  color: var(--gold-light);
}

.programs-nav__icon--pt {
  background: rgba(39, 174, 96, 0.2);
  color: #5dd39e;
}

.programs-nav__icon--kids {
  background: rgba(100, 149, 237, 0.2);
  color: #88b4f5;
}

.programs-nav__text {
  flex: 1;
  min-width: 0;
}

.programs-nav__text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1.3;
}

.programs-nav__text p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

.programs-nav__arrow {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all var(--transition);
}

.programs-nav__tile:hover .programs-nav__arrow {
  color: var(--gold);
  transform: translateX(3px);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--mid-gray);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-bar__item {
  padding: 16px;
}

.stats-bar__number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stats-bar__label {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* --- Programs Preview (Home) --- */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--mid-gray);
}

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

.program-card__image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.program-card__image--kids {
  background: linear-gradient(135deg, #D4A843, #E4C060);
}

.program-card__image--private {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.program-card__image--school {
  background: linear-gradient(135deg, #C41E24, #E8333A);
}

.program-card__image img,
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.program-card__image svg {
  width: 100px;
  height: 100px;
  color: rgba(255, 255, 255, 0.9);
}

.program-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.program-card {
  display: flex;
  flex-direction: column;
}

.program-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.program-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.program-card__age {
  display: inline-block;
  background: var(--warm-bg);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.program-card__title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.program-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.program-card__features {
  list-style: none;
  margin-bottom: 24px;
}

.program-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.9rem;
}

.program-card__features li svg {
  width: 18px;
  height: 18px;
  color: #27ae60;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

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

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-dark);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-card__role {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --- Why Xavier / Benefits --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mid-gray);
  transition: all var(--transition);
}

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

.benefit-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-card__icon--confidence {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold);
}

.benefit-card__icon--discipline {
  background: rgba(11, 11, 11, 0.08);
  color: var(--primary-dark);
}

.benefit-card__icon--safety {
  background: rgba(39, 174, 96, 0.1);
  color: #27ae60;
}

.benefit-card__icon--fun {
  background: rgba(196, 30, 36, 0.1);
  color: var(--red);
}

.benefit-card__icon svg {
  width: 28px;
  height: 28px;
}

.benefit-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 168, 67, 0.08);
}

.cta-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-banner .btn {
  font-size: 1.1rem;
  padding: 16px 40px;
}

/* --- About Page --- */
.about-hero {
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-image-area {
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.1), rgba(212, 168, 67, 0.1));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

.about-image-area svg {
  width: 280px;
  height: 280px;
  color: rgba(255, 255, 255, 0.85);
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-value__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196, 30, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.about-value__icon svg {
  width: 22px;
  height: 22px;
}

.about-value h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-value p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

/* --- Page Heroes (non-home) --- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
}

/* --- Services Detail --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse > * {
  direction: ltr;
}

.service-detail__content h2,
.service-detail__content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.service-detail__content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-detail__features {
  list-style: none;
  margin-bottom: 28px;
}

.service-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
}

.service-detail__features li svg {
  width: 20px;
  height: 20px;
  color: #27ae60;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail__image {
  border-radius: 20px;
  overflow: hidden;
}

.service-detail__image {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__image--kids {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.1), rgba(228, 192, 96, 0.15));
}

.service-detail__image--private {
  background: linear-gradient(135deg, rgba(11, 11, 11, 0.06), rgba(45, 45, 45, 0.1));
}

.service-detail__image--school {
  background: linear-gradient(135deg, rgba(196, 30, 36, 0.06), rgba(232, 51, 58, 0.1));
}

.service-detail__image svg {
  width: 200px;
  height: 200px;
  opacity: 0.7;
}

/* --- Pricing Preview --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid var(--mid-gray);
  transition: all var(--transition);
  position: relative;
}

.pricing-card--featured {
  border-color: var(--gold);
  transform: scale(1.03);
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-card__title {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-card__features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  color: #27ae60;
  flex-shrink: 0;
}

/* --- Booking Section --- */
.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.booking-step {
  text-align: center;
  padding: 24px;
}

.booking-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 16px;
}

.booking-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.booking-step p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.calendly-container {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 700px;
  border: 1px solid var(--mid-gray);
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  padding: 20px 0;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(196, 30, 36, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-detail__icon svg {
  width: 22px;
  height: 22px;
}

.contact-detail h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-detail a {
  color: var(--primary-dark);
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--mid-gray);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand svg,
.footer__brand img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: contain;
}

.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: rgba(255, 255, 255, 0.8);
}

.footer__social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.footer__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.footer__bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--red);
}

.faq-item__question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-item.active .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-item.active .faq-item__answer {
  padding: 0 24px 20px;
  max-height: 300px;
}

.faq-item__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero__image {
    display: none;
  }

  .programs-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .service-detail,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-detail--reverse {
    direction: ltr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__links a {
    color: rgba(255, 255, 255, 0.8);
  }

  .nav__links .btn--secondary {
    color: var(--primary-dark);
    background: var(--white);
    border-color: var(--primary-dark);
  }

  .nav__links .btn--secondary:hover {
    color: var(--white);
    background: var(--primary-dark);
  }

  .nav__links .btn--primary {
    color: var(--white);
  }

  .nav__links.active {
    display: flex;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 48px;
  }

  .page-hero {
    padding: 110px 0 48px;
  }

  .cta-banner {
    padding: 48px 0;
  }

  .service-detail__image {
    min-height: 250px !important;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .programs-nav__grid {
    grid-template-columns: 1fr;
  }

  .programs-nav {
    padding: 32px 0;
  }

  .programs-nav__arrow {
    display: none;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-steps {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card--featured {
    transform: none;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .about-values {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn--large {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__number {
    font-size: 1.8rem;
  }

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

  .hero__badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .contact-form {
    padding: 24px 20px;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-in--delay-1 { animation-delay: 0.1s; }
.animate-in--delay-2 { animation-delay: 0.2s; }
.animate-in--delay-3 { animation-delay: 0.3s; }
.animate-in--delay-4 { animation-delay: 0.4s; }
