/* ============================================
   Park View Academy — Global Styles
   Color palette 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: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -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;
}

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; }

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
  background: var(--text-dark);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 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: 12px; align-items: center; }
.top-bar__social a { font-size: 0.95rem; opacity: 0.85; }
.top-bar__social a:hover { opacity: 1; }

/* ============================================
   Header
   ============================================ */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

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

.site-header__logo { display: flex; align-items: center; gap: 10px; }
.site-header__logo img { height: 56px; 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.35rem;
  color: var(--text-dark);
  font-weight: 400;
}
.site-header__logo-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

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

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

.main-nav__item { position: relative; }

.main-nav__link {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  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 */
.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: 12px;
  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; }

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 90px;
  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: 60px;
  position: relative;
  z-index: 1;
}

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

.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.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

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

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

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

.hero__visual {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero__image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.hero__image-badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--green-dark);
  font-family: var(--font-heading);
}

.hero__image-badge span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   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-icon {
  font-size: 3.5rem;
  opacity: 0.8;
}

.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;
  font-size: 1.8rem;
}

.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;
  font-size: 4rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================
   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;
  font-size: 3rem;
  position: relative;
}

.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: #FF8C00;
}

.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); }

/* ============================================
   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
   ============================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.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;
  font-size: 2.5rem;
  overflow: hidden;
}

.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;
  color: var(--green-primary);
  font-weight: 700;
}

/* ============================================
   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 (Interior Pages)
   ============================================ */
.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;
}

/* ============================================
   New Location Banner
   ============================================ */
.new-location-banner {
  background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

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

.new-location-banner__text {
  font-size: 0.95rem;
  font-weight: 600;
}

.new-location-banner .btn-sm {
  background: #fff;
  color: #FF6B00;
  padding: 8px 20px;
  font-size: 0.8rem;
}

.new-location-banner .btn-sm:hover {
  background: rgba(255,255,255,0.9);
}

/* ============================================
   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);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  top: 12px;
}

/* ============================================
   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;
  font-size: 0.9rem;
  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-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__visual { max-width: 400px; }

  .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; }

  .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; }

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

@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;
}

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

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

@media (max-width: 768px) {
  .gallery-embed { 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;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.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; }
}
