/* =============================================================================
   DIVINE PEACE CHILDCARE — styles.css
   Warm, clean, family-friendly design.

   TABLE OF CONTENTS
   1.  Theme Variables
   2.  Reset & Base
   3.  Typography
   4.  Utilities
   5.  Skip Link
   6.  Topbar
   7.  Header & Navigation
   8.  Buttons
   9.  Hero Section
   10. Section Wrappers & Headings
   11. About Section
   12. Programs Section
   13. Why Choose Us / Features
   14. Stats Row
   15. Tour Booking & Enrollment (Forms)
   16. Google Sign-In Button
   17. Testimonials
   18. Gallery
   19. FAQ Accordion
   20. Contact Section
   21. Footer
   22. Modals
   23. Responsive — Tablet (≤ 960px)
   24. Responsive — Mobile (≤ 680px)
   25. Responsive — Small (≤ 420px)
============================================================================= */


/* ─────────────────────────────────────────────────────────────────────────────
   1. THEME VARIABLES
   Change colors here to retheme the entire site at once.
───────────────────────────────────────────────────────────────────────────── */
:root {
  /* Brand colors */
  --primary:        #2563EB;   /* Trust blue — buttons, links, highlights  */
  --primary-dark:   #1D4ED8;   /* Darker blue for hover states              */
  --primary-light:  #EFF6FF;   /* Very light blue for backgrounds           */
  --green:          #16A34A;   /* Growth green                              */
  --green-light:    #F0FDF4;
  --orange:         #D97706;   /* Warm sunshine accent                      */
  --orange-light:   #FFFBEB;
  --purple:         #7C3AED;   /* Playful accent                            */
  --purple-light:   #F5F3FF;

  /* Backgrounds */
  --bg:             #FEFCF8;   /* Warm cream page background                */
  --bg-warm:        #FFF8F0;   /* Slightly warmer alternate section bg      */
  --surface:        #FFFFFF;   /* Card / form background                    */

  /* Text */
  --text:           #1E293B;   /* Main dark text                            */
  --text-muted:     #64748B;   /* Secondary text, labels                    */
  --text-light:     #94A3B8;   /* Placeholders, hints                       */

  /* Borders & dividers */
  --border:         #E2E8F0;
  --border-focus:   #93C5FD;   /* Blue glow on focused inputs               */

  /* Header */
  --header-bg:      #1E3A5C;   /* Deep navy header                          */
  --header-text:    #FFFFFF;

  /* Shadows */
  --shadow-sm:      0 1px 4px rgba(30, 58, 92, 0.07);
  --shadow:         0 4px 16px rgba(30, 58, 92, 0.10);
  --shadow-md:      0 6px 24px rgba(30, 58, 92, 0.13);
  --shadow-lg:      0 12px 40px rgba(30, 58, 92, 0.16);

  /* Rounding */
  --radius-sm:      8px;
  --radius:         14px;
  --radius-lg:      22px;
  --radius-xl:      32px;
  --radius-full:    9999px;

  /* Typography */
  --font-heading:   'Nunito', system-ui, sans-serif;
  --font-body:      'Inter', system-ui, sans-serif;

  /* Spacing */
  --section-pad:    5rem;
  --container:      1200px;
  --container-pad:  1.5rem;

  /* Transitions */
  --transition:     0.22s ease;
}


/* ─────────────────────────────────────────────────────────────────────────────
   2. 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);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover { color: var(--primary-dark); }

ul { list-style: none; }

address { font-style: normal; }

/* Focus ring — visible for keyboard users */
:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* ─────────────────────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { color: var(--text-muted); }

strong { color: var(--text); font-weight: 600; }


/* ─────────────────────────────────────────────────────────────────────────────
   4. UTILITIES
───────────────────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Small label above a heading */
.kicker {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  margin-bottom: .75rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   5. SKIP LINK
───────────────────────────────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus { top: 0; }


/* ─────────────────────────────────────────────────────────────────────────────
   6. TOPBAR
───────────────────────────────────────────────────────────────────────────── */
.topbar {
  background: var(--header-bg);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  padding: .45rem 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.topbar__hours { color: rgba(255,255,255,.6); }

.topbar__sep { color: rgba(255,255,255,.25); }

.topbar__link {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  transition: color var(--transition);
}

.topbar__link:hover { color: #fff; }

.topbar__right {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.topbar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-full);
  color: rgba(255,255,255,.8);
  transition: background var(--transition), color var(--transition);
}

.topbar__social:hover {
  background: rgba(255,255,255,.2);
  color: #fff;
}


/* ─────────────────────────────────────────────────────────────────────────────
   7. HEADER & NAVIGATION
───────────────────────────────────────────────────────────────────────────── */
.header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .85rem;
  padding-bottom: .85rem;
}

/* Brand / Logo */
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand__logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand__tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: .03em;
}

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

