/* ===========================
   ICOMOON FONT
   =========================== */
@font-face {
  font-family: 'icomoon';
  src: url('/fonts/icomoon.woff2') format('woff2'),
       url('/fonts/icomoon.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="im-"], [class*=" im-"] {
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.im-linkedin:before  { content: "\e90c"; }
.im-facebook:before  { content: "\e90b"; }
.im-twitter:before   { content: "\e913"; }

/* ===========================
   BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #303a41;
  background: #fff;
}

ul, ol { list-style: none; padding: 0; margin: 0; }
a { background-color: transparent; text-decoration: none; }
body, h1, h2, h3, h4, h5, h6, p, blockquote, ul, ol, figure { margin: 0; }
picture, img { display: block; max-width: 100%; }

/* ===========================
   LAYOUT
   =========================== */
:root {
  --header-height: 94px;
  --header-height-scrolled: 60px;
  --teal:      #0197a0;
  --teal-dark: #016c7a;
  --teal-light:#8ed8dd;
  --teal-bg:   #e2fcff;
  --text:      #303a41;
  --text-muted: rgba(48, 58, 65, 0.75);
  --footer-bg: #171f25;
}

.page-content {
  padding-top: var(--header-height);
}

[class*="__container"],
.container-main {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===========================
   HEADER / NAVBAR
   =========================== */
.site-header {
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: height .2s;
}

.site-header__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.site-header__logo {
  width: 232px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

@media (max-width: 480px) {
  .site-header__logo { width: 180px; }
}

.site-header__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav__list {
  display: flex;
  gap: 30px;
}

.site-nav__link {
  font-size: 16px;
  color: #303a41;
  padding: 8px 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: color .2s, background .2s;
}

.site-nav__link:hover { color: #fff; background: var(--teal-dark); font-weight: 700; box-shadow: 0 2px 8px rgba(1,108,122,0.35); }

/* Hamburger button */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}

/* Three-line hamburger icon drawn in pure CSS */
.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #303a41;
  border-radius: 2px;
  position: relative;
  transition: background .2s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: #303a41;
  border-radius: 2px;
  position: absolute;
  left: 0;
  transition: transform .2s;
}

.navbar-toggler-icon::before { top: -7px; }
.navbar-toggler-icon::after  { top:  7px; }

@media (max-width: 992px) {
  .navbar-toggler { display: flex; }

  .site-nav__list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: #0095a9;
    padding: 25px;
    z-index: 998;
  }
  .site-nav__list.open { display: flex; }
  .site-nav__link { color: #fff; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  padding: 12px 24px;
  transition: .2s;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

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

.btn-primary-teal:hover {
  color: var(--teal-dark);
  background: var(--teal-light);
}

.btn-secondary-teal {
  color: var(--teal-dark);
  background: #fff;
}

.btn-secondary-teal:hover {
  color: #303a41;
  background: var(--teal-light);
}

.more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: .03em;
  transition: .2s;
  font-family: "Poppins", sans-serif;
}

.more-btn::after {
  content: "→";
  font-size: 15px;
}

.more-btn:hover { color: #303a41; }

/* ===========================
   HERO / INTRO
   =========================== */
.intro {
  color: #fff;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.intro-overlay {
  background: linear-gradient(0deg, rgba(0,104,118,0.75), rgba(0,104,118,0.75)),
              url('../images/hero-bg.jpg') center center no-repeat;
  background-size: cover;
}

.intro__content {
  height: 100%;
  padding: 98px 0 117px;
}

.intro__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro__title,
.intro__descr {
  max-width: 905px;
}

.intro__title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (max-width: 562px) {
  .intro__title { font-size: 36px; }
}

.intro__descr {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  line-height: 1.4;
  letter-spacing: .015em;
  margin-bottom: 48px;
}

/* ===========================
   NARROW-SLIDER (On the Rise)
   =========================== */
.narrow-slider {
  background-color: var(--teal-bg);
  padding: 0 85px;
}

@media (max-width: 768px) {
  .narrow-slider { padding: 0; }
  .narrow-slider-wrapper { padding: 0 15px; }
}

.narrow-slider-wrapper {
  position: relative;
  max-width: 1230px;
  margin: 0 auto;
}

.narrow-slider__slide {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding: 55px 0;
}

.narrow-slider__title {
  font-weight: 600;
  font-size: 42px;
  line-height: 1.25;
  color: #303a41;
  margin: 8px 0;
  letter-spacing: .01em;
}

@media (max-width: 768px) {
  .narrow-slider__title { font-size: 32px; }
}

.narrow-slider__descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.narrow-slider__descr p {
  margin-bottom: 1rem;
}

/* ===========================
   ABOUT (Who We Are + PAD)
   =========================== */
.about {
  padding: 138px 0 120px;
}

@media (max-width: 768px) {
  .about { padding: 40px 0 !important; }
}

.about__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.about__body {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}

@media (max-width: 992px) {
  .about__body {
    flex-direction: column-reverse !important;
    align-items: center;
  }
}

.about__body + .about__body {
  margin-top: 80px;
}

.about__body:nth-child(odd) {
  flex-direction: row;
}

.about__body:nth-child(odd) .about__content {
  padding-right: 48px;
  padding-left: 0;
}

.about__content {
  flex: 1;
  padding-left: 48px;
}

.about__content .more-btn {
  margin-top: 40px;
}

@media (max-width: 992px) {
  .about__content {
    text-align: center;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-top: 30px;
  }
}

.about__content-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .01em;
  margin-bottom: 8px;
  color: #303a41;
}

@media (max-width: 768px) {
  .about__content-title { font-size: 32px; }
}

.about__text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.5;
  letter-spacing: .02em;
}

.about__text p {
  margin: 20px 0;
}

.about__image {
  flex: 0 0 523px;
  display: flex;
  align-items: flex-start;
}

.about__image img {
  width: 100%;
  height: 100%;
  border-radius: 0px 120px;
  overflow: hidden;
  max-height: 350px;
  object-fit: cover;
}

@media (max-width: 992px) {
  .about__image {
    flex-basis: auto;
    max-width: 523px;
    width: 100%;
  }
}

/* ===========================
   REVIEWS / TESTIMONIALS SLIDESHOW
   =========================== */
.reviews {
  background: var(--teal-bg);
  padding: 80px 0 80px;
}

.reviews__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.reviews__slider {
  position: relative;
  padding: 0 76px;
}

@media (max-width: 600px) {
  .reviews__slider { padding: 0 52px; }
}

.reviews__arrow {
  position: absolute;
  z-index: 50;
  top: 50%;
  appearance: none;
  box-shadow: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  aspect-ratio: 1;
  color: #fff;
  background: rgba(1, 108, 122, .5);
  border-radius: 50%;
  margin-top: -44px;
  user-select: none;
  cursor: pointer;
  transition: .2s;
  font-size: 38px;
  line-height: 1;
  padding-bottom: 2px;
}

.reviews__arrow:hover { background: rgba(1, 108, 122, .85); }
.reviews__arrow--prev { left: 0; }
.reviews__arrow--next { right: 0; }

.review {
  display: none;
  align-items: flex-start;
  gap: 40px;
  padding: 52px 40px;
  background: #fff;
  border-radius: 12px;
}

.review.is-active {
  display: flex;
  animation: reviewFadeIn 0.4s ease forwards;
}

.review.is-leaving {
  display: flex;
  animation: reviewFadeOut 0.3s ease forwards;
}

@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes reviewFadeOut {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(-24px); }
}

@media (max-width: 992px) {
  .review { flex-direction: column; align-items: center; padding: 30px 20px; }
}

.review__photo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  font-size: 36px;
  color: #fff;
  background: #aadae0;
  border-radius: 50%;
  overflow: hidden;
}

