/* ============================================================
   NTLF MEDICAL – About Page Styles (style-about.css)
   ============================================================ */

/* ── Variables (same palette as homepage) ───────────────────── */
:root {
  --navy: #0a2540;
  --blue: #1a56db;
  --blue-dark: #1341b4;
  --blue-light: #e8f0fe;
  --green: #0d9e6e;
  --green-light: #e6f9f2;
  --amber: #f59e0b;
  --red: #e53e3e;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --text: #1e293b;
  --text-muted: #475569;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --header-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-theme="dark"] {
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --white: #0f172a;
  --gray-50: #1e293b;
  --gray-100: #334155;
  --gray-200: #475569;
  --gray-600: #cbd5e1;
  --gray-800: #f1f5f9;
  --blue-light: #1e3a5f;
  --green-light: #0d3a2a;
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition:
    background var(--transition),
    color var(--transition);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shared buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 86, 219, 0.45);
}
.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}
.btn-wa-cta {
  background: #25d366;
  color: #fff;
}
.btn-wa-cta:hover {
  background: #1da851;
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: var(--r-sm);
  box-shadow: 0 2px 8px rgba(26, 86, 219, 0.25);
}
.btn-nav:hover {
  background: var(--blue-dark);
}

/* ── Loader ─────────────────────────────────────────────────── */
.loader-overlay {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.5s,
    visibility 0.5s;
}
.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-content {
  text-align: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.loader-logo .logo-ntlf {
  color: #fff;
}
.loader-logo .logo-medical {
  color: var(--green);
  margin-left: 4px;
}
.loader-bar {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--r-full);
  overflow: hidden;
  margin: 0 auto;
}
.loader-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: var(--r-full);
  animation: loadFill 1.6s ease forwards;
}
@keyframes loadFill {
  to {
    width: 100%;
  }
}

/* ── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9900;
  background: var(--gray-800);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.success {
  background: var(--green);
}
.toast.error {
  background: var(--red);
}

/* ── Dark Toggle / Scroll Top ───────────────────────────────── */
.dark-toggle {
  position: fixed;
  top: calc(var(--header-h)+16px);
  right: 20px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--bg);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}
.dark-toggle:hover {
  transform: scale(1.12);
}
[data-theme="dark"] .sun-icon {
  display: none;
}
[data-theme="light"] .moon-icon,
body:not([data-theme]) .moon-icon {
  display: none;
}
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 800;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--blue);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
}
.scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}
.scroll-top:hover {
  transform: translateY(-3px);
  background: var(--blue-dark);
}

