/* =====================
   RESET & BASE
   ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
}

/* =====================
   CSS VARIABLES
   ===================== */
:root {
  --color-green-dark: #006400;
  --color-green-mid: #2d7a4f;
  --color-green-main: #3a9c5f;
  --color-green-light: #4caf72;
  --color-gold: #f5c518;
  --color-gold-light: #f7d045;
  --color-white: #ffffff;
  --color-off-white: #f9f9f6;
  --color-gray-light: #f1f1ee;
  --color-gray-text: #525252;
  --color-dark: #111;

  --top-bar-height: 40px;
  --navbar-height: 72px;
}

/* =====================
   TYPOGRAPHY
   ===================== */

h1 {
  font-size: 4.25rem;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 2.375rem;
  line-height: 1.25;
  margin-bottom: 0.6em;
}

h2.small {
  font-size: 1.5rem;
  line-height: 1.35;
  margin-bottom: 0.55em;
}

h3 {
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 0.6em;
}

h4 {
  font-size: 1.5rem;
  line-height: 1.35;
  margin-bottom: 0.55em;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.45;
  margin-bottom: 0.5em;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

p.large {
  font-size: 1.875rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

p.medium {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

p.small {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

p.xtra-small {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1em;
}

/* ===== Inter Font Class ===== */
.inter-regular {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* ===== Castoro Font Classes ===== */
.castoro-regular {
  font-family: 'Castoro', serif;
  font-weight: 400;
  font-style: normal;
}

.castoro-regular-italic {
  font-family: 'Castoro', serif;
  font-weight: 400;
  font-style: italic;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6em 1.2em;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s,
    color 0.2s;
  border: 2px solid transparent;
}

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

.btn-sm {
  font-size: 0.8rem;
  padding: 0.4em 0.9em;
}
.btn-md {
  font-size: 0.9375rem;
  padding: 0.7em 1.5em;
}
.btn-lg {
  font-size: 1rem;
  padding: 0.85em 1.8em;
}

.btn-primary {
  background: var(--color-green-main);
  color: var(--color-white);
  border-color: var(--color-green-main);
}
.btn-primary:hover {
  background: var(--color-green-light);
  border-color: var(--color-green-light);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.btn-secondary:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
}

/* =====================
   LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  width: 100%;
  padding: 5rem 0;
}

/* ===== Grid System ===== */
.grid {
  display: grid;
  gap: 1.5rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== Flexbox Utilities ===== */
.flex {
  display: flex;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.flex-gap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* =====================
   COMPONENTS
   ===================== */

/* ─────────────────────
   TOP INFO BAR
───────────────────── */
.top-bar {
  background: var(--color-green-dark);
  height: var(--top-bar-height);
  position: relative;
  z-index: 1000;
}

.top-bar .container {
  height: 100%;
}

.top-bar__left {
  gap: 1.5rem;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  transition: color 0.2s;
}
.top-bar__item:hover {
  color: var(--color-gold);
}

.top-bar__item .p,
.top-bar__item span {
  margin-bottom: 0;
  color: inherit;
  font-size: 0.8rem;
}

.top-bar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  /* Makes white SVGs visible on dark background.
     Remove this filter if your SVG already has the right color. */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.top-bar__portal-btn {
  background: var(--color-gold);
  color: var(--color-green-dark);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: none;
  border-color: var(--color-gold);
  gap: 0.375rem;
  padding: 0.3em 0.8rem; /* reduce vertical padding to shrink height */
  border-radius: 4px; /* reduce from default 0.5rem */
}
.top-bar__portal-btn:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-green-dark);
  transform: translateY(-1px);
}
.top-bar__portal-btn .top-bar__icon {
  filter: none; /* portal icon should be dark, not white */
  opacity: 1;
  width: 18px;
  height: 18px;
}

/* ─────────────────────
   MAIN NAVBAR
───────────────────── */
.navbar {
  background: var(--color-white);
  height: var(--navbar-height);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  height: 100%;
}

/* Logo */
.navbar__logo {
  text-decoration: none;
  gap: 0.65rem;
  flex-shrink: 0;
  align-items: center;
}

.navbar__logo-img {
  height: 60px;
  width: auto;
}

.navbar__logo-text {
  justify-content: center; /* vertically centers the two text lines as a group */
  gap: 0.1rem;
}

.navbar__logo-name {
  font-size: 1.375rem;
  color: var(--color-green-dark);
  line-height: 1.1;
  white-space: nowrap;
}

.navbar__logo-tagline {
  font-size: 0.875rem;
  color: var(--color-green-main);
  line-height: 1.1;
}

/* Nav Links */
.navbar__links {
  list-style: none;
  gap: 0.25rem;
  margin-bottom: 0;
}

.navbar__link {
  text-decoration: none;
  color: var(--color-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}
.navbar__link:hover,
.navbar__link--active {
  background: var(--color-gray-light);
  color: var(--color-green-main);
}

.navbar__chevron {
  width: 11px;
  height: 11px;
  opacity: 0.45;
  transition: transform 0.2s;
}
.navbar__item--dropdown:hover .navbar__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.navbar__item--dropdown {
  position: relative;
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-off-white); /* slightly off-white to feel nested */
  border-radius: 0.625rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  min-width: 190px;
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s;
  z-index: 100;
  margin-bottom: 0;
}

.navbar__item--dropdown:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 0.55rem 0.85rem;
  font-size: 0.875rem;
  color: var(--color-dark);
  text-decoration: none;
  border-radius: 0.4rem;
  transition:
    background 0.2s,
    color 0.2s;
}
.navbar__dropdown-link:hover {
  background: var(--color-gray-light);
  color: var(--color-green-main);
}

/* Hamburger (mobile) */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.navbar__hamburger-icon {
  width: 24px;
  height: 24px;
}

.navbar__hamburger-icon--close {
  display: none;
}

/* ─────────────────────
   LATEST UPDATES TICKER
───────────────────── */
.updates-bar {
  background: var(--color-off-white);
  border-bottom: 1px solid #e5e5e0;
  height: 38px;
  overflow: hidden;
}

.updates-bar .container {
  height: 100%;
  align-items: center;
  gap: 1rem;
}

.updates-bar__label {
  gap: 0.45rem;
  flex-shrink: 0;
  white-space: nowrap;
}

.updates-bar__label span {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-green-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0;
}

.updates-bar__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.updates-bar__divider {
  width: 1px;
  height: 18px;
  background: #ccc;
  flex-shrink: 0;
}

.updates-bar__ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.updates-bar__track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.updates-bar__item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(100%);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  white-space: nowrap;
}

.updates-bar__item--active {
  opacity: 1;
  transform: translateY(0);
}

.updates-bar__item--exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* The marquee animation — scrolls the item to the left */
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -50%));
  }
}