.review__content {
  display: flex;
  flex-direction: column;
}

.review__author {
  font-size: 22px;
  font-weight: 600;
  color: #4f4f4f;
  line-height: 1.4;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.review__text {
  font-size: 18px;
  color: var(--text-muted);
  letter-spacing: .02em;
  line-height: 1.6;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.reviews__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.reviews__dot.is-active,
.reviews__dot:hover {
  background: #fff;
}

/* ===========================
   TITLE (generic)
   =========================== */
.title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .02em;
  color: #303a41;
}

@media (max-width: 768px) {
  .title { font-size: 30px; }
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--footer-bg);
  padding: 80px 64px;
}

@media (max-width: 768px) {
  .site-footer { padding: 40px 20px; }
}

.site-footer__top {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 35px 40px;
  margin-bottom: 80px;
}

@media (max-width: 992px) {
  .site-footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
  }
}

.site-footer__logo img {
  height: 48px;
  width: auto;
}

.site-footer__nav {
  display: flex;
  gap: 20px 50px;
}

@media (max-width: 562px) {
  .site-footer__nav { flex-direction: column; text-align: center; }
}

.site-footer__nav-col h6 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.site-footer__nav-link {
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: .02em;
  transition: color .2s;
}

.site-footer__nav-link:hover { color: #60f5ff; }

.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 250px;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
}

