/* ============================================
   MySehat Theme — Main Stylesheet
   ============================================ */

:root {
  --navy: #0B1F3A;
  --teal: #00A896;
  --teal-light: #05C3B0;
  --amber: #F4A024;
  --coral: #E8604C;
  --cream: #FBF7F0;
  --warm-white: #FDFAF6;
  --slate: #4A5568;
  --mist: #E8F4F2;
  --gold: #D4A017;
  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav#mainNav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  border-bottom: 1px solid rgba(0,168,150,0.25);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--teal-light); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}

.nav-links a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.current-menu-item,
.nav-links a.active { color: var(--teal-light); }

.nav-cta {
  background: var(--teal) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--teal-light) !important; color: var(--navy) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #000; border-radius: 2px;
  transition: all 0.3s;
}

/* ─── PAGE ANIMATION ─── */
.site-main { animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

section { position: relative; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 7% 60px;
  gap: 60px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(0,168,150,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(244,160,36,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,168,150,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,150,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,168,150,0.15);
  border: 1px solid rgba(0,168,150,0.35);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 12px;
  color: var(--teal-light);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-who {
  background: rgba(244,160,36,0.1);
  border-left: 3px solid var(--amber);
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-who p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-style: italic;
}

.hero-who span {
  display: block;
  font-size: 12px;
  color: var(--amber);
  margin-top: 6px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover {
  background: var(--teal-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,150,0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--teal-light);
  color: var(--teal-light);
  transform: translateY(-2px);
}

.hero-image-wrap {
  position: relative; z-index: 2;
  display: flex; justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0,168,150,0.15), rgba(11,31,58,0.5));
  border: 1px solid rgba(0,168,150,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.hero-nurse-icon {
  font-size: 80px;
  filter: drop-shadow(0 8px 24px rgba(0,168,150,0.3));
}

.hero-image-label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.hero-floating-stat {
  position: absolute;
  background: rgba(11,31,58,0.95);
  border: 1px solid rgba(0,168,150,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
}

.hero-floating-stat.s1 { bottom: 40px; left: -30px; }
.hero-floating-stat.s2 { top: 40px; right: -30px; }

.floating-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--teal-light);
}

.floating-label {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ─── PROBLEM STATS ─── */
.problem-section {
  background: var(--cream);
  padding: 100px 7%;
  text-align: center;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(11,31,58,0.2);
}

.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}

.stat-card:nth-child(1)::before { background: linear-gradient(90deg, var(--teal), var(--teal-light)); }
.stat-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--amber)); }
.stat-card:nth-child(3)::before { background: linear-gradient(90deg, var(--amber), var(--gold)); }
.stat-card:nth-child(4)::before { background: linear-gradient(90deg, #8B5CF6, #EC4899); }

.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
}

.stat-card:nth-child(1) .stat-card-icon { background: rgba(0,168,150,0.15); }
.stat-card:nth-child(2) .stat-card-icon { background: rgba(232,96,76,0.15); }
.stat-card:nth-child(3) .stat-card-icon { background: rgba(244,160,36,0.15); }
.stat-card:nth-child(4) .stat-card-icon { background: rgba(139,92,246,0.15); }

.stat-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-card:nth-child(1) .stat-number { color: var(--teal-light); }
.stat-card:nth-child(2) .stat-number { color: #FF8A78; }
.stat-card:nth-child(3) .stat-number { color: var(--amber); }
.stat-card:nth-child(4) .stat-number { color: #A78BFA; }

.stat-text {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  margin-bottom: 16px;
}

.stat-source {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ─── PILLARS ─── */
.pillars-section {
  background: var(--warm-white);
  padding: 100px 7%;
}

.pillars-header { text-align: center; margin-bottom: 60px; }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 48px;
}

.pillar-card {
  background: var(--cream);
  border: 1.5px solid rgba(0,168,150,0.12);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,168,150,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pillar-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,168,150,0.12);
}

.pillar-card:hover::after { opacity: 1; }

.pillar-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.pillar-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
}

.pillars-cta { text-align: center; }

/* ─── NUMBERS BAND ─── */
.numbers-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2a4a 50%, #0f3352 100%);
  padding: 72px 7%;
  position: relative;
  overflow: hidden;
}