.nav__menu {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav__menu a {
  display: block;
  padding: .45rem .7rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__menu a:hover {
  color: var(--primary);
  background: var(--primary-light);
}

/* Hamburger toggle (hidden on desktop) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav CTA button */
.nav__cta-item { margin-left: .4rem; }

.btn--nav {
  background: var(--primary);
  color: #fff !important;
  padding: .5rem 1.1rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  font-size: .85rem !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition) !important;
}

.btn--nav:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4) !important;
  transform: translateY(-1px);
}


/* ─────────────────────────────────────────────────────────────────────────────
   8. BUTTONS
───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .7rem 1.5rem;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              transform var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — solid blue */
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 5px 18px rgba(37, 99, 235, 0.4);
  color: #fff;
}

/* Outline — bordered, transparent fill */
.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary-light);
}

/* Outline primary (used in cards) */
.btn--outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  font-size: .85rem;
}

.btn--outline-primary:hover {
  background: var(--primary);
  color: #fff;
}

/* Sizes */
.btn--lg { padding: .85rem 2rem; font-size: 1rem; }
.btn--small { padding: .45rem 1rem; font-size: .82rem; }
.btn--full { width: 100%; }


/* ─────────────────────────────────────────────────────────────────────────────
   9. HERO SECTION
───────────────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #F0F7FF 0%, var(--bg) 55%);
  padding: 5rem 0 4rem;
  overflow: hidden;
}

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

.hero__content { max-width: 560px; }

.hero__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 1.25rem 0 2rem;
  line-height: 1.75;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Trust badges */
.hero__trust {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: .35rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.trust-badge__icon { font-size: .9rem; }

/* Hero visual panel */
.hero__visual { position: relative; }

.hero__visual-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: visible;
  padding: 1.25rem;
}

/* Real hero photo */
.hero__photo {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* Photo placeholder (swap for real <img> when ready) */
.hero__photo-placeholder {
  background: linear-gradient(135deg, var(--primary-light) 0%, #DBEAFE 100%);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed #BFDBFE;
}

.placeholder__icon { font-size: 3rem; opacity: .7; }
.placeholder__text { font-size: .95rem; font-weight: 600; color: var(--primary); line-height: 1.4; }
.placeholder__hint { font-size: .75rem; color: var(--text-light); }

/* Floating stat mini-cards */
.hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: var(--surface);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  box-shadow: var(--shadow-md);
  font-size: .82rem;
  line-height: 1.3;
  z-index: 10;
  border: 1px solid var(--border);
}

.hero__float strong { display: block; font-size: .9rem; color: var(--text); }
.hero__float span { color: var(--text-muted); font-size: .78rem; }

.float__icon { font-size: 1.5rem; }

.hero__float--tl { top: -1rem; left: -1.25rem; }
.hero__float--br { bottom: -1rem; right: -1.25rem; }


/* ─────────────────────────────────────────────────────────────────────────────
   10. SECTION WRAPPERS & HEADINGS
───────────────────────────────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  background: var(--bg);
}

/* Warm alternate background for even sections */
.section--warm {
  background: var(--bg-warm);
}

/* Centered section header with kicker + h2 + optional subtext */
.section__head {
  margin-bottom: 3rem;
}

.section__head--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__head h2 { margin-top: .3rem; }

.section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: .75rem;
  line-height: 1.7;
}

.section__sub a { color: var(--primary); font-weight: 500; }


/* ─────────────────────────────────────────────────────────────────────────────
   11. ABOUT SECTION
───────────────────────────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  font-size: .97rem;
  line-height: 1.8;
}

.about__text .btn { margin-top: .5rem; }

.about__visual { display: flex; flex-direction: column; gap: 1.25rem; }

.about__img-placeholder {
  background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
  border-radius: var(--radius-lg);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  text-align: center;
  padding: 2rem;
  border: 2px dashed #BBF7D0;
}

.about__img-placeholder .placeholder__text { color: var(--green); }

/* Core values grid */
.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}