.site-footer__contact a {
  color: inherit;
}

.site-footer__contact a:hover { text-decoration: underline; }

.site-footer__bottom {
  max-width: 1230px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 10px;
  }
}

.site-footer__bottom a {
  color: inherit;
  transition: color .2s;
}

.site-footer__bottom a:hover { color: #60f5ff; }

/* ===========================
   MAP SECTION
   =========================== */
.map {
  padding: 80px 0 120px;
}

.map__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.map__title {
  margin-bottom: 72px;
}

@media (max-width: 768px) {
  .map__title { text-align: center; margin-bottom: 40px; }
}

.map__content {
  width: 100%;
  aspect-ratio: 2.3 / 1;
  max-height: 520px;
  position: relative;
}

@media (max-width: 600px) {
  .map__content { aspect-ratio: 1.6 / 1; max-height: none; }
}

.map__content-inner {
  position: absolute;
  inset: 0;
}

.map__main {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
}

.map__add {
  position: absolute;
  z-index: 995;
  bottom: 0;
  border: 2px solid #ccc;
  border-radius: 4px;
  background: #fff;
}

.map__add:nth-child(2) {
  left: 0;
  width: 150px;
  height: 120px;
}

.map__add:nth-child(3) {
  left: 160px;
  width: 130px;
  height: 90px;
}

@media (max-width: 600px) {
  .map__add:nth-child(2) { width: 90px; height: 72px; }
  .map__add:nth-child(3) { left: 100px; width: 85px; height: 60px; }
}

/* Transparent map background — GeoJSON only, no tiles */
#map-main.leaflet-container,
#map-alaska.leaflet-container,
#map-hawaii.leaflet-container {
  background: transparent !important;
}

/* Leaflet popup styling to match brand */
.leaflet-popup-content-wrapper {
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #303a41;
  max-width: 300px;
}

.leaflet-popup-content {
  margin: 12px 16px;
  line-height: 1.5;
}

.map-popup-title {
  font-size: 15px;
  font-weight: 700;
  color: #016c7a;
  margin-bottom: 8px;
  border-bottom: 1px solid #e2fcff;
  padding-bottom: 6px;
}

.map-popup-program {
  padding: 4px 0;
  font-size: 13px;
}