.numbers-band::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%2300A896' fill-opacity='0.15'/%3E%3C/svg%3E") repeat;
}

.numbers-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.number-item { text-align: center; }

.number-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 8px;
}

.number-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: var(--mist);
  padding: 100px 7%;
}

.testimonials-header { text-align: center; margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.7;
  color: var(--teal);
  opacity: 0.2;
  position: absolute;
  top: 24px; left: 28px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: 28px;
  padding-top: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex; align-items: center; gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}

.author-role {
  font-size: 13px;
  color: var(--teal);
  margin-top: 2px;
}

/* ─── RBSK ─── */
.rbsk-section {
  background: var(--warm-white);
  padding: 80px 7%;
}

.rbsk-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.rbsk-text .section-label { text-align: left; }
.rbsk-text .section-title { font-size: clamp(26px, 3vw, 38px); text-align: left; }

.rbsk-text p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.8;
  margin-top: 20px;
}

.rbsk-diagram {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid rgba(0,168,150,0.15);
}

.rbsk-diagram-title {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  text-align: center;
}

.rbsk-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.rbsk-node {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  width: 200px;
}

.rbsk-node.highlight {
  background: var(--teal);
  color: #fff;
}

.rbsk-arrow {
  color: var(--teal);
  font-size: 20px;
}

.rbsk-complement {
  background: rgba(0,168,150,0.08);
  border: 1px dashed var(--teal);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--teal);
  text-align: center;
  width: 200px;
  font-weight: 500;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 60px 7% 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 16px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li { font-size: 14px; }
.footer-col ul a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; cursor: pointer; }
.footer-col ul a:hover { color: var(--teal-light); }

.footer-contact p { font-size: 14px; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact p span { font-size: 16px; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.social-link:hover { background: var(--teal); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; cursor: pointer; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ─── SERVICES PAGE ─── */
.services-hero {
  background: var(--navy);
  padding: 140px 7% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.services-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,168,150,0.12), transparent);
}

.services-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  color: #fff;
  position: relative; z-index: 1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.services-hero h1 em { color: var(--teal-light); font-style: italic; }

.services-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto;
  position: relative; z-index: 1;
  line-height: 1.7;
}

.services-list {
  padding: 80px 7%;
  background: var(--warm-white);
  max-width: 1100px;
  margin: 0 auto;
}

.service-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0,168,150,0.1);
  transition: all 0.3s;
}

.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 8px; }

.service-icon-wrap {
  width: 70px; height: 70px;
  background: var(--cream);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  border: 1.5px solid rgba(0,168,150,0.15);
  transition: all 0.3s;
}

.service-item:hover .service-icon-wrap {
  background: rgba(0,168,150,0.08);
  border-color: var(--teal);
}

.service-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.service-title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.service-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
  max-width: 560px;
}

.freq-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,168,150,0.1);
  border: 1px solid rgba(0,168,150,0.25);
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 6px;
}

