/* ============================================================
   DR. SUNÉ SCHOLTZ — EDUCATIONAL PSYCHOLOGIST
   Main Stylesheet
   Colors: Green #8DC73F | Blue #01ADDD | Grey #606060
   ============================================================ */

/* --- Variables & Reset --- */
:root {
  --green:       #8DC73F;
  --green-dark:  #6fa832;
  --green-light: #f0f8e3;
  --blue:        #01ADDD;
  --blue-dark:   #0191b8;
  --blue-light:  #e0f5fb;
  --pink:        #E0457B;
  --red:         #D91B5D;
  --red-dark:    #b81550;
  --grey:        #606060;
  --grey-light:  #f5f5f5;
  --dark:        #1d2d1d;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,0.14);
  --radius:      18px;
  --radius-sm:   10px;
  --ease:        0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--grey);
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: var(--blue); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--dark);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }


/* ============================================================
   UTILITIES
   ============================================================ */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
.text-center  { text-align: center; }
.text-white   { color: var(--white) !important; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.section-label {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.35rem 1.1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.section-label.blue  { background: var(--blue-light); color: var(--blue-dark); }
.section-label.white { background: rgba(255,255,255,0.25); color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  color: var(--grey);
  margin-bottom: 3rem;
}
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

section { padding: 90px 0; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2.1rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn i { font-size: 1.05em; }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(141,199,63,0.35);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(141,199,63,0.45);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(1,173,221,0.35);
}
.btn-secondary:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(1,173,221,0.45);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-green {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.88rem; }


/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  padding: 0.6rem 0;
  transition: var(--ease);
}
.navbar.scrolled { padding: 0.4rem 0; box-shadow: 0 4px 30px rgba(0,0,0,0.1); }

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand { display: flex; align-items: center; }
.navbar-brand img { height: 80px; width: auto; }

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.navbar-nav a {
  color: var(--grey);
  font-weight: 700;
  font-size: 0.93rem;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--ease);
}
.navbar-nav a:hover, .navbar-nav a.active {
  color: var(--green-dark);
  border-bottom-color: var(--green);
}
.navbar-nav .btn { border-bottom: none !important; padding-bottom: 0.85rem; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--grey);
  border-radius: 3px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }


/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(140deg, #f5fce8 0%, #e8f7fb 55%, #f5eff9 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative paw prints */
.paw-deco {
  position: absolute;
  opacity: 0.06;
  pointer-events: none;
}
.paw-deco svg { fill: var(--green); }
.paw-deco.pd-1 { top: 8%; left: 2%; width: 180px; transform: rotate(-20deg); }
.paw-deco.pd-2 { bottom: 10%; right: 3%; width: 240px; transform: rotate(15deg); }
.paw-deco.pd-3 { top: 50%; left: 45%; width: 120px; transform: rotate(30deg); opacity: 0.04; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow i { color: var(--green); }

.hero-title { margin-bottom: 1.4rem; }
.hero-title .accent { color: var(--green); }
.hero-title .accent-blue { color: var(--blue); }

.hero-description {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.2rem;
  color: #505050;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Simplified hero layout ──────────────────────────── */
.hero-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 0 4rem;
  gap: 2rem;
}
.hero-identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-name {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--blue-dark);
  margin: 0;
  line-height: 1.1;
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--green-dark);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}
.hero-location {
  font-size: 0.95rem;
  color: var(--grey);
  margin: 0.25rem 0 0;
}
.hero-cta {
  margin-top: 1rem;
}