.map-popup-program .badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  margin-right: 5px;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.badge-adult { background: #d8fdff; color: #016c7a; }
.badge-juvenile { background: #fff3cd; color: #856404; }
.badge-other { background: #f0e6ff; color: #6b21a8; }

.map-popup-program a {
  color: #0197a0;
  text-decoration: none;
  font-weight: 500;
}

.map-popup-program a:hover { text-decoration: underline; }

/* ===========================
   HOME RESOURCES BAND
   =========================== */
.home-resources {
  padding: 160px 0;
}

.home-resources__inner {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-resources__title {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: .03em;
}

.home-resources__text {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home-resources { padding: 80px 0; }
  .home-resources__title { font-size: 30px; }
  .home-resources__text { font-size: 17px; }
}

@media (max-width: 480px) {
  .home-resources { padding: 50px 0; }
  .home-resources__title { font-size: 24px; }
  .home-resources__text { font-size: 15px; }
}

/* ===========================
   INNER PAGE BANNER (About / Contact heroes)
   =========================== */
.innerPageBanner {
  padding: 66px 0;
  font: 400 20px/31px "Poppins", sans-serif;
  color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.innerPageBanner__container {
  max-width: 1028px;
  margin: 0 auto;
  padding: 0 15px;
}

.innerPageBanner__inner {
  overflow: hidden;
  width: 100%;
  padding: 0 135px;
}

.innerPageBanner h1 {
  font: 700 56px/130% "Poppins", sans-serif;
  display: block;
  margin: 0 0 8px 0;
  color: #000;
}

@media (max-width: 1200px) {
  .innerPageBanner { padding: 40px 0; }
  .innerPageBanner__inner { padding: 0; }
}

@media (max-width: 768px) {
  .innerPageBanner { font: 400 18px/28px "Poppins", sans-serif; }
  .innerPageBanner h1 { font: 700 36px/100% "Poppins", sans-serif; margin-bottom: 16px; }
}

/* Utility */
.blue--back { background: #e2fcff; }
.border--radius { border-radius: 0px 130px 0px 0px; }
@media (max-width: 768px) { .border--radius { border-radius: 0px 80px 0px 0px; } }

/* ===========================
   OUR TEAM SECTION
   =========================== */
.ourTeam {
  padding: 80px 0;
}

.ourTeam__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.ourTeam h3 {
  display: block;
  margin: 0 0 40px;
  font: 700 40px/1.3 "Poppins", sans-serif;
  letter-spacing: .02em;
  color: #303a41;
}

.ourTeam__wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -17px;
}

.ourTeam__item {
  width: 33.33%;
  padding: 0 17px;
}

.ourTeam__item__image {
  overflow: hidden;
  height: 360px;
  margin-bottom: 16px;
  cursor: pointer;
  border-radius: 0px 130px 0px 0px;
}

.ourTeam__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.ourTeam__item__image:hover img { transform: scale(1.04); }

.ourTeam__item > span {
  display: block;
  font: 600 24px/31px "Poppins", sans-serif;
  color: #303a41;
  margin-bottom: 8px;
}

.ourTeam__item > .more-btn { margin-top: 4px; }

@media (max-width: 1200px) { .ourTeam { padding: 40px 0; } .ourTeam__item__image { height: 300px; } }
@media (max-width: 992px) { .ourTeam__item { width: 50%; margin-bottom: 40px; } }
@media (max-width: 562px) { .ourTeam__item { width: 100%; } .ourTeam__item__image { height: 250px; } }

/* Team popup modal */
.team-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.team-popup-overlay.active { display: flex; }

.team-popup {
  background: #fff;
  border-radius: 12px;
  max-width: 900px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.team-popup__close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 24px; cursor: pointer; color: #303a41;
  z-index: 10;
  line-height: 1;
}

.team-popup__image {
  width: 380px;
  flex: 0 0 380px;
  height: 460px;
}

.team-popup__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
}

.team-popup__text {
  flex: 1;
  padding: 40px 48px 40px 40px;
  font: 400 18px/31px "Poppins", sans-serif;
  letter-spacing: .02em;
  color: rgba(48,58,65,.75);
  overflow-y: auto;
}

.team-popup__text h3 {
  display: block;
  font: 600 36px/1.3 "Poppins", sans-serif;
  margin-bottom: 24px;
  color: #303a41;
}

.team-popup__text p { display: block; margin-bottom: 20px; }

@media (max-width: 768px) {
  .team-popup { flex-direction: column; }
  .team-popup__image { width: 100%; flex-basis: auto; height: 280px; border-radius: 12px 12px 0 0; }
  .team-popup__image img { border-radius: 12px 12px 0 0; }
  .team-popup__text { padding: 24px; }
}

/* ===========================
   PARTNERSHIP SECTION
   =========================== */
.partnerShip {
  padding: 100px 0;
  letter-spacing: .02em;
  font: 400 20px/150% "Poppins", sans-serif;
  color: rgba(48,58,65,.75);
}

.partnerShip__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.partnerShip__inner { max-width: 900px; }

.partnerShip h3 {
  font: 600 48px/1.3 "Poppins", sans-serif;
  display: block;
  margin: 0 0 16px;
  color: #303a41;
}

.partnerShip p { display: block; margin-bottom: 24px; }

.partnerShip ul { margin-bottom: 24px; }

.partnerShip ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.partnerShip ul li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 100%;
  left: 0; top: 10px;
  position: absolute;
  background: rgba(48,58,65,.75);
}

.partnerShip__logo { margin-top: 48px; }

.partnerShip__logo img { max-width: 220px; height: auto; }

@media (max-width: 1200px) {
  .partnerShip { padding: 60px 0; font: 400 18px/140% "Poppins", sans-serif; }
  .partnerShip h3 { font: 600 32px/1.3 "Poppins", sans-serif; }
}

@media (max-width: 768px) {
  .partnerShip { padding: 40px 0; }
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.contact__overlay {
  height: 100%;
  padding: 96px 0;
}

@media (max-width: 768px) { .contact__overlay { padding: 40px 0; } }

.contact__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact__title {
  font: 700 40px/1.3 "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 40px;
  max-width: 860px;
  letter-spacing: .02em;
}

@media (max-width: 768px) {
  .contact__title { font-size: 28px; text-align: center; margin-bottom: 30px; }
}

.contact__content {
  display: flex;
  background: rgba(255,255,255,.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 180px 0;
}

@media (max-width: 992px) { .contact__content { flex-direction: column; border-radius: 40px 0; } }

.contact__form {
  max-width: 795px;
  flex: 1;
  background: rgba(255,255,255,.35);
  backdrop-filter: inherit;
  -webkit-backdrop-filter: inherit;
  border-radius: inherit;
  padding: 80px;
}

@media (max-width: 992px) { .contact__form { max-width: 100%; } }
@media (max-width: 562px) { .contact__form { padding: 40px 25px; } }

.contact__form-item {
  margin-bottom: 32px;
}

.contact__form-item:last-child { margin-bottom: 0; }

.contact__form-item label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 6px;
  color: #303a41;
}

.contact__form-item input,
.contact__form-item textarea,
.contact__form-item select {
  width: 100%;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
  padding: .6rem .9rem;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  background: rgba(255,255,255,.7);
  color: #303a41;
}

.contact__form-item input:focus,
.contact__form-item textarea:focus,
.contact__form-item select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,151,160,.15);
}

.contact__form-item textarea { min-height: 120px; resize: vertical; }

.contact__form-item.has-columns {
  display: flex;
  gap: 32px 24px;
}

@media (max-width: 768px) { .contact__form-item.has-columns { flex-direction: column; gap: 0; } }

.contact__form-col { flex: 1; }

.btn-submit-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1c1c1c;
  color: #fff;
  font: 500 16px/1.5 "Poppins", sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  cursor: pointer;
  transition: .2s;
  margin-top: 8px;
}

.btn-submit-cta:hover { background: var(--teal); color: #fff; }

.contact__list {
  padding: 80px;
  flex-shrink: 0;
}

@media (max-width: 562px) { .contact__list { padding: 40px 25px; } }

.contact__item { margin-bottom: 48px; max-width: 229px; }
.contact__item:last-child { margin-bottom: 0; }

.contact__item-title {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
  margin-bottom: 6px;
}

.contact__item-link,
.contact__item-address {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  line-height: 1.6;
  text-decoration: none;
}

.contact__item-link:hover { text-decoration: underline; }

/* ===========================
   NEWSLETTER BAR
   =========================== */
.promo-section {
  background: #bdfbff;
  padding: 80px 0;
}

@media (max-width: 768px) { .promo-section { padding: 40px 0; } }

.promo__container {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

@media (max-width: 992px) { .promo__container { flex-direction: column; } }

.promo__text {
  max-width: 678px;
  font-size: 30px;
  font-weight: 600;
  color: #016c7a;
  line-height: 1.4;
  letter-spacing: .03em;
}

@media (max-width: 992px) { .promo__text { text-align: center; } }

.newspapper__form {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.newspapper__form input {
  display: block;
  width: 200px;
  height: 56px;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,.1);
  margin-right: 2px;
  padding: 0 20px;
  font: 400 16px/1.5 "Poppins", sans-serif;
  color: #303a41;
}

.newspapper__form input:first-child {
  border-radius: 30px 0 0 30px;
}

.newspapper__form input:focus { outline: none; border-color: var(--teal); }

.newspapper__form button {
  display: block;
  height: 56px;
  padding: 0 28px;
  background: #008088;
  border-radius: 0 30px 30px 0;
  border: none;
  color: #fff;
  font: 500 16px/1 "Poppins", sans-serif;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.newspapper__form button:hover { background: var(--teal-dark); }

@media (max-width: 840px) {
  .newspapper__form { flex-wrap: wrap; }
  .newspapper__form input,
  .newspapper__form button { width: 100%; max-width: 100%; margin-bottom: 12px; border-radius: 6px; }
}

/* ===========================
   LEGACY COMPAT (other pages)
   =========================== */
.navbar { display: none; } /* replaced by site-header */

/* Page hero for About/Contact */
.page-hero {
  background: linear-gradient(135deg, #016c7a 0%, var(--teal) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

.page-hero p {
  opacity: .85;
  font-size: 1.05rem;
  margin-top: .5rem;
}

/* About / Contact pages - reuse existing classes */
.content-section { padding: 4rem 0; }
.content-section-alt { padding: 4rem 0; background: var(--teal-bg); }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: #718096;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.feature-card {
  border: none;
  border-radius: 8px;
  padding: 2rem;
  background: #fff;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pathway-badge {
  background: var(--teal-bg);
  color: var(--teal-dark);
  border-radius: 20px;
  padding: .35rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  display: inline-block;
  margin: .25rem;
}

.leader-card {
  border: none;
  border-radius: 8px;
  padding: 2rem;
  background: #fff;
  height: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.leader-card h4 {
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: .25rem;
}

.leader-card .title {
  color: var(--teal);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Forms */
.form-section {
  background: #f7fafc;
  padding: 3rem;
  border-radius: 10px;
}

.form-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  font-size: .9rem;
}

.form-control, .form-select {
  border: 1px solid #cbd5e0;
  border-radius: 5px;
  padding: .6rem .9rem;
  font-size: .95rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(1,151,160,.15);
  outline: none;
}

.btn-primary-custom {
  background-color: var(--teal);
  color: #fff;
  border: none;
  padding: .7rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .2s;
  font-family: "Poppins", sans-serif;
  display: inline-block;
}

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

.alert-success-custom {
  background: #c6f6d5;
  color: #276749;
  border: 1px solid #9ae6b4;
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}