.freq-badge.daily { background: rgba(0,168,150,0.1); border-color: rgba(0,168,150,0.3); color: var(--teal); }
.freq-badge.annual { background: rgba(244,160,36,0.1); border-color: rgba(244,160,36,0.3); color: #C88A00; }
.freq-badge.quarterly { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.25); color: #7C3AED; }
.freq-badge.ondemand { background: rgba(232,96,76,0.08); border-color: rgba(232,96,76,0.25); color: var(--coral); }

.services-cta-band {
  background: var(--cream);
  padding: 60px 7%;
  text-align: center;
}

.services-cta-band p {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 500;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
  background: linear-gradient(160deg, var(--navy) 0%, #0d2a4a 60%, #1a3a5c 100%);
  padding: 140px 7% 80px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(0,168,150,0.1), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(244,160,36,0.07), transparent 50%);
}

.about-hero-inner {
  position: relative; z-index: 1;
  max-width: 720px;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.about-hero h1 em { color: var(--teal-light); font-style: italic; }

.about-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
}

.why-section {
  background: var(--warm-white);
  padding: 90px 7%;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.why-text .section-title { text-align: left; font-size: clamp(28px, 3vw, 42px); }
.why-text .section-label { text-align: left; }

.why-text p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.85;
  margin-top: 20px;
}

.why-mission {
  background: var(--navy);
  border-radius: 20px;
  padding: 40px 36px;
  margin-top: 32px;
}

.why-mission p {
  font-family: var(--font-display);
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

.why-mission span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-style: normal;
  color: var(--teal-light);
  margin-top: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.why-visual {
  background: var(--cream);
  border-radius: 24px;
  padding: 48px 40px;
  border: 1.5px solid rgba(0,168,150,0.12);
}

.why-visual-title {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.values-list { display: flex; flex-direction: column; gap: 20px; }

.value-item {
  display: flex; gap: 16px; align-items: flex-start;
}

.value-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(0,168,150,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.value-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline-section {
  background: var(--navy);
  padding: 90px 7%;
  overflow: hidden;
}

.timeline-header { text-align: center; margin-bottom: 60px; }
.timeline-header .section-title { color: #fff; }
.timeline-header .section-label { color: var(--teal-light); }

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 20px; bottom: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(0,168,150,0.2));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; grid-row: 1; }

.timeline-dot {
  width: 16px; height: 16px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 6px;
  box-shadow: 0 0 0 4px rgba(0,168,150,0.2);
  position: relative; z-index: 1;
}

.timeline-content {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 24px;
  grid-column: 1;
}

.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }

.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--teal-light);
  letter-spacing: 1px;
  margin-bottom: 6px;
  font-weight: 600;
}

.timeline-text {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Team */
.team-section {
  background: var(--warm-white);
  padding: 90px 7%;
}

.team-header { text-align: center; margin-bottom: 56px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto 56px;
}

.team-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1.5px solid rgba(0,168,150,0.1);
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,168,150,0.1);
  border-color: var(--teal);
}

.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
  border: 3px solid rgba(0,168,150,0.2);
}

.team-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.team-bio {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
}

.advisors-header {
  text-align: center;
  margin-bottom: 32px;
}

.advisors-header h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.advisor-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s;
}

.advisor-card:hover { box-shadow: 0 8px 28px rgba(0,168,150,0.1); }

.advisor-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--coral));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: #fff;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 700;
}

.advisor-name { font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.advisor-spec { font-size: 12px; color: var(--slate); }

/* ─── CONTACT PAGE ─── */
.contact-hero {
  background: var(--navy);
  padding: 140px 7% 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,168,150,0.1), transparent);
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 62px);
  color: #fff;
  position: relative; z-index: 1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.contact-hero h1 em { color: var(--teal-light); font-style: italic; }

.contact-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto;
  position: relative; z-index: 1;
  line-height: 1.7;
}

