/* =========================================================
   Khanyisa Nursing School — Global Stylesheet
   Palette inspired by the South African landscape & shweshwe textiles
   Typography: Playfair Display (headings) + Inter (body) + Font Awesome
   ========================================================= */

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

:root {
  --teal-900: #0e3a3a;
  --teal-700: #14595a;
  --teal-500: #1e8a8a;
  --teal-300: #5fc1bf;
  --gold-700: #b58419;
  --gold-500: #e0a52a;
  --gold-300: #f3cf6a;
  --terracotta: #c45a3a;
  --ivory: #fbf6ec;
  --cream: #f4ead6;
  --charcoal: #1b1f24;
  --slate: #4a5560;
  --soft: #e9e2cf;
  --red-cross: #c8332b;
  --green-flag: #007a4d;
  --blue-flag: #002395;
  --shadow-sm: 0 2px 6px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(14,58,58,.12);
  --shadow-lg: 0 18px 50px rgba(14,58,58,.25);
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1240px;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--teal-900);
  line-height: 1.22;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.32rem; }
p  { margin: 0 0 1em; }
a  { color: var(--teal-700); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-700); }
img { max-width: 100%; display: block; height: auto; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Top utility bar ===== */
.topbar {
  background: linear-gradient(90deg, var(--green-flag) 0%, var(--gold-500) 50%, var(--blue-flag) 100%);
  color: #fff;
  font-size: .85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--cream); }
.topbar i { margin-right: 6px; opacity: .9; }
.topbar .tb-left span { margin-right: 18px; display: inline-flex; align-items: center; }
.topbar .tb-right a { margin-left: 16px; display: inline-flex; align-items: center; }
.topbar .tb-right a i { margin-right: 4px; }

/* ===== Header / Navigation ===== */
.site-header {
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand .name {
  font-family: var(--font-head);
  color: var(--teal-900);
  font-weight: 700;
  font-size: 1.18rem;
  line-height: 1.05;
  letter-spacing: -.005em;
}
.brand .name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--gold-700);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 4px;
}

nav.main-nav { flex: 1; }
nav.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: flex-end;
}
nav.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 11px;
  color: var(--teal-900);
  font-weight: 600;
  font-size: .88rem;
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}
nav.main-nav a i { font-size: .78rem; color: var(--teal-500); transition: color .2s; }
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold-700);
  background: var(--cream);
}
nav.main-nav a:hover i, nav.main-nav a.active i { color: var(--gold-700); }
nav.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px; bottom: 3px;
  height: 2px; background: var(--gold-500);
}

.menu-toggle {
  display: none;
  background: var(--teal-700);
  color: #fff;
  border: 0;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.05rem;
}

@media (max-width: 1180px) {
  nav.main-nav a { padding: 9px 9px; font-size: .82rem; }
  nav.main-nav a i { display: none; }
  .brand .name { font-size: 1.05rem; }
  .brand .name small { font-size: .65rem; }
}

@media (max-width: 1000px) {
  .menu-toggle { display: inline-block; }
  nav.main-nav { flex: 0 0 100%; display: none; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    padding: 8px 0 12px;
    gap: 0;
    justify-content: flex-start;
  }
  nav.main-nav a {
    display: flex;
    padding: 13px 6px;
    border-bottom: 1px solid var(--soft);
    font-size: .96rem;
  }
  nav.main-nav a i { display: inline-flex; }
  .site-header .container { flex-wrap: wrap; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, color .18s;
  letter-spacing: .01em;
  font-family: var(--font-body);
}
.btn i { font-size: .9em; }
.btn-primary { background: var(--gold-500); color: var(--teal-900); border-color: var(--gold-500); }
.btn-primary:hover { background: var(--gold-700); color: #fff; border-color: var(--gold-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: var(--teal-900); }
.btn-teal { background: var(--teal-700); color: #fff; border-color: var(--teal-700); }
.btn-teal:hover { background: var(--teal-900); color: var(--gold-300); }

/* ===== Hero ===== */
.hero {
  position: relative;
  color: #fff;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(14,58,58,.85) 0%, rgba(14,58,58,.55) 55%, rgba(14,58,58,.2) 100%);
  z-index: 1;
}
.hero img.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; padding: 86px 24px; }
.hero h1 { color: #fff; max-width: 760px; }
.hero p.lead {
  font-size: 1.2rem;
  max-width: 640px;
  margin-bottom: 26px;
  color: #fbf6ec;
  font-weight: 400;
}
.hero .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--gold-300);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.hero-sub { min-height: 340px; }

/* ===== Section wrapper ===== */
section { padding: 76px 0; }
section.alt { background: var(--cream); }
section.dark {
  background: var(--teal-900);
  color: var(--ivory);
}
section.dark h1, section.dark h2, section.dark h3 { color: var(--gold-300); }
section.dark a { color: var(--gold-300); }

.section-header { text-align: center; max-width: 760px; margin: 0 auto 44px; }
.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-700);
  letter-spacing: .2em;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 700;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-500);
  opacity: .6;
}
.section-header p { color: var(--slate); font-size: 1.05rem; }