.updates-bar__item--scrolling {
  animation: ticker-scroll var(--scroll-duration, 8s) linear 1 forwards;
  animation-delay: 1s; /* small pause before it starts moving */
}

.updates-bar__item span {
  font-size: 0.82rem;
  color: var(--color-gray-text);
  margin-bottom: 0;
  white-space: nowrap;
}

.updates-bar__link {
  color: var(--color-green-main);
  font-weight: 600;
  text-decoration: none;
  margin-left: 0.25rem;
}
.updates-bar__link:hover {
  text-decoration: underline;
}

.updates-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-main);
  flex-shrink: 0;
  display: inline-block;
}

/* ─────────────────────
   HERO SLIDER
───────────────────── */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  padding: 0; /* override .section padding */
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.hero__slide--active {
  opacity: 1;
  z-index: 2;
}
.hero__slide--prev {
  opacity: 0;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero__slide--active .hero__bg {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 30, 15, 0.8) 0%,
    rgba(10, 30, 15, 0.48) 55%,
    rgba(10, 30, 15, 0.18) 100%
  );
}

.hero__slide .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero__content {
  max-width: 640px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease 0.3s,
    transform 0.7s ease 0.3s;
  margin-bottom: 50px; /* pushes content up from vertical center */
}
.hero__slide--active .hero__content {
  opacity: 1;
  transform: translateY(0);
}

.hero__tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

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

.hero__subtitle {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2rem;
  max-width: 480px;
  font-size: 1.05rem;
}

.hero__ctas {
  gap: 0.9rem;
}

/* Override btn-secondary specifically inside hero for white border style */
.hero__btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.hero__btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Arrows */
.hero__arrow {
  position: absolute;
  bottom: 52px; /* move to bottom */
  top: auto; /* remove top positioning */
  transform: none;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  backdrop-filter: blur(4px);
}

.hero__arrow:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--color-white);
}
.hero__arrow img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* makes dark SVGs white */
}

.hero__arrow--prev {
  left: calc(50% - 80px);
}