/* ── Navigation ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  transition: all var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}
.logo-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.logo-lines {
  position: absolute;
  inset: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}
.logo-lines span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: var(--r-full);
}
.logo-lines span:nth-child(1) {
  width: 100%;
}
.logo-lines span:nth-child(2) {
  width: 70%;
}
.logo-lines span:nth-child(3) {
  width: 45%;
}
.logo-mark.small {
  width: 34px;
  height: 34px;
}
.logo-mark.small .logo-circle {
  width: 34px;
  height: 34px;
}
.logo-mark.small .logo-lines {
  inset: 8px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-ntlf {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--navy);
}
.logo-medical {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.6rem;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
[data-theme="dark"] .logo-ntlf {
  color: #fff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: var(--r-sm);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: var(--blue-light);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--gray-100);
  font-size: 1.1rem;
  justify-content: center;
  transition: all var(--transition);
}
.nav-cart:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--blue);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: var(--r-full);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: var(--r-full);
  transition: all var(--transition);
}

/* ── Shared Sections ────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--r-full);
  font-size: 0.77rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
[data-theme="dark"] .section-title {
  color: var(--gray-800);
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 72px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #080e20 0%, #0a2540 40%, #0d3561 80%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phb-blob {
  position: absolute;
  border-radius: var(--r-full);
  filter: blur(80px);
  opacity: 0.2;
}
.phb-1 {
  width: 500px;
  height: 500px;
  background: var(--blue);
  top: -200px;
  right: -100px;
  animation: blobF 9s ease-in-out infinite;
}
.phb-2 {
  width: 350px;
  height: 350px;
  background: var(--green);
  bottom: -100px;
  left: -80px;
  animation: blobF 11s ease-in-out infinite reverse;
}
@keyframes blobF {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(15px, -20px);
  }
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.9);
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.page-hero-content p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1rem;
  line-height: 1.75;
}
.page-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.phs-item {
  text-align: center;
}
.phs-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.phs-label {
  display: block;
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.phs-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   STORY SECTION
════════════════════════════════════════════════════════════ */
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text .section-title {
  text-align: left;
}
.story-text .section-label {
  display: inline-block;
}
.story-text p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.story-text p strong {
  color: var(--text);
  font-weight: 700;
}
.story-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.sh-item {
  text-align: center;
}
.sh-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}
.sh-label {
  font-size: 0.77rem;
  color: var(--text-muted);
  font-weight: 500;
}
/* Visual side */
.story-visual {
  position: relative;
}
.img-ph {
  background: linear-gradient(135deg, var(--blue-light), var(--green-light));
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed rgba(26, 86, 219, 0.3);
  color: var(--blue);
  font-family: var(--font-display);
  text-align: center;
  padding: 32px;
}
.img-ph.large {
  height: 380px;
}
.img-ph-cross {
  font-size: 3.5rem;
  font-weight: 200;
  opacity: 0.3;
  line-height: 1;
}
.img-ph p {
  font-weight: 700;
  font-size: 1rem;
}
.img-ph small {
  font-size: 0.78rem;
  opacity: 0.6;
}
.story-badge,
.story-badge-2 {
  position: absolute;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-xl);
  z-index: 2;
}
.story-badge {
  bottom: -20px;
  right: -20px;
}
.story-badge-2 {
  top: -16px;
  left: -16px;
}
.sb-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.story-badge strong,
.story-badge-2 strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
}
[data-theme="dark"] .story-badge strong,
[data-theme="dark"] .story-badge-2 strong {
  color: var(--gray-800);
}
.story-badge small,
.story-badge-2 small {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════════
   MISSION / VISION / VALUES
════════════════════════════════════════════════════════════ */
.mvv-section {
  background: var(--bg-alt);
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mvv-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.mvv-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}
.mission-accent {
  background: linear-gradient(90deg, var(--blue), #7c3aed);
}
.vision-accent {
  background: linear-gradient(90deg, var(--green), var(--blue));
}
.values-accent {
  background: linear-gradient(90deg, var(--amber), var(--red));
}
.mvv-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  box-shadow: 0 6px 18px rgba(26, 86, 219, 0.28);
}
.vision-card .mvv-icon {
  background: linear-gradient(135deg, var(--green), #0a7a52);
  box-shadow: 0 6px 18px rgba(13, 158, 110, 0.28);
}
.values-card .mvv-icon {
  background: linear-gradient(135deg, var(--amber), #d97706);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.28);
}
.mvv-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.05rem;
}
[data-theme="dark"] .mvv-card h3 {
  color: var(--gray-800);
}
.mvv-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9rem;
}
.values-list {
  margin: 0;
}
.values-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
  padding: 7px 0 7px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  line-height: 1.5;
}
.values-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════
   SUPPLY GRID
