/* Little Giggles — brand colors sampled from assets/images/brand/logonew.png */
:root {
  --brand-blue: #3040c0;
  --brand-red: #f01018;
  --navy: var(--brand-blue);
  --navy-dark: #243099;
  --footer-blue: #1a2370;
  --footer-blue-deep: #0c1038;
  --red: var(--brand-red);
  --red-dark: #c80d14;
  --gold: var(--brand-red);
  --white: #ffffff;
  --cream: #f5f5f5;
  --gray-100: #ececec;
  --gray-200: #dddddd;
  --gray-600: #404040;
  --gray-800: #191919;
  --text-body: #666666;
  --text-heading: #191919;
  --text-muted: #404040;
  --shadow: 0 4px 24px rgba(48, 64, 192, 0.18);
  --radius: 8px;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --topbar-h: 38px;
  --header-h: 72px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--red);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 0.5rem 0;
  gap: 0.75rem 1rem;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: min(200px, 32vw);
  object-fit: contain;
  object-position: left center;
}

.brand img:not(.brand-logo) {
  height: 52px;
  width: auto;
  max-width: min(200px, 32vw);
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  padding: 0.15rem 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--red);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}

.header-cta-desktop {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.5rem 1.15rem;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  min-height: unset;
  max-height: 40px;
  align-self: center;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-desktop a {
  padding: 0.5rem 0.85rem;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 8px;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  background: var(--gray-100);
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  box-shadow: var(--shadow);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
}

.nav-mobile a:hover {
  background: var(--gray-100);
}

/* Hero — video banner + animated text */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
}

.hero--video .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero--video .hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  min-height: 560px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}

.hero-banner-logo {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
}

.hero-text-rotator {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  min-height: var(--hero-text-height, 12rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-text-track {
  width: 100%;
}

.hero-text-probe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  visibility: hidden;
  pointer-events: none;
  height: auto;
}

.hero-text-track .hero-eyebrow,
.hero-text-track h1,
.hero-text-track .hero-lead {
  margin-left: auto;
  margin-right: auto;
  opacity: 1;
  transform: none;
}

.hero-text-track h1 {
  margin: 0 0 0.75rem;
  max-width: 100%;
  min-height: 1.2em;
}

#hero-title.is-typing::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.85em;
  margin-left: 4px;
  vertical-align: baseline;
  background: var(--red);
  animation: hero-cursor-blink 0.65s step-end infinite;
}

@keyframes hero-cursor-blink {
  50% {
    opacity: 0;
  }
}

.hero-lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  margin: 0;
  max-width: 540px;
  line-height: 1.65;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.hero-lead.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-text-track.is-typing-ready .hero-eyebrow {
  min-height: 1.5rem;
}

.hero--video .hero-actions {
  justify-content: center;
}

.hero--video .hero-dots {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  margin-bottom: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  #hero-title.is-typing::after {
    display: none;
  }

  .hero-lead {
    opacity: 1;
    transform: none;
  }

  .program-card:hover,
  .subject-card:hover,
  .news-card:hover,
  .life-showcase-card:hover,
  .program-card:hover img,
  .subject-card:hover img,
  .news-card:hover img,
  .life-showcase-card:hover img,
  .gallery-item:hover img {
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 139, 0.22) 0%,
      rgba(0, 0, 102, 0.12) 40%,
      transparent 65%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 70, 0.78) 0%,
      rgba(0, 0, 139, 0.5) 38%,
      transparent 72%
    );
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 2rem) 5vw 4rem;
}

.hero--video .hero-text-track .hero-eyebrow {
  margin: 0 auto 0.75rem;
}

.hero--video .hero-text-track h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.85rem);
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--red);
  border-color: var(--red);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow:hover {
  background: var(--red);
}

.hero-arrow.prev { left: 1.5rem; }
.hero-arrow.next { right: 1.5rem; }

/* Sections */
section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--white);
}

.section-muted {
  background: var(--cream);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.5rem;
}

.section-title p {
  color: var(--gray-600);
  margin: 0;
  max-width: 620px;
  margin-inline: auto;
}

.tagline-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
}

.tagline-bar em {
  color: var(--gold);
  font-style: normal;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--gray-100);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  border-left: 4px solid var(--red);
}

.stat-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--navy);
}

.stat-card span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* Feature hub */
.feature-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid var(--red);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(26, 54, 93, 0.18);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--gray-600);
}

.feature-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

/* Program cards */
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.program-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(48, 64, 192, 0.22);
}

.program-card:not(.program-card--tile) .program-card-body {
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 1.25rem;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 160px;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.program-card:hover img {
  transform: scale(1.08);
}

.program-card-body {
  padding: 1.25rem;
}

.program-grid--tiles {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.program-card--tile {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
}

.program-card--tile img {
  width: 100%;
  min-height: 200px;
  max-height: 220px;
  aspect-ratio: 16 / 10;
  transform-origin: center center;
}

.program-card--tile .program-card-body {
  padding: 1.25rem;
  flex: 1;
}

.life-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.life-showcase-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

.life-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(48, 64, 192, 0.22);
  color: inherit;
}

.life-showcase-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.life-showcase-card:hover img {
  transform: scale(1.08);
}

.life-showcase-card div {
  padding: 1rem 1.15rem 1.15rem;
}

.life-showcase-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.life-showcase-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-body);
}