.hero__arrow--next {
  right: calc(50% - 80px);
}

/* Hero Dots */
.hero__dots {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  border: none;
  padding: 0;
}
.hero__dot--active {
  background: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* Hero Progress Bar */
.hero__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-gold);
  z-index: 10;
  width: 0%;
}

/* ─────────────────────
   ADMISSIONS BANNER
───────────────────── */
.admission-banner {
  background: var(--color-white);
  padding: 40px 0; /* 40px top and bottom margin as per Figma */
}

.admission-banner__inner {
  background: var(--color-green-dark);
  border-radius: 12px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  min-height: 160px;
}

/* Left image column */
.admission-banner__image {
  flex-shrink: 0;
  width: 260px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  background: var(--color-green-dark);
  border-radius: 12px 0 0 12px; /* rounds only the LEFT corners */
}

.admission-banner__img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Right content column */
.admission-banner__content {
  flex: 1;
  padding: 2.5rem 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertically centers all content */
}

.admission-banner__title {
  font-size: 2.375rem; /* h2 — 38px as per Figma */
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.6em;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.admission-banner__text {
  font-size: 1.25rem; /* p — 20px as per Figma */
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  max-width: 560px;
}

/* Buttons */
.admission-banner__ctas {
  gap: 1rem;
}

.admission-banner__btn-primary {
  background: var(--color-gold);
  color: var(--color-green-dark);
  border: 2px solid var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6em 1.4em;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    background 0.2s,
    transform 0.15s;
}
.admission-banner__btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.admission-banner__btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6em 1.4em;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.admission-banner__btn-outline:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.admission-banner__btn-icon {
  width: 14px;
  height: 14px;
  filter: none;
}

.admission-banner__btn-primary .admission-banner__btn-icon {
  filter: none;
}

/* ─────────────────────
   WHY CHOOSE SECTION
───────────────────── */
.why-choose {
  background: #fdfbef;
  padding: 80px 0;
}

.why-choose__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.why-choose__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem; /* h2 — 38px */
  font-weight: 700;
  color: var(--color-green-dark);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.why-choose__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* p — 20px */
  font-weight: 400;
  color: var(--color-gray-text);
  margin-bottom: 0;
}

/* Grid */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.why-choose__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

/* Icon */
.why-choose__icon {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose__icon-img {
  height: 126px; /* 126px as per Figma */
  width: auto;
}

/* Card Title */
.why-choose__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* h4 — 24px */
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.75rem;
}

/* Card Text */
.why-choose__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* p.small — 18px */
  font-weight: 400;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 300px;
}

/* ─────────────────────
   OUR PROGRAMS SECTION
───────────────────── */
.programs {
  background: var(--color-white);
  padding: 80px 0;
}

/* Header */
.programs__header {
  text-align: center;
  margin-bottom: 4rem;
}

.programs__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* h2.small — 24px */
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.programs__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem; /* h2 — 38px */
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
}

/* Grid — 2 columns */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 120px; /* 120px between rows as per Figma */
  column-gap: 4rem; /* horizontal gap between the two columns */
}

/* Card */
.programs__card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

/* Icon */
.programs__icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 0.3rem;
}

.programs__icon-img {
  height: 140px; /* 140px as per Figma */
  width: auto;
}

/* Card Content */
.programs__card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0rem;
}

.programs__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* h4 — 24px */
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.programs__card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* p — 20px */
  font-weight: 450;
  color: var(--color-gray-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─────────────────────
   DIRECTOR'S MESSAGE
───────────────────── */
.director {
  background: #fdfbef;
  padding: 80px 0;
}

.director__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}

/* Left Content */
.director__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.director__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* h2.small — 24px */
  font-weight: 500;
  color: #525252;
  margin-bottom: 0;
  line-height: 1.35;
}

.director__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem; /* h2 — 38px */
  font-weight: 700;
  color: #333333;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.director__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* p — 20px */
  font-weight: 450;
  color: #525252;
  line-height: 1.7;
  margin-bottom: 0;
}

.director__signature {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
}

.director__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* p — 20px */
  font-weight: 500;
  color: #111827;
  margin-bottom: 0;
}

.director__role {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* p.xtra-small — 16px */
  font-weight: 400;
  color: #8a8a8a;
  margin-bottom: 0;
}

/* Right Images */
.director__images {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end; /* aligns both columns to the bottom */
  flex-shrink: 0;
}