/* ── Services group headings ─────────────────────────── */
.services-group {
  margin-bottom: 3.5rem;
}
.services-group-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ── Workshops note ──────────────────────────────────── */
.workshops-note {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  color: var(--blue-dark);
  font-size: 0.95rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.workshops-note i {
  color: var(--blue);
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.workshops-note a {
  color: var(--blue-dark);
  font-weight: 700;
}

/* ── Qualifications subheading ───────────────────────── */
.qual-subheading {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-ring {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: gentleFloat 5s ease-in-out infinite;
}
.hero-logo-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0deg, var(--blue) 120deg, #b9e0a0 240deg, var(--green) 360deg);
  z-index: -1;
  opacity: 0.25;
}
.hero-logo-ring img { width: 300px; height: auto; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Floating cards on hero */
.hero-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}
.hero-card-1 { bottom: -2rem; left: -3rem; }
.hero-card-2 { top: 2rem; right: -3rem; }

.hero-card-icon { font-size: 1.8rem; }
.hero-card-body strong {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 800;
}
.hero-card-body span {
  font-size: 0.75rem;
  color: var(--grey);
}
.hero-card-2 { background: var(--green); }
.hero-card-2 .hero-card-body strong,
.hero-card-2 .hero-card-body span { color: var(--white); }


/* ============================================================
   TRUST BAR
   ============================================================ */
#trust {
  padding: 0;
  background: var(--white);
  border-bottom: 1px solid #ebebeb;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 2rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--grey);
  border-right: 1px solid #ebebeb;
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 1.2rem; color: var(--green); }


/* ============================================================
   STRUGGLES SECTION
   ============================================================ */
#struggles { background: var(--white); }

.struggles-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.struggles-quote {
  background: var(--green-light);
  border-left: 5px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 2rem;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--green-dark);
  font-weight: 700;
  margin-top: 1rem;
}

.struggles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1rem;
}

.struggle-card {
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1rem;
  text-align: center;
  cursor: default;
  transition: var(--ease);
  border: 2px solid transparent;
}
.struggle-card:hover {
  background: var(--green-light);
  border-color: var(--green);
  transform: translateY(-4px);
}
.struggle-card .sc-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }
.struggle-card h4 { font-size: 0.88rem; color: var(--dark); font-weight: 700; }


/* ============================================================
   WHAT IS AN ED PSYCH  (intro strip)
   ============================================================ */
#ed-psych-intro {
  background: var(--blue);
  padding: 60px 0;
}
.ed-psych-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
}
.ed-psych-icon { font-size: 5rem; line-height: 1; }
.ed-psych-grid h2, .ed-psych-grid p, .ed-psych-grid h3 { color: var(--white); }
.ed-psych-grid p { opacity: 0.9; max-width: 680px; }


/* ============================================================
   ANIMAL-ASSISTED THERAPY — FEATURE SECTION
   ============================================================ */
#therapy-dog {
  background: linear-gradient(135deg, var(--green) 0%, #6fa832 100%);
  position: relative;
  overflow: hidden;
}
#therapy-dog::after {
  content: '';
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='68' rx='24' ry='20' fill='white'/%3E%3Cellipse cx='24' cy='48' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='42' cy='36' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='62' cy='36' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='80' cy='47' rx='10' ry='12' fill='white'/%3E%3C/svg%3E") no-repeat center/contain;
  opacity: 0.05;
  pointer-events: none;
}

.td-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.td-image-outer {
  position: relative;
  display: block;
  animation: mzansi-float 4s ease-in-out infinite;
  transform-origin: center center;
}
.td-curve-text {
  position: absolute;
  top: -48px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 48px);
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}
.td-curve-text text {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  fill: var(--white);
  letter-spacing: 4px;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.45));
}

