/* ============================================
   Park View Academy - Global Styles
   Fonts matched to logo: Lora (serif) + Sacramento (script) + Lato (body)
   Colors derived from logo
   ============================================ */

:root {
  --green-primary: #8CC63F;
  --green-dark: #6BA52A;
  --green-darker: #4A7C1E;
  --green-light: #A8D86A;
  --green-pale: #E8F5D6;
  --green-bg: #F4FAE9;
  --text-dark: #2C2C2C;
  --text-body: #444444;
  --text-muted: #777777;
  --text-light: #999999;
  --bg-white: #FFFFFF;
  --bg-off-white: #FAFAFA;
  --bg-light: #F5F5F5;
  --border-light: #E8E8E8;
  --border-green: #8CC63F33;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --font-heading: 'Lora', Georgia, 'Times New Roman', serif;
  --font-script: 'Sacramento', cursive;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-primary); }
ul, ol { list-style: none; }

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

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p {
  margin-bottom: 1rem;
  text-wrap: pretty;
}

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

/* ============================================
   Sticky Header Wrapper (top bar + nav)
   ============================================ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Top Bar */
.top-bar {
  background: var(--text-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 7px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--green-light); }

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.top-bar__social { display: flex; gap: 10px; align-items: center; }

.top-bar__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity var(--transition);
}
.top-bar__social a:hover { opacity: 1; }
.top-bar__social svg { width: 16px; height: 16px; fill: #fff; }

/* Header / Nav */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__logo { display: flex; align-items: center; gap: 10px; }
.site-header__logo img { height: 52px; width: auto; }
.site-header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-header__logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  font-weight: 400;
}
.site-header__logo-tagline { font-family: var(--font-script); font-size: 0.85rem; }

/* Navigation */
.main-nav { display: flex; align-items: center; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__item { position: relative; }

.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--green-dark);
  background: var(--green-pale);
}

/* Dropdown arrow */
.main-nav__arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--transition);
}

.main-nav__item:hover .main-nav__arrow { transform: rotate(180deg); }

/* Dropdown */
.main-nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 100;
}

.main-nav__item:hover .main-nav__dropdown { display: block; }

.main-nav__dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.main-nav__dropdown a:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

/* Mobile Menu Toggle */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
}

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

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* CTA Button in Nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 10px 22px;
  background: var(--green-primary);
  color: #fff !important;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-dark);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(140,198,63,0.35);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(140,198,63,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-primary);
}
.btn-secondary:hover {
  background: var(--green-pale);
  color: var(--green-darker);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--green-dark);
  font-weight: 600;
}
.btn-white:hover {
  background: var(--green-pale);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* ============================================
   Social Media SVG Icons
   ============================================ */
.social-icon { display: inline-flex; align-items: center; justify-content: center; }
.social-icon svg { width: 18px; height: 18px; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 70px 0 80px;
  background: linear-gradient(135deg, var(--green-bg) 0%, #fff 60%, var(--green-pale) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(140,198,63,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 1;
}

.hero__content { flex: 1; max-width: 520px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-darker);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero__title { margin-bottom: 20px; }
.hero__title span { color: var(--green-primary); }

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

.hero__trust {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero__trust-icon {
  color: var(--green-primary);
  font-size: 1rem;
}

/* Hero Form (replaces visual on key pages) */
.hero__form {
  flex: 1;
  max-width: 440px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero__form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  text-wrap: balance;
}

.hero__form p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero__form .form-group { margin-bottom: 14px; }

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

.hero__form .form-group input,
.hero__form .form-group select,
.hero__form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color var(--transition);
}

.hero__form .form-group input:focus,
.hero__form .form-group select:focus,
.hero__form .form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(140,198,63,0.15);
}

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

.hero__form .btn { width: 100%; margin-top: 4px; }

.hero__form-trust {
  margin-top: 16px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   Sections
   ============================================ */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-light); }
.section--green { background: var(--green-bg); }
.section--dark {
  background: var(--text-dark);
  color: #fff;
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,0.8); }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.section__title { margin-bottom: 16px; }
.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Program Cards
   ============================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

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