/* Main director image */
.director__img-main {
  width: 268px;
  height: 481px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Right stacked column */
.director__img-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem; /* this gap between the two right images matches the column gap */
  flex-shrink: 0;
  justify-content: flex-end; /* pushes stack to the bottom */
}

/* Teacher image */
.director__img-teacher {
  width: 268px;
  height: 246px;
  border-radius: 8px;
  overflow: hidden;
}

/* Classroom image */
.director__img-classroom {
  width: 268px;
  height: 223px;
  border-radius: 8px;
  overflow: hidden;
}

/* All images fill their containers */
.director__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─────────────────────
   TESTIMONIALS
───────────────────── */
.testimonials {
  background: var(--color-white);
  padding: 80px 0;
}

/* Header */
.testimonials__header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.testimonials__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
}

/* Slider */
.testimonials__slider {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
}

.testimonials__track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonials__slide {
  min-width: 100%;
}

/* Card */
.testimonials__card {
  display: flex;
  width: 100%;
  height: 538px;
  background: rgba(253, 251, 239, 0.04);
  border-radius: 16px;
  overflow: hidden;
}

/* Image */
.testimonials__img-wrap {
  width: 390px;
  height: 538px;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonials__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

/* Content */
.testimonials__content {
  flex: 1;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

/* Quote Icon */
.testimonials__quote-icon {
  display: flex;
  align-items: center;
}

.testimonials__quote-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Quote Text */
.testimonials__text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* p — 24px */
  font-weight: 400;
  color: #404040;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 698px;
}

/* Author */
.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonials__author-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.875rem; /* p.large — 30px */
  font-weight: 500;
  color: #111827;
  margin-bottom: 0;
}

.testimonials__author-role {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* p.xtra-small — 16px */
  font-weight: 400;
  color: #8a8a8a;
  margin-bottom: 0;
}

/* Controls */
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gray-text);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.testimonials__arrow:hover {
  border-color: var(--color-green-main);
  background: var(--color-green-main);
}

.testimonials__arrow-icon {
  width: 16px;
  height: 16px;
}

.testimonials__arrow:hover .testimonials__arrow-icon {
  filter: brightness(0) invert(1); /* turns arrow icon white on hover */
}

/* Dots */
.testimonials__dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}

.testimonials__dot--active {
  background: var(--color-green-main);
  width: 24px;
  border-radius: 4px;
}

/* ─────────────────────
   MEET OUR TEACHERS
───────────────────── */
.teachers {
  background: #fdfbef;
  padding: 80px 0;
  width: 100%;
  overflow: hidden; /* nothing escapes the section */
}

/* Header */
.teachers__header {
  text-align: center;
  margin-bottom: 3rem;
}

.teachers__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.teachers__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Grid */
.teachers__grid {
  display: grid;
  grid-template-columns: repeat(4, 280px);
  column-gap: 32px;
  row-gap: 72px;
  justify-content: center; /* centers the fixed-width grid inside container */
  margin-bottom: 3rem;
}

/* Card */
.teachers__card {
  width: 280px;
  display: flex;
  flex-direction: column;
}

/* Image frame — strictly 280x280 */
.teachers__img-wrap {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #d9d9d9;
  flex-shrink: 0;
}

/* Hover effect */
.teachers__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 100, 0, 0.15);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.teachers__img-wrap {
  position: relative;
}

.teachers__img-wrap:hover::after {
  opacity: 1;
}

.teachers__img-wrap:hover .teachers__img {
  transform: scale(1.05);
}

/* Image */
.teachers__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