.about__value {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.about__value-icon { font-size: 1.25rem; flex-shrink: 0; }


/* ─────────────────────────────────────────────────────────────────────────────
   12. PROGRAMS SECTION
───────────────────────────────────────────────────────────────────────────── */
.program-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.program-card__icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.program-card__icon-wrap--blue   { background: var(--primary-light); }
.program-card__icon-wrap--green  { background: var(--green-light); }
.program-card__icon-wrap--orange { background: var(--orange-light); }
.program-card__icon-wrap--purple { background: var(--purple-light); }

.program-card__body { flex: 1; }

.program-card__age {
  font-size: .78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .4rem;
  font-family: var(--font-heading);
}

.program-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: .6rem;
}

.program-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: .9rem;
}

.program-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.program-card__list li {
  font-size: .85rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.program-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}


/* ─────────────────────────────────────────────────────────────────────────────
   13. WHY CHOOSE US / FEATURES
───────────────────────────────────────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.feature-card__icon-wrap {
  width: 52px; height: 52px;
  background: var(--primary-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .6rem;
}

.feature-card p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ─────────────────────────────────────────────────────────────────────────────
   14. STATS ROW
───────────────────────────────────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  background: var(--header-bg);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-item__numwrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .15rem;
  margin-bottom: .4rem;
}

.stat-item__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-item__suffix {
  font-size: 1.25rem;
  font-weight: 700;
  color: #93C5FD;
}

.stat-item__label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  letter-spacing: .02em;
}


/* ─────────────────────────────────────────────────────────────────────────────
   15. FORMS (Tour Booking, Enrollment, Contact)
───────────────────────────────────────────────────────────────────────────── */
/* Centered form wrapper with max width */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form__group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-heading);
}

.required { color: var(--primary); }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  padding: .7rem 1rem;
  font-size: .92rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--text-light);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  background: var(--surface);
}

.form__group select {
  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='%2364748B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form__group textarea { resize: vertical; min-height: 90px; }

/* Validation states */
.form__group input.is-invalid,
.form__group select.is-invalid,
.form__group textarea.is-invalid {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form feedback note */
.form__note {
  font-size: .85rem;
  min-height: 1.2em;
  text-align: center;
  font-weight: 500;
  margin-top: -.25rem;
}

.form__note--success { color: var(--green); }
.form__note--error   { color: #EF4444; }

/* Honeypot — visually hidden, bots fill it in and are rejected */
.form__honeypot {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────────────────────
   16. GOOGLE SIGN-IN BUTTON
───────────────────────────────────────────────────────────────────────────── */
.google-signin-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.google-signin-block__label {
  font-size: .88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

/* The Google button itself */
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--surface);
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: .65rem 1.5rem;
  font-size: .92rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), border-color var(--transition),
              background var(--transition), transform var(--transition);
}

.btn-google:hover {
  box-shadow: var(--shadow);
  border-color: #CBD5E1;
  background: #FAFAFA;
  transform: translateY(-1px);
}

.btn-google:active { transform: translateY(0); }

.btn-google__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* "or" divider between Google button and form */
.signin-divider {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
  color: var(--text-muted);
  font-size: .82rem;
}

.signin-divider::before,
.signin-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}


/* ─────────────────────────────────────────────────────────────────────────────
   17. TESTIMONIALS
───────────────────────────────────────────────────────────────────────────── */
.testimonials {
  max-width: 760px;
  margin: 0 auto;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.testimonial__btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), box-shadow var(--transition);
}

.testimonial__btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.3);
}

.testimonials__dots {
  display: flex;
  gap: .45rem;
}

.dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: var(--border);
  transition: background var(--transition), width var(--transition);
  cursor: pointer;
}

.dot.is-active {
  background: var(--primary);
  width: 20px;
}

/* Slider */
.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.testimonial.is-active { display: block; }

.testimonial__stars {
  color: #F59E0B;
  font-size: 1.2rem;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}

.testimonial__quote {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.75rem;
  border: none;
  padding: 0;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  text-align: left;
}

.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial__author strong {
  display: block;
  font-size: .92rem;
  font-family: var(--font-heading);
}

.testimonial__author span {
  display: block;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .1rem;
}


/* ─────────────────────────────────────────────────────────────────────────────
   18. GALLERY
───────────────────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  aspect-ratio: 16 / 10;
}

.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.015);
}

/* First item spans 2 rows */
.gallery-item--large {
  grid-row: span 2;
  aspect-ratio: unset;
}

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

/* Placeholder tile */
.gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--ph-bg, var(--primary-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1.5rem;
  text-align: center;
  border: 2px dashed color-mix(in srgb, var(--ph-color, var(--primary)) 30%, transparent);
}