.td-image-wrap {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mzansi-blob-morph 8s ease-in-out infinite;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.td-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Meet Mzansi animations ─────────────────────────────── */
@keyframes mzansi-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%       { transform: translateY(-6px) rotate(1deg); }
  75%       { transform: translateY(3px) rotate(-1deg); }
}
@keyframes mzansi-img-pop {
  0%   { transform: scale(1) rotate(0deg); }
  50%  { transform: scale(1.06) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}
@keyframes mzansi-blob-morph {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  33%       { border-radius: 50% 50% 60% 40% / 40% 50% 50% 60%; }
  66%       { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
}

.td-image-outer:hover .td-image-wrap {
  animation: mzansi-img-pop 0.55s ease forwards, mzansi-blob-morph 8s ease-in-out infinite;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 8px rgba(255,255,255,0.25);
}
.td-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 380px;
  font-size: 5rem;
  gap: 1rem;
  color: rgba(255,255,255,0.7);
}
.td-placeholder span { font-size: 1rem; font-weight: 700; opacity: 0.7; }

#therapy-dog h2,
#therapy-dog h3,
#therapy-dog p { color: var(--white); }

.aat-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 2rem 0 2.5rem;
}
.aat-benefit {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.aat-ben-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  color: var(--white);
}
.aat-ben-text strong { display: block; color: var(--white); font-weight: 800; margin-bottom: 0.15rem; }
.aat-ben-text span   { font-size: 0.9rem; opacity: 0.85; color: var(--white); }

.research-callout {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--white);
}
.research-callout i { font-size: 1.4rem; flex-shrink: 0; }


/* ============================================================
   SERVICES
   ============================================================ */

/* ============================================================
   COLLAPSIBLE READ MORE
   ============================================================ */
.svc-details {
  margin-top: 0.85rem;
  border-top: 1px solid var(--green-light);
  padding-top: 0.65rem;
}
.svc-details summary {
  cursor: pointer;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 800;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  user-select: none;
}
.svc-details summary::-webkit-details-marker { display: none; }
.svc-details summary::after {
  content: '▾';
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.svc-details[open] summary::after { transform: rotate(180deg); }
.svc-more-content {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
}
.svc-more-content p { margin-bottom: 0.6rem; }
.svc-more-content ul {
  list-style: disc;
  padding-left: 1.3rem;
  margin-top: 0.4rem;
}
.svc-more-content li { margin-bottom: 0.25rem; }
.svc-more-content strong { color: var(--dark); }

#services { background: var(--grey-light); }
#services .section-subtitle { margin-bottom: 4.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--ease);
  border-bottom: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--green);
}
.service-card.featured {
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  border-bottom-color: var(--green);
}

.svc-icon {
  width: 58px; height: 58px;
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.svc-icon.green { background: var(--green-light); color: var(--green-dark); }
.svc-icon.blue  { background: var(--blue-light);  color: var(--blue-dark);  }
.svc-icon.pink  { background: #fce4f0;             color: var(--pink);       }
.svc-icon.teal  { background: #e0f7f4;             color: #009688;           }
.svc-icon.purple{ background: #f0e8fb;             color: #7c4dff;           }
.svc-icon.orange{ background: #fff3e0;             color: #e65100;           }

.service-card h3 { margin-bottom: 0.75rem; font-size: 1.15rem; }
.service-card p  { font-size: 0.93rem; color: var(--grey); }

.svc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.2rem; }
.svc-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  font-size: 0.73rem;
  font-weight: 800;
}

.service-lang-note {
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  font-weight: 700;
  color: var(--blue-dark);
}
.service-lang-note i { font-size: 1.3rem; }

.medical-aid-note {
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--green-dark);
}
.medical-aid-note i { font-size: 1.3rem; color: var(--green); }


/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works { background: var(--white); }

.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 1rem;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.66% + 30px);
  right: calc(16.66% + 30px);
  height: 3px;
  background: linear-gradient(to right, var(--green), var(--blue));
  z-index: 0;
}

.step { text-align: center; position: relative; z-index: 1; }

.step-num {
  width: 90px; height: 90px;
  background: var(--white);
  border: 4px solid var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 0 8px var(--white), var(--shadow);
}
.step-num span {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
}

.step h3 { margin-bottom: 0.65rem; }
.step p  { font-size: 0.93rem; max-width: 280px; margin: 0 auto; }

.assessment-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 2rem;
}
.flow-step {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  min-width: 160px;
}
.flow-step i  { font-size: 2rem; color: var(--blue); margin-bottom: 0.5rem; display: block; }
.flow-step strong { display: block; color: var(--blue-dark); font-size: 0.9rem; margin-bottom: 0.3rem; }
.flow-step span  { font-size: 0.8rem; color: var(--grey); }
.flow-arrow { font-size: 1.8rem; color: var(--blue-dark); }