.page-hero--photo {
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 102, 0.88) 0%,
    rgba(218, 28, 75, 0.75) 100%
  );
}

.page-hero--photo .container {
  position: relative;
  z-index: 1;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(48, 64, 192, 0.22);
}

.news-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-card-body {
  padding: 1.25rem;
}

.news-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.news-card time {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
}

/* Form */
.form-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 70%, var(--red-dark) 100%);
  color: var(--white);
}

.form-section h2 {
  color: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.captcha-row input {
  max-width: 80px;
}

.form-info a {
  color: var(--gold);
}

.form-info a:hover {
  color: var(--white);
}

/* Page hero */
.page-hero {
  margin-top: calc(var(--topbar-h) + var(--header-h));
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-hero p {
  margin: 0;
  opacity: 0.9;
  max-width: 640px;
  margin-inline: auto;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-200);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  box-shadow: 0 8px 24px rgba(48, 64, 192, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Transport routes */
.route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.route-chip {
  background: var(--navy);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--red);
  margin-top: 0;
}

.values-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.values-list li::before {
  content: "✓ ";
  color: var(--red);
  font-weight: 700;
}

.subject-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.subject-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.subject-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(48, 64, 192, 0.22);
}

.subject-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subject-card:hover img {
  transform: scale(1.08);
}

.subject-card > div {
  padding: 1.25rem 1.5rem 1.5rem;
}

.subject-card h3 {
  margin-top: 0;
  color: var(--navy);
  font-size: 1.05rem;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.services-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.services-list li:last-child {
  border-bottom: none;
}

.services-list a {
  font-weight: 600;
  color: var(--navy);
}

.services-list a:hover {
  color: var(--red);
}

/* Downloads */
.download-list {
  display: grid;
  gap: 1rem;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.download-item strong {
  color: var(--navy);
}

/* Map */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-embed iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Breadcrumbs (SEO + UX) */
.breadcrumb {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.85rem;
}

.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0.65rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gray-600);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--gray-600);
  font-weight: 400;
}

.breadcrumb a {
  color: var(--navy);
  font-weight: 600;
}

.breadcrumb [aria-current="page"] {
  color: var(--text-body);
  font-weight: 500;
}

/* Local SEO content block */
.seo-local {
  font-size: 0.95rem;
}

.seo-local h2 {
  font-size: 1.35rem;
  color: var(--navy);
  text-align: center;
}

.seo-local p {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  color: var(--text-body);
}

.faq-page .faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--red);
}

.faq-item h2 {
  font-size: 1.1rem;
  margin: 0 0 0.65rem;
  color: var(--navy);
}

.footer-term-dates {
  padding: 0.85rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.5rem;
}

.footer-term-dates a {
  color: var(--red);
  font-weight: 600;
}

.footer-term-dates a:hover {
  color: var(--white);
}

/* Footer — colors in brand-theme.css */
.site-footer {
  padding: 3rem 0 0;
}

.site-footer .brand-logo {
  height: 48px;
  max-width: 180px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: var(--white);
  margin: 0 0 1rem;
  font-size: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--red);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.5rem;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  background: #25d366;
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: white;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Utilities */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  background: #fef3c7;
  border-left: 4px solid var(--gold);
  margin-bottom: 1.5rem;
}

/* Facebook */
.facebook-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 45%, var(--red) 100%);
  color: var(--white);
}

.facebook-section h2,
.facebook-section p {
  color: var(--white);
}

.facebook-section a:not(.btn) {
  color: var(--gold);
}

.facebook-section a:not(.btn):hover {
  color: var(--white);
}

.facebook-preview {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(6px);
}

.facebook-preview img {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.facebook-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.btn-facebook {
  background: var(--white);
  color: #1877f2;
  border-color: var(--white);
}

.btn-facebook:hover {
  background: var(--gray-100);
  color: #0d5dbf;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1200px) {
  .nav-desktop a {
    padding: 0.45rem 0.4rem;
    font-size: 11px;
  }

  .brand-logo {
    height: 46px;
    max-width: 170px;
  }

  .header-cta-desktop {
    padding: 0.45rem 1rem;
    font-size: 10px;
  }
}

@media (max-width: 992px) {
  .feature-hub { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .life-showcase { grid-template-columns: 1fr; }
  .program-card { grid-template-columns: 1fr; }
  .program-card-body { padding: 1.25rem; }
  .program-card { grid-template-columns: 1fr; }
  .program-card-body { padding: 1.25rem; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-cta-desktop { display: none; }
  .feature-hub { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .hero-arrow { display: none; }
  .hero-content { padding-inline: 6vw; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