/* Name */
.teachers__name {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #111827;
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

/* Role */
.teachers__role {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #8a8a8a;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Footer */
.teachers__footer {
  display: flex;
  justify-content: center;
}

.teachers__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border: 1.5px solid #111;
  padding: 0.6em 1.6em;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.teachers__read-more:hover {
  background: var(--color-green-main);
  color: var(--color-white);
  border-color: var(--color-green-main);
}

.teachers__read-more-icon {
  width: 14px;
  height: 14px;
}

.teachers__read-more:hover .teachers__read-more-icon {
  filter: brightness(0) invert(1); /* turns icon white on hover */
}

/* ─────────────────────
   UPCOMING EVENTS
───────────────────── */
.events {
  background: var(--color-white);
  padding: 80px 0;
}

/* Header */
.events__header {
  text-align: center;
  margin-bottom: 3rem;
}

.events__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.events__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Main Frame */
.events__frame {
  display: flex;
  width: 100%;
  height: 468px;
  border-radius: 12px;
  overflow: hidden;
}

/* Left List Wrap — 758px */
.events__list-wrap {
  width: 758px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

/* Each Event Row */
.events__row {
  display: flex;
  flex: 1;
}

/* Date Box */
.events__date-box {
  width: 208px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--color-white);
}

.events__date-box--1 {
  background: #3daf3d;
  border-radius: 12px 0 0 0; /* top-left only */
}

.events__date-box--2 {
  background: #41bf41;
  border-radius: 0;
}

.events__date-box--3 {
  background: #3daf3d;
  border-radius: 0 0 0 12px; /* bottom-left only */
}

.events__day {
  font-family: 'Inter', sans-serif;
  font-size: 4rem; /* 64px */
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.events__month {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.3;
}

/* Info Panel */
.events__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
  gap: 0.6rem;
}

.events__info--1 {
  background: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.events__info--2 {
  background: #fdfdfd;
  border-bottom: 1px solid #eeeeee;
}

.events__info--3 {
  background: #f9f9f9;
}

/* Meta row */
.events__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.events__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #525252;
  line-height: 1.4;
}

.events__meta-icon {
  height: 14px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.6;
}

/* Event Title */
.events__event-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Right Image — 522px */
.events__img-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 0 12px 12px 0; /* top-right + bottom-right only */
}

.events__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ─────────────────────
   LATEST NEWS
───────────────────── */
.news {
  background: #fdfbef;
  padding: 80px 0;
}

/* Header */
.news__header {
  text-align: center;
  margin-bottom: 3rem;
}

.news__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.news__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Grid — 3 cards, each 384px, gaps calculated to fit 1280px container */
/* 3 × 384px = 1152px | remaining = 128px | gap = 128 / 2 = 64px each */
.news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 3rem;
  width: 100%;
}

/* Card */
.news__card {
  width: 100%;
  background: #fdfdfd;
  border: 1px solid #e5e5e0;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.news__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Image wrap */
.news__img-wrap {
  width: 100%;
  height: 226px;
  overflow: hidden;
  flex-shrink: 0;
}

.news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.news__card:hover .news__img {
  transform: scale(1.06); /* zoom on card hover */
}

/* Card Body */
.news__card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

/* Meta date — overrides existing card-meta */
.meta-data {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.4;
  display: block;
}

/* Card Title */
.news__card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* h5 — 18px */
  font-weight: 700;
  color: #333333;
  line-height: 1.4;
  margin-bottom: 0;
}

/* Card Text — overrides existing card-text */
.card-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

/* Read More */
.news__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #006400;
  text-decoration: none;
  margin-top: auto;
  transition: color 0.2s;
}

.news__read-more-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.news__read-more:hover {
  color: var(--color-green-main); /* lighter green on hover */
}

.news__read-more:hover .news__read-more-icon {
  transform: translateX(5px); /* arrow moves forward */
  filter: brightness(0) saturate(100%) invert(52%) sepia(43%) saturate(452%)
    hue-rotate(106deg) brightness(95%);
}

/* Footer — View All */
.news__footer {
  display: flex;
  justify-content: center;
}

.news__view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  border: 1.5px solid #111;
  padding: 0.6em 1.6em;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.news__view-all:hover {
  background: var(--color-green-main);
  color: var(--color-white);
  border-color: var(--color-green-main);
}

.news__view-all:hover .news__view-all-icon {
  filter: brightness(0) invert(1);
}

.news__view-all-icon {
  width: 14px;
  height: 14px;
}

/* ─────────────────────
   SCHOOL GALLERY
───────────────────── */
.gallery {
  background: var(--color-white);
  padding: 80px 0;
}

/* Header */
.gallery__header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.gallery__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Grid
   3 × 410px = 1230px | remaining = 50px | gap = 50 / 2 = 25px each */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  width: 100%;
}

/* Item */
.gallery__item {
  position: relative;
  width: 100%;
  height: 308px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

/* Image */
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.05);
}

/* Overlay */
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 150, 105, 0.25); /* #059669 at 25% */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 12px;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* Overlay Text */
.gallery__overlay-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  padding: 0 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.gallery__item:hover .gallery__overlay-text {
  transform: translateY(0);
}

/* ─────────────────────
   CONTACT US
───────────────────── */
.contact {
  background: #fdfbef;
  padding: 80px 0;
}