/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: linear-gradient(140deg, var(--blue-light) 0%, #f4f0fb 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}

.about-img-wrap {
  position: relative;
}
.about-img-blob {
  border-radius: 38% 62% 65% 35% / 40% 38% 62% 60%;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(1,173,221,0.2);
  background: var(--blue-light);
}
.about-img-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.about-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue);
  gap: 0.5rem;
}
.about-img-placeholder span { font-size: 0.85rem; font-weight: 700; color: var(--blue-dark); }

.about-experience-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-experience-badge strong { display: block; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.about-experience-badge span  { font-size: 0.75rem; font-weight: 700; opacity: 0.9; }

.about-text > p { font-size: 1.02rem; }

.qualifications {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1.5rem 0 2rem;
}
.qual-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.65rem 1.1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  width: fit-content;
}
.qual-item i { color: var(--blue); font-size: 0.95rem; }

.hpcsa-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2.5px solid var(--blue);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  margin-top: 2rem;
  width: fit-content;
}
.hpcsa-strip i { font-size: 1.8rem; color: var(--blue); }
.hpcsa-strip strong { display: block; font-size: 0.92rem; color: var(--dark); }
.hpcsa-strip span  { font-size: 0.78rem; color: var(--grey); }


/* ============================================================
   MEDIA & RESEARCH
   ============================================================ */
#media { background: var(--grey-light); }
#media .section-subtitle { margin-bottom: 4.5rem; }

.media-pub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.media-pub-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: var(--ease);
  border-top: 4px solid var(--green);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.media-pub-card.blue { border-top-color: var(--blue); }
.media-pub-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.media-pub-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-dark);
}
.media-pub-card.blue .media-pub-label { color: var(--blue-dark); }
.media-pub-year { font-size: 0.75rem; color: var(--grey); }
.media-pub-card h4 { font-size: 0.95rem; }
.media-pub-card a { font-size: 0.82rem; }

.research-section h3 { margin-bottom: 1.25rem; }
.research-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.research-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.research-item i { color: var(--blue); font-size: 1.2rem; flex-shrink: 0; margin-top: 3px; }
.research-item h4 { font-size: 0.95rem; margin-bottom: 0.25rem; font-style: italic; }
.research-item p  { font-size: 0.83rem; color: var(--grey); margin: 0; }
.research-item a  { font-size: 0.83rem; font-weight: 700; }


/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #0191b8 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cellipse cx='50' cy='68' rx='24' ry='20' fill='white'/%3E%3Cellipse cx='24' cy='48' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='42' cy='36' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='62' cy='36' rx='10' ry='12' fill='white'/%3E%3Cellipse cx='80' cy='47' rx='10' ry='12' fill='white'/%3E%3C/svg%3E") repeat;
  background-size: 120px 120px;
  opacity: 0.04;
  pointer-events: none;
}
#cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
#cta-banner p  { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 580px; margin: 0 auto 2.5rem; }
.cta-buttons   { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0f1f0f;
  color: rgba(255,255,255,0.72);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 180px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-brand p { font-size: 0.88rem; max-width: 280px; line-height: 1.7; }

.footer-col-title {
  display: inline-block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2.5px solid var(--green);
}

.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: var(--ease); }
.footer-links a:hover { color: var(--green); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.fci {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.fci i { color: var(--green); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.fci a { color: rgba(255,255,255,0.72); }
.fci a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-reg { font-size: 0.75rem; opacity: 0.55; }
.footer-legal-links a { color: rgba(255,255,255,0.5); margin-left: 1.25rem; }
.footer-legal-links a:hover { color: var(--green); }


/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 990;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #25D366;
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  font-weight: 800;
  font-size: 0.92rem;
  transition: var(--ease);
  text-decoration: none;
}
.whatsapp-float a:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37,211,102,0.55);
  color: var(--white);
}
.whatsapp-float i { font-size: 1.5rem; }