.gallery__ph-icon { font-size: 2.5rem; }

.gallery__ph-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--ph-color, var(--primary));
  font-family: var(--font-heading);
}

.gallery__ph-hint {
  font-size: .72rem;
  color: var(--text-light);
  font-family: monospace;
}

.gallery__cta {
  text-align: center;
  margin-top: .5rem;
}

/* Real gallery images */
.gallery-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item__img {
  transform: scale(1.04);
}

/* Full-image tile — shows the whole photo without cropping */
.gallery-item--contain {
  background: #f8f5f0;
}

.gallery-item--contain .gallery-item__img {
  object-fit: contain;
  object-position: center;
}

.gallery-item--contain:hover .gallery-item__img {
  transform: scale(1.02);
}

/* Large cover photo tile with gradient overlay */
.gallery-item--cover {
  position: relative;
}

.gallery-cover__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 30, 55, 0.72) 0%,
    rgba(15, 30, 55, 0.18) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1.75rem 1.75rem 2rem;
  pointer-events: none;
}

.gallery-cover__label {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}

.gallery-cover__sub {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
  margin-top: .3rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}


/* ─────────────────────────────────────────────────────────────────────────────
   19. FAQ ACCORDION
───────────────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item.is-open {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.07);
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  transition: background var(--transition);
}

.faq-item__question:hover { background: var(--primary-light); }

.faq-item.is-open .faq-item__question { background: var(--primary-light); color: var(--primary); }

.faq-item__icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-item__answer {
  padding: 0 1.35rem 1.35rem;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-item__answer p { margin-bottom: .65rem; }
.faq-item__answer p:last-child { margin-bottom: 0; }

.faq-item__answer ul {
  list-style: none;
  padding: 0;
  margin: .5rem 0;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.faq-item__answer ul li {
  padding-left: 1.4rem;
  position: relative;
}

.faq-item__answer ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.faq-item__answer a { color: var(--primary); font-weight: 500; }


/* ─────────────────────────────────────────────────────────────────────────────
   20. CONTACT SECTION
───────────────────────────────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Contact info sidebar */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-card__icon { font-size: 1.4rem; flex-shrink: 0; margin-top: .1rem; }

.contact-card h3 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: .3rem;
  font-family: var(--font-heading);
}

.contact-card p,
.contact-card address {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* Quick CTA box at bottom of contact sidebar */
.contact-cta-box {
  background: var(--primary-light);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.contact-cta-box p {
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}


/* ─────────────────────────────────────────────────────────────────────────────
   21. FOOTER
───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--header-bg);
  color: rgba(255,255,255,.75);
  padding-top: 3.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Footer brand column */
.footer__brand { display: flex; flex-direction: column; gap: .9rem; }

.brand--footer .brand__name { color: #fff; font-size: .98rem; }
.brand--footer .brand__tag  { color: rgba(255,255,255,.55); }

.footer__desc {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 300px;
}

.footer__address {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
}

.footer__copy {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-top: auto;
}

/* Footer link columns */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer__col nav,
.footer__col > a {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__col a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
  text-decoration: none;
}

.footer__col a:hover { color: #fff; }

.footer__hours {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin: .25rem 0;
}

/* Social icons */
.footer__social {
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}

.footer__social-link {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}

.footer__social-link:hover {
  background: var(--primary);
  color: #fff;
}

/* Footer bottom bar */
.footer__bottom {
  padding: 1rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}

.footer__legal a {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  transition: color var(--transition);
}

.footer__legal a:hover { color: #fff; }


/* ─────────────────────────────────────────────────────────────────────────────
   22. MODALS
───────────────────────────────────────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal:not([aria-hidden="true"]) {
  visibility: visible;
  opacity: 1;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 92, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal__card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 480px;
  z-index: 1;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform var(--transition);
}

.modal:not([aria-hidden="true"]) .modal__card {
  transform: translateY(0) scale(1);
}

.modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.modal__close {
  width: 32px; height: 32px;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: .95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.modal__close:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary);
}

.modal__body {
  padding: 1.75rem 1.5rem;
}

.modal__body--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .75rem;
}

.modal__body--centered p { font-size: .92rem; color: var(--text-muted); max-width: 360px; }

.success-icon { font-size: 3.5rem; line-height: 1; }

.google-modal__hint {
  font-size: .82rem !important;
  color: var(--text-light) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   23. OFFER BANNER
───────────────────────────────────────────────────────────────────────────── */
.offer-section {
  background: linear-gradient(160deg, #F0FFF4 0%, #ECFDF5 100%);
}

.offer-banner {
  background: #fff;
  border: 2px solid #D1FAE5;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(16, 185, 129, 0.10);
  padding: 2.5rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.offer-banner__header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 2rem;
}

.offer-banner__emoji {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.offer-banner__title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 .2rem;
  line-height: 1.2;
}

.offer-banner__subtitle {
  font-size: .92rem;
  color: #059669;
  font-weight: 600;
  margin: 0;
}

.offer-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.offer-card {
  background: #F9FAFB;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .6rem;
}

.offer-card--highlight {
  background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
  border-color: #6EE7B7;
}

.offer-card__badge {
  display: inline-block;
  background: #10B981;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  letter-spacing: .03em;
  margin-bottom: .3rem;
}

.offer-card__badge--green {
  background: #2563EB;
}

.offer-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.offer-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text);
}

.offer-card p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}

.offer-banner__image {
  width: 100%;
  margin-bottom: 1.75rem;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.offer-banner__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.offer-banner__disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--text-light);
  margin: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   24. ENROLLMENT CTA
───────────────────────────────────────────────────────────────────────────── */
.enroll-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.enroll-cta__content .kicker { margin-bottom: .5rem; }

.enroll-cta__sub {
  font-size: .97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 1rem 0 1.75rem;
}

.enroll-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.enroll-cta__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.enroll-cta__badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem 1.1rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--text);
}

.enroll-cta__badge-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}