.contact-section {
  background: var(--warm-white);
  padding: 80px 7%;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-form-wrap > p {
  color: var(--slate);
  font-size: 15px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,0.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.submit-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.25s;
  width: 100%;
  letter-spacing: 0.3px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

.submit-btn:hover {
  background: var(--teal-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,168,150,0.3);
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--mist);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.contact-detail-text h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail-text p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.contact-detail-text a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.map-placeholder {
  background: var(--mist);
  border-radius: 16px;
  margin-top: 32px;
  height: 220px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid rgba(0,168,150,0.15);
  overflow: hidden;
  position: relative;
}

.map-placeholder iframe {
  width: 100%; height: 100%; border: none;
  border-radius: 16px;
}

/* ─── SUCCESS STATE ─── */
.form-success {
  display: none;
  background: rgba(0,168,150,0.08);
  border: 1.5px solid var(--teal);
  border-radius: 12px;
  padding: 20px 24px;
  color: var(--teal);
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  margin-top: 16px;
}

.form-success.show { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 0% 60px;
    text-align: center;
  }
  .hero-sub, .hero-who { margin-left: auto; margin-right: 7%; }
  .hero-btns { justify-content: center; }
  .hero-image-wrap { display: flex; }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .rbsk-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; }
  .timeline::before { left: 9px; }
  .timeline-item { grid-template-columns: auto 1fr; }
  .timeline-item .timeline-spacer { display: none; }
  .timeline-content, .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; }
  .timeline-item:nth-child(even) .timeline-spacer { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgb(53 99 161 / 98%);
    padding: 20px 6%;
    gap: 20px;
    border-top: 1px solid rgba(0,168,150,0.2);
  }
  .hamburger { display: flex; }
  .numbers-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .stat-cards { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .service-item { grid-template-columns: auto 1fr; }
  .freq-badge { display: none; }
}

@media (max-width: 640px) {
	.hero-sub {
		max-width: 85%;
	}
	.hero-who {
		max-width: 90%;
	}
	.hero-image-frame {
		width: 85%;
		right: 6px;
	}
	.hero-floating-stat.s1 {
		left: -5%;
	}
	.hero-floating-stat {
		padding: 5px 5px;
	}
	.hero-floating-stat.s2 {
		right: -3%;
	}
}
/* ─── COMPARISON TABLE STYLES ─── */
.ms-compare-container {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  overflow-x: auto;
  font-family: var(--font-body), sans-serif;
}

.ms-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

/* Header Styling */
.ms-compare-table th {
  padding: 16px 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  border: none;
  vertical-align: bottom;
}

.ms-compare-table th:first-child {
  background: transparent;
}

.ms-th-mist {
  background-color: var(--mist);
  color: var(--navy);
  border-radius: 8px 8px 0 0;
}

.ms-th-teal {
  background-color: var(--teal);
  color: #ffffff;
  border-radius: 8px 8px 0 0;
}

/* Continuous Amber Line */
.ms-amber-divider {
  background-color: var(--amber);
  height: 3px;
  padding: 0 !important;
}

/* Row Styling */
.ms-compare-table td {
  padding: 16px 16px;
  font-size: 14.5px;
  color: var(--slate);
  border: none;
}

.ms-compare-table td:first-child {
  text-align: left;
  color: var(--navy);
  font-weight: 500;
}

/* Alternating Backgrounds */
.ms-compare-table tbody tr:nth-child(odd) {
  background-color: rgba(0, 168, 150, 0.06); /* Light mint matching your --teal */
}

.ms-compare-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Data Icons */
.ms-icon-x {
  color: var(--coral);
  font-style: italic;
  font-weight: 600;
  font-size: 16px;
}

.ms-icon-check {
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
}

.ms-text-muted {
  color: var(--slate);
  opacity: 0.8;
}

/* ─── PROCESS 8-COLUMN GRID ─── */
.process-8-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.process-card {
  background: var(--cream);
  border-radius: 0 0 12px 12px;
  padding: 24px 12px;
  text-align: center;
  border-top: 4px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: transform 0.3s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

@media (max-width: 1024px) {
  .process-8-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  .process-8-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ─── STAKEHOLDERS GRID ─── */
.ms-stakeholders-wrap {
  background: var(--warm-white);
  padding-bottom: 80px;
}

.ms-stakeholders-header {
  background: var(--navy);
  padding: 32px 7%;
  color: #fff;
  font-family: var(--font-display), serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 60px;
}

.ms-stakeholders-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 7%;
}

.ms-sh-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px 20px;
  border-top: 4px solid var(--sh-color);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ms-sh-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.ms-sh-icon {
  width: 48px;
  height: 48px;
  color: var(--sh-color);
  margin-bottom: 16px;
}

.ms-sh-title {
  font-family: var(--font-display), serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--sh-color);
  margin-bottom: 24px;
  text-align: center;
}