/* ===== Grid utilities ===== */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== Cards ===== */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card .card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin-bottom: .4em; }
.card p { color: var(--slate); flex: 1; }
.card .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  color: var(--gold-700);
  font-size: .72rem;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  align-self: flex-start;
}

/* ===== Feature grid (icon cards) ===== */
.feature {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold-500);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
  color: var(--gold-300);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
  box-shadow: 0 6px 14px rgba(14,58,58,.15);
}
.feature h3 { color: var(--teal-700); font-size: 1.12rem; }
.feature p { color: var(--slate); margin-bottom: 0; }

/* ----- Feature card with image (Welcome section etc.) ----- */
.feature.feature-with-img {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature.feature-with-img .feature-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.feature.feature-with-img:hover .feature-img { transform: scale(1.04); }
.feature.feature-with-img .feature-body { padding: 22px 24px 26px; flex: 1; }
.feature.feature-with-img .feature-eyebrow {
  display: inline-block;
  background: var(--cream);
  color: var(--gold-700);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.feature.feature-with-img .big-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--gold-700);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 4px;
}

/* ===== Split section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; direction: ltr; }
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stats .stat .stat-icon {
  font-size: 1.6rem;
  color: var(--gold-300);
  margin-bottom: 8px;
  opacity: .85;
}
.stats .stat .num {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--gold-500);
  font-weight: 700;
  line-height: 1;
}
.stats .stat .label {
  color: var(--ivory);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
  font-weight: 500;
}
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ===== Testimonials ===== */
.testimonial {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 28px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial .quote-mark {
  position: absolute; top: 14px; right: 22px;
  color: var(--gold-300);
  font-size: 2.3rem;
  opacity: .55;
}
.testimonial blockquote {
  margin: 0 0 20px;
  font-style: italic;
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial .who { display: flex; align-items: center; gap: 14px; }
.testimonial .who img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold-300); }
.testimonial .who strong { color: var(--teal-900); }
.testimonial .who small { color: var(--gold-700); display: block; margin-top: 2px; }

/* ===== CTA banner ===== */
.cta-banner {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(rgba(14,58,58,.78), rgba(14,58,58,.85)), url('../img/cta-bg.jpg') center/cover no-repeat;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--cream); max-width: 640px; margin: 0 auto 24px; font-size: 1.05rem; }

/* ===== Forms ===== */
.form { display: grid; gap: 16px; }
.form .row { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form label {
  font-weight: 600;
  color: var(--teal-900);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form label i { color: var(--gold-700); }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d6cfb8;
  background: #fff;
  border-radius: 10px;
  font: inherit;
  color: var(--charcoal);
  transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(30,138,138,.18);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .actions { margin-top: 8px; }

/* ===== Accordion (FAQ) ===== */
.faq details {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0 24px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold-500);
}
.faq details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-900);
  padding: 18px 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq details summary i { color: var(--gold-700); transition: transform .2s; }
.faq details[open] summary i { transform: rotate(180deg); color: var(--teal-700); }
.faq details summary::-webkit-details-marker { display: none; }
.faq details p { padding: 0 0 18px; color: var(--slate); }