.wa-pulse {
  display: inline-block;
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  margin-left: 2px;
  animation: waPulse 1.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 130px 0 70px;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--blue-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p  { font-size: 1.05rem; max-width: 560px; margin: 0 auto; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */
#contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 4rem;
  padding: 5rem 0;
}

.contact-sidebar h3 { margin-bottom: 1.5rem; }

.contact-info-card {
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.contact-info-card i { font-size: 1.3rem; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.contact-info-card strong { display: block; font-size: 0.88rem; font-weight: 800; color: var(--dark); margin-bottom: 0.2rem; }
.contact-info-card span, .contact-info-card a { font-size: 0.92rem; color: var(--grey); }
.contact-info-card a:hover { color: var(--green); }

.lang-badges { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.lang-badge {
  padding: 0.45rem 1.1rem;
  border: 2px solid var(--green);
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--green-dark);
  background: var(--green-light);
}

.booking-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}
.booking-form h2 { margin-bottom: 0.5rem; }
.booking-form .form-intro { font-size: 0.95rem; margin-bottom: 2rem; }

.form-fieldset-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green-dark);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-light);
}
.form-fieldset-title:first-of-type { margin-top: 0; }

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

.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group label .req { color: var(--pink); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(141,199,63,0.18);
}
.form-control::placeholder { color: #aaa; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23606060' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-honeypot { display: none !important; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}
.form-check label { font-size: 0.88rem; color: var(--grey); line-height: 1.5; }
.form-check label a { color: var(--blue); font-weight: 700; }

.form-submit { margin-top: 1.75rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1.05rem; padding: 1.05rem; }
.form-note { font-size: 0.78rem; color: var(--grey); text-align: center; margin-top: 0.75rem; }

.form-error-msg {
  background: #fce4e4;
  border: 1.5px solid #f44336;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  color: #c62828;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  display: none;
}
.form-error-msg.show { display: block; }


/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-light), var(--blue-light));
  padding: 2rem;
}
.success-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 4rem 3.5rem;
  max-width: 620px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.success-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.success-card h1 { color: var(--green); margin-bottom: 1rem; font-size: clamp(1.8rem,3vw,2.5rem); }
.success-card p  { font-size: 1.05rem; max-width: 480px; margin: 0 auto 2rem; }
.success-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }


/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.privacy-content h2 {
  color: var(--blue-dark);
  font-size: 1.25rem;
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--blue-light);
}
.privacy-content h2:first-of-type { margin-top: 0; }
.privacy-content ul { margin: 0.75rem 0 1rem 1.5rem; list-style: disc; }
.privacy-content li { margin-bottom: 0.4rem; font-size: 0.95rem; }
.privacy-content strong { color: var(--dark); }
.privacy-content .last-updated {
  background: var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
  color: var(--grey);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero-logo-ring { width: 360px; height: 360px; }
  .hero-logo-ring img { width: 260px; }
  .hero-card-1 { left: -1rem; }
  .hero-card-2 { right: -1rem; }
}

@media (max-width: 992px) {
  .hero-grid,
  .td-grid,
  .about-grid,
  .struggles-intro,
  .ed-psych-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .hero-logo-ring { width: 300px; height: 300px; }
  .hero-logo-ring img { width: 220px; }
  .hero-card-1, .hero-card-2 { display: none; }

  .steps-wrap { grid-template-columns: 1fr; }
  .steps-wrap::before { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .about-experience-badge { right: 0; bottom: -1rem; }
}

@media (max-width: 768px) {
  section { padding: 65px 0; }
  h1 { font-size: 2rem; }

  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    gap: 1rem;
    border-top: 1px solid #f0f0f0;
  }
  .navbar-nav.open { display: flex; }
  .hamburger { display: flex; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links a { margin-left: 0.75rem; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 1.75rem; }

  .whatsapp-float a { padding: 1rem; border-radius: 50%; }
  .whatsapp-float .wa-text { display: none; }

  .trust-item { border-right: none; width: 100%; }
  .trust-inner { gap: 0; }

  .assessment-flow { flex-direction: column; }
  .flow-arrow { transform: rotate(90deg); }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .cta-buttons  { flex-direction: column; align-items: center; }
  .success-card { padding: 2.5rem 1.5rem; }
}

/* =========================================================
   MULTI-PAGE & SIMPLIFIED DESIGN ADDITIONS
   ========================================================= */

/* ── Home page layout ────────────────────────────────────── */
.home-intro {
  padding: 2.5rem 0 1rem;
}
.home-intro-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.8;
}