.program-card__image {
  height: 200px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.program-card__image .card-icon {
  width: 64px;
  height: 64px;
  fill: var(--green-dark);
  opacity: 0.4;
}

.program-card__age {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--green-primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.program-card__body { padding: 28px; }
.program-card__title {
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.program-card__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-dark);
}
.program-card__link:hover { gap: 10px; }

/* ============================================
   Features / Why Choose Us
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--green-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   Two Column Layout
   ============================================ */
.two-col {
  display: flex;
  align-items: center;
  gap: 60px;
}

.two-col--reverse { flex-direction: row-reverse; }
.two-col__content { flex: 1; }
.two-col__visual {
  flex: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.two-col__visual img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.two-col__visual--placeholder {
  background: var(--green-bg);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.two-col__visual--placeholder svg {
  width: 80px;
  height: 80px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.3;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-card__stars {
  color: #F5A623;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

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

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

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

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

.cta-banner::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 28px; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ============================================
   Location Cards
   ============================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.location-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.location-card:hover { box-shadow: var(--shadow-md); }

.location-card__map {
  height: 200px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.location-card__map svg {
  width: 48px;
  height: 48px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.4;
}

.location-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
}

.location-card__badge--new {
  background: var(--green-darker);
}

.location-card__body { padding: 28px; }
.location-card__title { font-size: 1.2rem; margin-bottom: 12px; }
.location-card__address { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.location-card__phone a { font-weight: 600; color: var(--green-dark); }

/* ============================================
   New Location Banner (slim, on-brand)
   ============================================ */
.new-location-banner {
  background: var(--green-darker);
  padding: 10px 0;
  text-align: center;
  color: #fff;
}

.new-location-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.new-location-banner__text {
  font-size: 0.85rem;
  font-weight: 500;
}

.new-location-banner__text strong {
  font-weight: 700;
}

.new-location-banner .btn-sm {
  background: #fff;
  color: var(--green-darker);
  padding: 5px 16px;
  font-size: 0.78rem;
  border-radius: var(--radius-xl);
}

.new-location-banner .btn-sm:hover {
  background: var(--green-pale);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-white);
}

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

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

.faq-item__icon {
  font-size: 1.4rem;
  transition: transform var(--transition);
  color: var(--green-primary);
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-item.active .faq-item__answer { display: block; }

/* ============================================
   Contact Form
   ============================================ */
.form-group { margin-bottom: 20px; }

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  background: var(--bg-white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(140,198,63,0.15);
}

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

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

/* ============================================
   Team Section
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

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

.team-card__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-card__photo svg {
  width: 48px;
  height: 48px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.4;
}

.team-card__name {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.team-card__role {
  font-size: 0.82rem;
  color: var(--green-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   Tuition Table
   ============================================ */
.tuition-overview {
  max-width: 800px;
  margin: 0 auto;
}

.tuition-card {
  background: var(--bg-white);
  border: 2px solid var(--green-primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.tuition-card__price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--green-dark);
  margin: 10px 0;
}

.tuition-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tuition-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-dark);
}

.tuition-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.tuition-detail {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.tuition-detail__value {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.tuition-detail__label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.tuition-notes {
  background: var(--green-bg);
  border-radius: var(--radius-md);
  padding: 28px;
}

.tuition-notes h4 { margin-bottom: 14px; }

.tuition-notes ul {
  list-style: none;
  padding: 0;
}

.tuition-notes li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-body);
}

.tuition-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--green-primary);
  border-radius: 50%;
}

/* ============================================
   Page Header (Interior Pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-bg) 0%, #fff 100%);
  padding: 50px 0 40px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
}

.page-header__breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-header__breadcrumb a { color: var(--green-dark); }
.page-header__breadcrumb span { margin: 0 6px; color: var(--text-light); }

.page-header h1 { margin-bottom: 12px; }

.page-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
  padding: 60px 0;
}

.content-section + .content-section {
  border-top: 1px solid var(--border-light);
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
}

.content-body h2 { margin: 40px 0 16px; }
.content-body h3 { margin: 30px 0 12px; }

.content-body ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-body li { padding: 4px 0; }

/* ============================================
   Checklist
   ============================================ */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 0.95rem;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--green-pale);
  border-radius: 50%;
  top: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236BA52A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ============================================
   Why PVA Anchor Sections
   ============================================ */
.why-section {
  scroll-margin-top: 100px;
}

.why-section + .why-section {
  border-top: 1px solid var(--border-light);
}

/* ============================================
   Gallery Social Embed
   ============================================ */
.gallery-embed-section {
  max-width: 700px;
  margin: 0 auto;
}

.gallery-embed-section iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  min-height: 480px;
}

.gallery-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-placeholder-item {
  aspect-ratio: 1;
  background: var(--green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.gallery-placeholder-item svg {
  width: 32px;
  height: 32px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .gallery-placeholder-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   Careers listing
   ============================================ */
.careers-list {
  max-width: 700px;
  margin: 0 auto;
}

.career-item {
  padding: 28px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  background: var(--bg-white);
  transition: all var(--transition);
}

.career-item:hover { border-color: var(--green-primary); box-shadow: var(--shadow-sm); }

.career-item__title { font-size: 1.1rem; margin-bottom: 6px; }
.career-item__meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.career-item__desc { font-size: 0.9rem; color: var(--text-body); margin-bottom: 14px; }

/* ============================================
   Safety icons grid
   ============================================ */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.safety-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.safety-item__icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.safety-item__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.safety-item__title {
  font-size: 1rem;
  margin-bottom: 6px;
}

.safety-item__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .safety-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  transition: all var(--transition);
}

.footer-col a:hover { color: var(--green-light); }

.footer__logo { margin-bottom: 16px; }
.footer__logo img { height: 50px; filter: brightness(10); }

.footer-social { display: flex; gap: 12px; margin-top: 16px; }

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { flex-direction: column; text-align: center; gap: 40px; }
  .hero__content { max-width: 100%; }
  .hero__buttons { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__form { max-width: 500px; width: 100%; }
  .hero__form { text-align: left; }

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

  .two-col { flex-direction: column; gap: 40px; }
  .two-col--reverse { flex-direction: column; }

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

@media (max-width: 768px) {
  .top-bar { display: none; }

  .sticky-header { top: 0; }

  .site-header .container { position: relative; }

  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    z-index: 1000;
    padding: 80px 24px 40px;
    overflow-y: auto;
  }

  .main-nav.active { display: block; }

  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav__link {
    padding: 14px 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border-light);
  }

  .main-nav__dropdown {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    background: transparent;
  }

  .main-nav__item.mobile-open .main-nav__dropdown { display: block; }

  .main-nav__dropdown a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .hero { padding: 50px 0 60px; }
  .section { padding: 50px 0; }

  .programs-grid,
  .features-grid,
  .testimonials-grid,
  .locations-grid,
  .tuition-details,
  .team-grid { grid-template-columns: 1fr; }

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

  .two-col__visual--placeholder { height: 260px; }
  .two-col__visual img { height: 280px; }

  .contact-two-col { grid-template-columns: 1fr !important; gap: 40px !important; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .hero__trust { flex-direction: column; gap: 12px; }
  .tuition-card__price { font-size: 2.2rem; }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.hero__trust-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; margin-right: 6px; color: var(--green); flex-shrink: 0;
}
.hero__trust-check svg { width: 18px; height: 18px; }