/* ===== Programmes accent block ===== */
.programme-block {
  border: 1.5px solid var(--cream);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.programme-block h3 { color: var(--teal-700); }
.programme-block h4 {
  color: var(--gold-700);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.programme-meta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin: 10px 0 18px;
}
.programme-meta span {
  background: var(--teal-900); color: var(--gold-300);
  padding: 5px 13px; border-radius: 999px; font-size: .74rem;
  letter-spacing: .08em; text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.programme-block ul {
  margin: 6px 0 0; padding-left: 4px;
  color: var(--slate); list-style: none;
}
.programme-block li {
  margin-bottom: 8px; padding-left: 26px; position: relative;
}
.programme-block li::before {
  content: "\f00c"; /* fa-check */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--teal-500);
  position: absolute; left: 0; top: 2px;
  font-size: .85rem;
}

/* ===== Campus card ===== */
.campus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.campus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.campus-card img { aspect-ratio: 16/10; object-fit: cover; }
.campus-card .body { padding: 24px; flex: 1; }
.campus-card .body h3 { color: var(--teal-700); margin-bottom: 6px; }
.campus-card .body .province {
  color: var(--gold-700); font-size: .74rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
}
.campus-card .body address {
  font-style: normal; color: var(--slate); margin: 10px 0 14px;
}

/* ===== Values list ===== */
.values {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 24px;
}
.values .val {
  background: #fff; border-radius: var(--radius-lg);
  border-left: 4px solid var(--teal-500);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.values .val:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.values .val .val-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.values .val:hover .val-img { transform: scale(1.05); }
.values .val .val-body {
  padding: 20px 24px 24px;
  color: var(--slate);
  flex: 1;
}
.values .val strong {
  color: var(--gold-700); display: block; margin-bottom: 8px;
  letter-spacing: .1em; text-transform: uppercase; font-size: .85rem;
  font-weight: 700;
}
@media (max-width: 700px) { .values { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--teal-900);
  color: var(--cream);
  padding: 64px 0 0;
  margin-top: 60px;
}
footer.site-footer h4 {
  color: var(--gold-300);
  font-size: .92rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 700;
}
footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 800px) { footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { footer .footer-grid { grid-template-columns: 1fr; } }
footer .brand-foot { display: flex; gap: 12px; align-items: flex-start; }
footer .brand-foot img { width: 56px; height: 56px; }
footer .brand-foot strong { color: #fff; font-family: var(--font-head); font-size: 1.1rem; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li {
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
footer ul li i { color: var(--gold-300); font-size: .8rem; }
footer .contact-list li {
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(251,246,236,.85);
  margin-bottom: 12px;
}
footer .contact-list li i {
  margin-top: 5px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  font-size: .85rem;
}
footer .contact-list a { color: rgba(251,246,236,.85); }
footer .contact-list a:hover { color: var(--gold-300); }
footer a { color: var(--cream); }
footer a:hover { color: var(--gold-300); }
footer .socials a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  margin-right: 8px;
  color: var(--gold-300);
  transition: all .2s;
  font-size: 1rem;
}
footer .socials a:hover { background: var(--gold-500); color: var(--teal-900); transform: translateY(-3px); }
footer .copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  margin-top: 50px;
  font-size: .85rem;
  color: rgba(251,246,236,.7);
  text-align: center;
}
footer .copy i { color: var(--gold-300); margin: 0 4px; }

/* ===== Breadcrumb ===== */
.breadcrumb {
  font-size: .88rem;
  color: var(--cream);
  opacity: .9;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--gold-300); }
.breadcrumb i { font-size: .7rem; opacity: .6; }

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11,30,30,.6);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn .2s; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 36px 30px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-top: 6px solid var(--gold-500);
  animation: popIn .25s;
}
.modal h3 { color: var(--teal-700); }
.modal p { color: var(--slate); }
.modal .close-btn { margin-top: 14px; }
.modal .icon-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--gold-300));
  color: var(--teal-900);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  box-shadow: 0 6px 18px rgba(224,165,42,.35);
}

@keyframes fadeIn { from { opacity: 0;} to { opacity: 1;} }
@keyframes popIn  { from { transform: scale(.85); opacity: 0;} to { transform: scale(1); opacity: 1;} }

/* ===== Small helpers ===== */
.center { text-align: center; }
.mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.12rem; color: var(--slate); }
.divider {
  height: 6px;
  background: linear-gradient(90deg, var(--green-flag), var(--gold-500), var(--blue-flag), var(--red-cross));
}
.pattern-strip {
  background: url('../img/pattern-shweshwe.jpg') repeat;
  height: 28px;
  opacity: .85;
}

/* checkmark list (used in why-khanyisa etc.) */
.check-list {
  list-style: none; padding-left: 0; margin: 14px 0;
}
.check-list li {
  position: relative; padding-left: 30px; margin-bottom: 10px;
  color: var(--slate); line-height: 1.7;
}
.check-list li::before {
  content: "\f058"; /* fa-circle-check */
  font-family: "Font Awesome 6 Free"; font-weight: 900;
  color: var(--teal-500);
  position: absolute; left: 0; top: 2px;
  font-size: 1rem;
}

/* numbered ordered list pretty */
.num-list { counter-reset: nl; list-style: none; padding-left: 0; }
.num-list li {
  position: relative; padding-left: 46px; margin-bottom: 16px;
  color: var(--slate); line-height: 1.7;
}
.num-list li::before {
  counter-increment: nl;
  content: counter(nl);
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold-500); color: var(--teal-900);
  font-family: var(--font-head); font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
}

/* responsive map wrap */
.map-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px dashed var(--gold-300);
  text-align: center;
  color: var(--slate);
}

/* fee table */
.fee-table {
  width: 100%; border-collapse: collapse; margin: 14px 0;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.fee-table thead { background: var(--teal-900); color: var(--gold-300); }
.fee-table th, .fee-table td { padding: 12px 14px; }
.fee-table th { text-align: left; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.fee-table tbody tr { border-top: 1px solid var(--cream); }
.fee-table tbody tr:hover { background: rgba(224,165,42,.06); }
.fee-table td.amt { text-align: right; font-weight: 600; color: var(--teal-900); font-family: var(--font-head); }

/* eyebrow inline variant */
.eyebrow-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-700);
  letter-spacing: .2em;
  font-size: .8rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow-inline i { color: var(--gold-500); }