════════════════════════════════════════════════════════════ */
.supply-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.supply-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.supply-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.supply-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  box-shadow: 0 5px 14px rgba(26, 86, 219, 0.25);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.supply-card:hover .supply-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(26, 86, 219, 0.35);
}
.supply-card:nth-child(2) .supply-icon {
  background: linear-gradient(135deg, var(--green), #0a7a52);
}
.supply-card:nth-child(3) .supply-icon {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.supply-card:nth-child(4) .supply-icon {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}
.supply-card:nth-child(5) .supply-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.supply-card:nth-child(6) .supply-icon {
  background: linear-gradient(135deg, var(--amber), #d97706);
}
.supply-card:nth-child(7) .supply-icon {
  background: linear-gradient(135deg, var(--green), #0a7a52);
}
.supply-card:nth-child(8) .supply-icon {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.supply-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
[data-theme="dark"] .supply-card h4 {
  color: var(--gray-800);
}
.supply-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 14px;
}
.supply-link {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--blue);
}
.supply-card:hover .supply-link {
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   TEAM SECTION
════════════════════════════════════════════════════════════ */
.team-section {
  background: var(--bg-alt);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  margin: 0 auto 20px;
}
.photo-ph {
  width: 80px;
  height: 80px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.3);
}
.team-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
}
[data-theme="dark"] .team-card h4 {
  color: var(--gray-800);
}
.team-role {
  font-size: 0.78rem;
  color: var(--blue);
  font-weight: 700;
  font-family: var(--font-display);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ADVANTAGES SECTION
════════════════════════════════════════════════════════════ */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
}
.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.adv-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}
[data-theme="dark"] .adv-num {
  color: rgba(26, 86, 219, 0.2);
}
.adv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue), #1e40af);
  color: #fff;
  box-shadow: 0 5px 14px rgba(26, 86, 219, 0.25);
}
.adv-card:nth-child(2) .adv-icon {
  background: linear-gradient(135deg, var(--green), #0a7a52);
}
.adv-card:nth-child(3) .adv-icon {
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
}
.adv-card:nth-child(4) .adv-icon {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}
.adv-card:nth-child(5) .adv-icon {
  background: linear-gradient(135deg, #0891b2, #0e7490);
}
.adv-icon.lg {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
  border-radius: 16px;
}
.adv-icon.lg {
  font-size: 3rem;
}
.adv-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.02rem;
}
[data-theme="dark"] .adv-card h4 {
  color: var(--gray-800);
}
.adv-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.adv-highlight {
  background: linear-gradient(145deg, var(--navy), #0d3561);
  border-color: transparent;
  color: #fff;
}
.adv-highlight h4 {
  color: #fff;
}
.adv-highlight p {
  color: rgba(255, 255, 255, 0.72);
}
.adv-highlight .adv-num {
  color: rgba(255, 255, 255, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════════════════ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}
.faq-item.open {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.06);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
  gap: 12px;
}
[data-theme="dark"] .faq-q {
  color: var(--gray-800);
}
.faq-q:hover {
  background: var(--bg-alt);
}
.faq-arrow {
  color: var(--blue);
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition);
  display: flex;
  align-items: center;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a {
  max-height: 260px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-cta {
  padding: 14px 28px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo .logo-ntlf {
  color: #fff;
}
.footer-logo .logo-medical {
  color: var(--green);
}
.footer-logo .logo-circle {
  background: linear-gradient(135deg, var(--blue), var(--green));
}
.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.social-link.wa:hover {
  background: #25d366;
}
.social-link i {
  font-size: 0.9rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover {
  color: #fff;
}
.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.52);
  transition: color var(--transition);
}
.footer-contact li a:hover {
  color: var(--green);
}
.fc-icon {
  flex-shrink: 0;
  margin-top: 2px;
  width: 18px;
  text-align: center;
  color: var(--green);
  font-size: 0.88rem;
}
.footer-notice {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: rgba(229, 62, 62, 0.12);
  border: 1px solid rgba(229, 62, 62, 0.25);
  color: #fca5a5;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.83rem;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.83rem;
  transition: color var(--transition);
}
.footer-legal a:hover {
  color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-inner {
    grid-template-columns: 1fr;
  }
  .story-visual {
    display: none;
  }
  .supply-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--green);
    gap: 2px;
    z-index: 400;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .supply-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .story-highlights {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-hero-stats {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .supply-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .story-highlights {
    grid-template-columns: 1fr 1fr;
  }
  .phs-divider {
    display: none;
  }
}

/* UPDATED HERO SECTION — background image with dark overlay */
.page-hero {
  background-image: url("https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80&auto=format&fit=crop") !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* NEW STYLES ADDED — pseudo-element overlay keeps text readable */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(8, 14, 32, 0.9) 0%,
    rgba(10, 37, 64, 0.87) 40%,
    rgba(13, 53, 97, 0.85) 80%
  );
  z-index: 1;
}
.page-hero-bg,
.page-hero-content,
.page-hero__container {
  position: relative;
  z-index: 2;
}