.ms-sh-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.ms-sh-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
}

.ms-sh-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sh-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .ms-stakeholders-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .ms-stakeholders-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── 6-COLUMN STATS GRID ─── */
.ms-stats-wrap {
  background: var(--warm-white);
  padding-bottom: 80px;
  font-family: var(--font-body), sans-serif;
}

.ms-stats-topbar {
  background: var(--navy);
  color: #fff;
  padding: 32px 7%;
  font-family: var(--font-display), serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.ms-stats-subheader {
  padding: 24px 7% 32px;
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(3, 102, 45); /* Brand Green */
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
}

.ms-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 7%;
}

.ms-stat-box {
  background: #fff;
  padding: 24px 16px;
  border-top: 5px solid var(--box-color);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 4px;
  transition: transform 0.3s;
}

.ms-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.ms-stat-icon {
  width: 40px;
  height: 40px;
  color: var(--box-color);
  margin-bottom: 16px;
}

.ms-stat-num {
  font-family: var(--font-display), serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--box-color);
  margin-bottom: 12px;
  line-height: 1;
}

.ms-stat-desc {
  font-size: 12.5px;
  color: var(--slate);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 24px;
}

.ms-stat-source {
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  color: var(--slate);
  opacity: 0.7;
  line-height: 1.4;
  text-align: left;
  width: 100%;
}

.ms-stats-footer {
  text-align: center;
  margin-top: 48px;
  padding: 0 7%;
}

.ms-stats-footer-text {
  color: #D32F2F; /* A vivid red matching the image */
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 8px;
}

.ms-stats-footer-sub {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ms-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

@media (max-width: 600px) {
  .ms-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .ms-stats-footer-text { line-height: 1.4; }
}

@media (max-width: 400px) {
  .ms-stats-grid { grid-template-columns: 1fr; }
}

/* ─── INTRODUCTION & MISSION/VISION SECTION ─── */
.ms-intro-section {
  background-color: var(--mist);
  padding: 80px 7%;
  font-family: var(--font-body), sans-serif;
}

.ms-intro-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header Area */
.ms-intro-header {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: nowrap;
  gap: 40px;
}

.ms-intro-text h4 {
  font-style: italic;
  color: rgb(3, 102, 45); /* Brand Green */
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 8px;
}

.ms-intro-text h1 {
  font-family: var(--font-display), serif;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.ms-intro-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: rgb(3, 102, 45); /* Brand Green */
  font-weight: 400;
}

/* Logo Recreation */
.ms-intro-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ms-intro-logo svg {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
}

.ms-intro-logo-text {
  font-family: var(--font-display), serif;
  color: rgb(1, 166, 230); /* Brand Blue */
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1;
}

.ms-intro-logo-sub {
  font-family: 'Brush Script MT', cursive, sans-serif;
  color: rgb(1, 166, 230); /* Brand Blue */
  font-size: 15px;
  margin-top: 4px;
}

/* Mission & Vision Cards */
.ms-mv-card {
  background: #ffffff;
  padding: 32px 40px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  border-left: 8px solid;
  border-radius: 2px;
}

.ms-mv-mission {
  border-left-color: rgb(3, 102, 45); /* Brand Green */
}

.ms-mv-vision {
  border-left-color: var(--navy); /* Navy matching the image */
}

.ms-mv-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.ms-mv-mission .ms-mv-title { color: rgb(3, 102, 45); }
.ms-mv-vision .ms-mv-title { color: var(--navy); }

.ms-mv-text {
  color: var(--navy);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
}

/* Footer Tagline */
.ms-intro-footer {
  text-align: center;
  margin-top: 48px;
  font-style: italic;
  color: rgb(3, 102, 45); /* Brand Green */
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .ms-intro-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .ms-mv-card {
    padding: 24px;
    border-left-width: 6px;
  }
  .ms-mv-text {
    font-size: 15px;
  }
}