/* ============================================================
   Expressions Unlimited — IDD Group Home & Daycare Services
   Design System v2 — Poppins + Inter, polished UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --navy:       #1a2d5a;
  --navy-dark:  #111e3c;
  --teal:       #1aabb5;
  --teal-dark:  #138a93;
  --teal-light: #e6f7f8;
  --orange:     #f7941d;
  --orange-dark:#d97a10;
  --green:      #4a9e4a;
  --gray-50:    #f8fafc;
  --gray-100:   #f1f5f9;
  --gray-200:   #e2e8f0;
  --gray-400:   #94a3b8;
  --gray-600:   #475569;
  --gray-800:   #1e293b;
  --white:      #ffffff;
  --text:       #1e293b;
  --text-mid:   #475569;
  --text-light: #94a3b8;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.12);

  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-head); }

/* --- Utility --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section--gray  { background: var(--gray-50); }
.section--teal  { background: var(--teal-light); }
.section--navy  { background: var(--navy); color: var(--white); }
.text-center    { text-align: center; }

/* Scroll animation base */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hero content is above the fold — always visible */
.hero .reveal {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(26,171,181,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(26,171,181,0.45);
  transform: translateY(-1px);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(247,148,29,0.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(247,148,29,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* Section labels */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}
.section--navy .section-label { color: var(--teal); }
.section--navy .section-label::before { background: var(--teal); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.section--navy .section-title { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto 52px;
  line-height: 1.7;
}
.section--navy .section-subtitle { color: rgba(255,255,255,0.75); }

.divider {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--orange));
  border-radius: 2px;
  margin: 0 0 28px;
}
.text-center .divider { margin: 0 auto 28px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 0;
  font-family: var(--font-body);
}
.top-bar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  overflow: hidden;
  white-space: nowrap;
}
.top-bar a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar .separator {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  border-bottom-color: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-emblem { height: 52px; width: 52px; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

/* nav links */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
.main-nav > ul > li > a {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-nav > ul > li > a:hover { color: var(--teal); background: transparent; }
.main-nav > ul > li > a:hover::after,
.main-nav > ul > li > a.active::after { transform: scaleX(1); }
.main-nav > ul > li > a.active { color: var(--teal); }

/* CTA button in nav */
.main-nav .nav-cta > a {
  background: var(--teal);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  box-shadow: 0 3px 10px rgba(26,171,181,0.3);
}
.main-nav .nav-cta > a::after { display: none; }
.main-nav .nav-cta > a:hover {
  background: var(--teal-dark) !important;
  box-shadow: 0 5px 16px rgba(26,171,181,0.4);
  transform: translateY(-1px);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { padding-right: 10px !important; }
.nav-dropdown > a .chevron {
  display: inline-block;
  margin-left: 2px;
  font-size: 10px;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a .chevron { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  padding: 12px 8px 8px;
  z-index: 200;
}
/* invisible bridge so mouse can move from nav link into dropdown without gap */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-800);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}
.nav-dropdown:hover .dropdown-menu { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy-dark);
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
}

/* dark photo overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,30,60,0.90) 0%, rgba(17,30,60,0.78) 55%, rgba(26,171,181,0.18) 100%);
  pointer-events: none;
}

/* teal glow orb */
.hero::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(26,171,181,0.18) 0%, transparent 70%);
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247,148,29,0.15);
  border: 1px solid rgba(247,148,29,0.3);
  color: var(--orange);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero h1 span { color: var(--teal); }
.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat {}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .num span { color: var(--teal); }
.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Hero visual card */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}
.hero-card-logo {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.hero-card-logo img { height: 130px; width: auto; margin: 0 auto; }
.hero-tagline {
  color: rgba(255,255,255,0.9);
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.hero-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
}
.hero-pill .icon { font-size: 22px; margin-bottom: 6px; }
.hero-pill .text {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.3px;
}

/* Wave at bottom of hero */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: auto; display: block; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--teal-light) 0%, #b2e0e4 50%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 180px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--gray-200);
}
.about-img-accent .big-num {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.about-img-accent .big-num span { color: var(--orange); }
.about-img-accent p { font-size: 12px; color: var(--text-mid); font-weight: 600; margin-top: 4px; line-height: 1.4; }

.about-img-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  color: var(--white);
  text-align: center;
}
.about-img-badge .emoji { font-size: 28px; }
.about-img-badge span { font-size: 10px; font-weight: 700; letter-spacing: 0.5px; margin-top: 2px; }