.home-nav-section {
  padding: 2.5rem 0 4rem;
}
.home-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.home-nav-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.75rem;
  border: 1.5px solid var(--green-light);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  gap: 0.3rem;
}
.home-nav-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.hnc-title {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--green-dark);
}
.hnc-desc {
  font-size: 0.88rem;
  color: var(--grey);
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 8rem 0 2rem;
  border-bottom: 1px solid var(--green-light);
  margin-bottom: 3rem;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin: 0;
}

/* ── About page ──────────────────────────────────────────── */
.ed-psych-info-section {
  background: var(--green-light);
  padding: 3.5rem 0;
  margin-top: 3rem;
}
.ed-psych-info-inner {
  max-width: 760px;
}
.ed-psych-info-inner h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--green-dark);
}
.ed-psych-info-inner p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ── Services page accordion ─────────────────────────────── */
.services-page-wrap {
  max-width: 760px;
}
.services-intro {
  font-size: 0.97rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--green-light);
}
.services-intro a {
  color: var(--green-dark);
  font-weight: 700;
}

.svc-group {
  margin-bottom: 3.5rem;
}
.svc-group-heading {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-light);
}

.svc-process-note {
  background: #f8fdf8;
  border-left: 3px solid var(--green);
  padding: 0.9rem 1.1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.svc-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-accordion li {
  border-bottom: 1px solid var(--green-light);
}
.svc-accordion li:first-child {
  border-top: 1px solid var(--green-light);
}
.svc-accordion details summary {
  cursor: pointer;
  padding: 1rem 0.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-dark);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.svc-accordion details summary::-webkit-details-marker { display: none; }
.svc-accordion details summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 1rem;
}
.svc-accordion details[open] summary::after {
  content: '−';
}
.svc-accordion details summary:hover {
  color: var(--blue);
}
.svc-detail-body {
  padding: 0.25rem 0.25rem 1.25rem;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.8;
}
.svc-detail-body p + p {
  margin-top: 0.75rem;
}
.svc-sub-list {
  list-style: disc;
  padding-left: 1.4rem;
  margin-top: 0.5rem;
}
.svc-sub-list li {
  margin-bottom: 0.3rem;
  font-size: 0.93rem;
  color: var(--grey);
  border: none !important;
}
.svc-sub-list li:first-child { border-top: none !important; }

.svc-workshops-text {
  font-size: 0.97rem;
  color: var(--grey);
  line-height: 1.8;
}
.svc-workshops-text a {
  color: var(--green-dark);
  font-weight: 700;
}

.svc-footer-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--green-dark);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

/* ── Research page ───────────────────────────────────────── */
.research-page-wrap {
  max-width: 900px;
}
.research-block {
  margin-bottom: 3.5rem;
}
.research-block h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--green-light);
}
.media-pub-card p {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

/* ── Active nav link ─────────────────────────────────────── */
.navbar-nav a.active {
  color: var(--green-dark);
  font-weight: 800;
  border-bottom: 2px solid var(--green);
}

/* ── Newspaper clipping links ────────────────────────────── */
.clipping-links {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.clipping-links a {
  font-size: 0.82rem;
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}
.clipping-links a:hover { text-decoration: underline; }