/* ─────────────────────────────────────────────────────────────────────────────
   25. RESPONSIVE — TABLET (≤ 960px)
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {

  /* Topbar — hide hours on tablet */
  .topbar__hours { display: none; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__content { max-width: 100%; }

  .hero__float--tl { top: .5rem; left: .5rem; }
  .hero__float--br { bottom: .5rem; right: .5rem; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Features */
  .feature-grid { grid-template-columns: repeat(2, 1fr); }

  /* Stats */
  .stats-row { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item--large { grid-row: auto; aspect-ratio: 16 / 10; }

  /* Offer banner */
  .offer-banner { padding: 2rem 1.5rem; }
  .offer-banner__header { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .offer-cards { grid-template-columns: 1fr; }

  /* Enrollment CTA */
  .enroll-cta {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}


/* ─────────────────────────────────────────────────────────────────────────────
   24. RESPONSIVE — MOBILE (≤ 680px)
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 680px) {

  :root { --section-pad: 3rem; }

  /* Topbar */
  .topbar__sep { display: none; }
  .topbar__left {
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
  }

  /* Header */
  .nav__toggle { display: flex; }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: .75rem 1rem 1rem;
    gap: .1rem;
    box-shadow: 0 8px 24px rgba(30,58,92,0.12);
    z-index: 100;
  }

  .nav__menu.is-open { display: flex; }

  .nav__menu a {
    padding: .65rem .75rem;
    width: 100%;
    font-size: .92rem;
  }

  .nav__cta-item { margin-left: 0; margin-top: .35rem; }

  .btn--nav { width: 100%; justify-content: center; }

  /* Needed for mobile nav dropdown positioning */
  .header { position: sticky; }
  .header__inner { position: relative; }

  /* Hero */
  .hero { padding: 3.5rem 0 3rem; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__trust { gap: .5rem; }

  /* About values */
  .about__values { grid-template-columns: 1fr 1fr; }

  /* Programs */
  .program-cards { grid-template-columns: 1fr; }

  /* Features */
  .feature-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr 1fr; padding: 1.5rem; }

  /* Form */
  .form-wrapper { padding: 1.5rem; }
  .form__row { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial { padding: 1.75rem 1.25rem; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-cta-box .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer__cols { grid-template-columns: 1fr 1fr; }
}


/* ─────────────────────────────────────────────────────────────────────────────
   25. RESPONSIVE — SMALL (≤ 420px)
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 420px) {
  .topbar__right { display: none; }

  .brand__name { font-size: .92rem; }
  .brand__tag  { display: none; }

  h1 { font-size: 1.75rem; }

  .hero__trust { flex-direction: column; }

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

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

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

  .offer-banner { padding: 1.5rem 1.25rem; }
  .offer-banner__title { font-size: 1.3rem; }

  .enroll-cta__actions { flex-direction: column; }
  .enroll-cta__actions .btn { width: 100%; justify-content: center; }

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

  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}