.about-content .section-label { display: flex; }
.about-checklist { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--text-mid);
}
.check-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
  box-shadow: 0 2px 8px rgba(26,171,181,0.3);
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: background var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card.teal-accent::before { background: linear-gradient(90deg, var(--teal), #2dd4bf); }
.service-card.orange-accent::before { background: linear-gradient(90deg, var(--orange), #fbbf24); }
.service-card.green-accent::before { background: linear-gradient(90deg, var(--green), #34d399); }
.service-card.navy-accent::before { background: linear-gradient(90deg, var(--navy), var(--teal)); }

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 22px;
}
.icon-teal   { background: linear-gradient(135deg, var(--teal-light), #a7e8ec); }
.icon-orange { background: linear-gradient(135deg, #fff3e0, #fde68a); }
.icon-green  { background: linear-gradient(135deg, #e8f5e9, #a7f3d0); }
.icon-navy   { background: linear-gradient(135deg, #eef2ff, #c7d2fe); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.3px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; color: var(--teal-dark); }
.card-link::after { content: '→'; }

/* ============================================================
   CORE VALUES
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(26,171,181,0.15);
  border: 1px solid rgba(26,171,181,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.value-card p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.quote-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  font-family: Georgia, serif;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 4px;
  margin-bottom: 20px;
}
.stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); font-weight: 700; }
.testimonial-author span   { font-size: 12px; color: var(--text-light); font-weight: 500; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, #2dd4c0 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-banner p { font-size: 18px; opacity: 0.88; margin-bottom: 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item p {
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 64px;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-family: var(--font-head);
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item .fi-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(26,171,181,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 1px;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: var(--teal); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-dark);
  color: var(--white);
  padding: 72px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(26,171,181,0.15), transparent 70%);
  top: -150px;
  right: -100px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  font-weight: 500;
}
.breadcrumb a { color: var(--teal); }

.page-wave {
  line-height: 0;
  background: var(--navy-dark);
}
.page-wave svg { width: 100%; display: block; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-block {
  background: var(--teal-light);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px 32px;
  margin: 32px 0;
}
.mission-block p {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.75;
  font-style: italic;
}
.mission-block strong { font-style: normal; color: var(--teal-dark); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail-section:last-of-type { border-bottom: none; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
}
.service-detail-visual .big-icon { font-size: 100px; }
.vis-teal   { background: linear-gradient(135deg, var(--teal-light), #7dd6dc); }
.vis-orange { background: linear-gradient(135deg, #fff3e0, #fcd9a0); }
.vis-green  { background: linear-gradient(135deg, #e8f5e9, #a7e8b8); }
.vis-navy   { background: linear-gradient(135deg, #eef2ff, #b2b9e8); }
.service-detail-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.service-detail-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}
.service-bullet-list { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.service-bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-mid);
}
.bullet-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--teal);
  border-radius: 50%;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: all var(--transition);
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.event-date-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
}
.date-box {
  text-align: center;
  min-width: 52px;
}
.date-box .month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.date-box .day {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.event-title-row h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}
.event-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.event-body { padding: 20px 24px; }
.event-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 16px; }
.event-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.job-listing {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  padding: 28px 32px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}
.job-listing:hover { box-shadow: var(--shadow-lg); transform: translateX(4px); border-color: var(--teal); }
.job-info h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.job-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--teal-dark);
}
.job-tag.orange { background: #fff3e0; color: var(--orange-dark); }
.job-tag.navy   { background: #eef2ff; color: var(--navy); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: sticky;
  top: 100px;
}
.contact-info-card h2 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
}
.contact-info-card .subtitle { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(26,171,181,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-info-item h4 {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.contact-info-item p  { font-size: 15px; color: var(--white); line-height: 1.5; }
.contact-info-item a  { color: var(--white); font-size: 15px; }
.contact-info-item a:hover { color: var(--teal); }

.contact-hours-list { margin-top: 4px; }
.contact-hours-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
}

/* form */
.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.contact-form-wrap .subtitle { font-size: 15px; color: var(--text-mid); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--gray-50);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(26,171,181,0.12);
}
.form-group textarea { resize: vertical; min-height: 136px; }

/* FAQ accordions */
details {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
  transition: all var(--transition);
}
details[open] { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(26,171,181,0.08); }
summary {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 22px;
  color: var(--teal);
  font-weight: 400;
  transition: transform var(--transition);
}
details[open] summary::after { content: '−'; }
details p { margin-top: 14px; font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid,
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gray-200); }
}

@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .main-nav > ul > li > a {
    padding: 14px 4px;
    border-radius: 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav .nav-cta > a {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--teal) !important;
    padding: 14px 4px;
  }
  .hamburger { display: flex; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    transform: none;
    padding: 0 0 0 16px;
    display: none;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown.dropdown-open > .dropdown-menu { display: block; }
  .dropdown-menu::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(3) { border-right: none; }
  .form-row { grid-template-columns: 1fr; }
  .job-listing { flex-direction: column; align-items: flex-start; }
  .about-img-badge { display: none; }
  .about-img-accent { right: 0; bottom: -16px; }
  .top-bar .container {
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: visible;
  }
  .top-bar .separator { display: none; }
  /* Hide email and hours on mobile — keep phone + Staff Login only */
  .top-bar .container span:nth-child(3),
  .top-bar .container span:nth-child(5) { display: none; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-stats { gap: 20px; }
}