/* Header */
.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__label {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #006400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.contact__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Inner — centers the 1111px block inside 1280px */
.contact__inner {
  display: flex;
  gap: 24px;
  align-items: stretch;
  width: 1111px;
  margin: 0 auto;
}

/* Left Image */
.contact__img-wrap {
  width: 327px;
  height: 584px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Natural green overlay on image */
.contact__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 150, 105, 0.08); /* #059669 at 8% */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 2rem;
  border-radius: 12px;
}

.contact__img-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Right Form */
.contact__form-wrap {
  width: 760px;
  height: 584px;
  background: #f3f4f6;
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Form Row — two inputs side by side */
.contact__form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* Form Group */
.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__form-group--full {
  grid-column: 1 / -1;
}

/* Label */
.contact__label-field {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: #374151;
  line-height: 1.4;
}

/* Input */
.contact__input {
  width: 100%;
  height: 46px;
  padding: 0 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 500;
  color: #374151;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.contact__input::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact__input:focus {
  border-color: var(--color-green-main);
}

/* Select */
.contact__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='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  color: #9ca3af; /* placeholder color by default */
}

.contact__select:valid,
.contact__select.selected {
  color: #374151;
}

/* Textarea */
.contact__textarea {
  width: 100%;
  height: 150px;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  background: var(--color-white);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  resize: none;
  transition: border-color 0.2s;
  line-height: 1.6;
}

.contact__textarea::placeholder {
  color: #9ca3af;
  font-weight: 400;
}

.contact__textarea:focus {
  border-color: var(--color-green-main);
}

/* Submit Button */
.contact__submit {
  width: auto;
  height: 48px;
  padding: 0 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: var(--color-white);
  background: #3daf3d;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  align-self: flex-start;
}

.contact__submit:hover {
  background: var(--color-green-main);
  transform: translateY(-2px);
}

/* Contact Form Validation States */
.contact__input--error {
  border-color: #ef4444;
  background: #fff5f5;
}

.contact__input--valid {
  border-color: var(--color-green-main);
}

.contact__error {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: #ef4444;
  margin-top: 0.2rem;
  display: block;
}

.contact__general-error {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #ef4444;
  text-align: center;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* Success State */
.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  height: 100%;
}

.contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-green-main);
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__success-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0;
}

.contact__success-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 400px;
}

.contact__success-countdown {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #8a8a8a;
  margin-bottom: 0;
}

/* ─────────────────────
   FOOTER
───────────────────── */

/* Upper Footer */
.footer__upper {
  background: #006400;
  padding: 80px 0;
}

/* Grid — 3 columns */
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

/* ── Column 1: Brand ── */
.footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Logo */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1); /* white logo */
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer__logo-name {
  font-size: 1.375rem;
  color: var(--color-white);
  line-height: 1.2;
  white-space: nowrap;
}

.footer__logo-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.1;
}

/* Contact Info */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer__info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer__info-link {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 20px */
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
}

.footer__info-link:hover {
  color: var(--color-gold);
}

/* Social Icons */
.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.2s;
}

.footer__social-icon {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition:
    filter 0.2s,
    opacity 0.2s;
}

.footer__social-link:hover .footer__social-icon {
  filter: brightness(0) saturate(100%) invert(83%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(105%);
  opacity: 1;
}

/* ── Column 2: Quick Links ── */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__col-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem; /* 24px */
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.footer__col-title--hours {
  margin-top: 1.5rem;
}

/* Links columns side by side */
.footer__col:nth-child(2) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
  align-items: start;
}

.footer__col:nth-child(2) .footer__col-title {
  grid-column: 1 / -1;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 0;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 20px */
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-gold);
}

.footer__link-arrow {
  height: 8.91px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
  transition: filter 0.2s;
}

.footer__link:hover .footer__link-arrow {
  filter: brightness(0) saturate(100%) invert(83%) sepia(60%) saturate(600%)
    hue-rotate(5deg) brightness(105%);
}

/* ── Column 3: Campus + Hours ── */
.footer__campus-list,
.footer__hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0;
}

.footer__campus-text,
.footer__hours-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem; /* 20px */
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
}

/* ── Lower Footer ── */
.footer__lower {
  background: #fdfbef;
  padding: 1.25rem 0;
}

.footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem; /* 20px */
  font-weight: 400;
  color: #666666;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.5;
}

.footer__copyright-link {
  color: #1a56db;
  text-decoration: underline;
  transition: color 0.2s;
}

.footer__copyright-link:hover {
  color: #1e40af;
}
