/* ─── RESET & BASE ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #F8FAFC;
  color: #1B3A5C;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ─── BRAND TOKENS ──────────────────────────────────────────────── */
:root {
  --navy: #1B3A5C;
  --teal: #065F46;
  --teal-mid: #0d9488;
  --action-blue: #2563EB;
  --soft-white: #F8FAFC;
  --warm-grey: #64748B;
  --light-grey: #E2E8F0;
  --success: #10B981;
  --whatsapp: #25D366;
  --radius-card: 22px;
  --radius-pill: 999px;
  --shadow-soft: 0 2px 16px rgba(27, 58, 92, 0.07);
  --shadow-md: 0 8px 36px rgba(27, 58, 92, 0.13);
  --shadow-lg: 0 20px 60px rgba(27, 58, 92, 0.16);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────────── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* ─── UTILITIES ──────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}

.section-sub {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.75;
  max-width: 560px;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

.text-center .section-label {
  justify-content: center;
}

/* fade-in on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes live-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .2;
  }
}

@keyframes wp-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

@keyframes icon-bounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.18);
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 24px rgba(37, 211, 102, .3), 0 8px 32px rgba(0, 0, 0, .2);
  }

  50% {
    box-shadow: 0 0 48px rgba(37, 211, 102, .65), 0 8px 32px rgba(0, 0, 0, .2);
  }
}

@keyframes float-y {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: live-blink 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.live-dot-green {
  background: var(--success);
}

/* ─── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--soft-white);
}

::-webkit-scrollbar-thumb {
  background: var(--light-grey);
  border-radius: 999px;
}

/* ══════════════════════════════════════════════════════════════════
   1. NAVBAR
══════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--light-grey);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.drawer-logo-img {
  height: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--warm-grey);
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost-teal {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  transition: background .2s, color .2s;
}

.btn-ghost-teal:hover {
  background: var(--teal);
  color: #fff;
}

.btn-teal {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: var(--radius-pill);
  padding: 9px 22px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 4px 14px rgba(6, 95, 70, .25);
}

.btn-teal:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-card);
  padding: 14px 28px;
  font-size: 15px;
  animation: wp-pulse 2.2s ease-out infinite;
  transition: background .2s, transform .2s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: #1fbe5a;
  transform: translateY(-2px);
}

.btn-whatsapp .wp-icon {
  animation: icon-bounce 1.8s ease-in-out infinite;
  font-size: 20px;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  border-radius: var(--radius-card);
  padding: 13px 28px;
  font-size: 15px;
  transition: background .2s, color .2s, transform .2s;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

/* hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}

.nav-drawer.open {
  display: block;
}

.drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 48px rgba(0, 0, 0, .15);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22, .68, 0, 1.2);
}

.nav-drawer.open .drawer-panel {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--light-grey);
}

.drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-grey);
  transition: background .2s;
}

.drawer-close:hover {
  background: #F1F5F9;
}

.drawer-nav {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.drawer-nav a {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
  display: block;
  transition: color .2s;
}

.drawer-nav a:hover {
  color: var(--teal);
}

.drawer-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════════════
   2. HERO
══════════════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 108px 0 72px;
  display: flex;
  align-items: center;
  position: relative;
  background: #FAFBFF;
  overflow: hidden;
}

/* Soft ambient blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 95, 70, .07) 0%, transparent 65%);
  top: -15%;
  right: -5%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .05) 0%, transparent 65%);
  bottom: -10%;
  left: 5%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-soft);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.2vw, 62px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px;
  color: var(--warm-grey);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-grey);
}

.trust-item .check {
  color: var(--success);
  font-size: 15px;
  font-weight: 700;
}

/* ── Hero Visual (doctor image) ───────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: float-y 6s ease-in-out infinite;
}

/* Background glow blob */
.hero-img-blob {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 55% 45%, rgba(6, 95, 70, .16) 0%, rgba(37, 99, 235, .07) 50%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}

/* Decorative offset ring behind the frame */
.hero-img-ring {
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  border: 2px solid rgba(6, 95, 70, .12);
  transform: rotate(-4deg) scale(1.06);
  z-index: 0;
  pointer-events: none;
}

/* Main image frame */
.hero-img-frame {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  overflow: hidden;
  width: 100%;
  max-width: 370px;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .9),
    0 0 0 5px rgba(6, 95, 70, .1),
    var(--shadow-lg);
  background: linear-gradient(135deg, #E8F5EE, #EFF4FF);
}

.hero-doctor-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  vertical-align: bottom;
}

/* "Available now" badge overlaid on image */
.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 20px 18px;
  background: linear-gradient(to top, rgba(27, 58, 92, .72) 0%, transparent 100%);
}

.hero-img-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* floating chips */
.chip {
  position: absolute;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--light-grey);
  border-radius: 16px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.chip-top {
  top: -8px;
  right: 8px;
}

.chip-bottom {
  bottom: -8px;
  left: 8px;
  color: var(--teal);
}

/* ══════════════════════════════════════════════════════════════════
   3. TRUST BAR
══════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(135deg, #0f2a44 0%, #1B3A5C 50%, #0d3d2f 100%);
  padding: 52px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.trust-stat:last-child {
  border-right: none;
}

.trust-stat-num {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.trust-stat-lbl {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .5);
}

/* ══════════════════════════════════════════════════════════════════
   4. HOW IT WORKS
══════════════════════════════════════════════════════════════════ */
.how-it-works {
  background: var(--soft-white);
  padding: 88px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 56px;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 32px);
  right: calc(16.67% + 32px);
  height: 0;
  border-top: 2px dashed var(--light-grey);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-icon-wrap {
  position: relative;
  margin-bottom: 24px;
}

.step-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8F5EE, #F0FDF4);
  border: 2px solid rgba(6, 95, 70, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-soft);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.step:hover .step-icon-circle {
  border-color: var(--teal);
  box-shadow: 0 0 0 6px rgba(6, 95, 70, .08), var(--shadow-md);
  transform: scale(1.08);
}

.step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(6, 95, 70, .3);
}

.step-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 24px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s, transform .3s;
  width: 100%;
}

.step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.7;
}

.how-cta {
  text-align: center;
  margin-top: 52px;
}

/* ══════════════════════════════════════════════════════════════════
   5. SERVICES
══════════════════════════════════════════════════════════════════ */
.services {
  background: #fff;
  padding: 88px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.service-card:hover {
  border-color: rgba(6, 95, 70, .2);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8F5EE, #F0FDF4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: background .3s, transform .3s;
}

.service-card:hover .service-icon {
  background: var(--teal);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13px;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════
   6. DOCTOR PROFILES
══════════════════════════════════════════════════════════════════ */
.doctor-profiles {
  background: var(--soft-white);
  padding: 88px 0;
  overflow: hidden;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.profile-card {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}

.profile-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.profile-band {
  height: 5px;
  width: 100%;
}

.profile-body {
  padding: 22px;
}

.profile-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.profile-avatar {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 3px;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  color: var(--success);
  background: #F0FDF4;
  border: 1px solid rgba(16, 185, 129, .25);
  border-radius: 99px;
  padding: 2px 8px;
  white-space: nowrap;
}

.profile-specialty {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 2px;
}

.profile-qual {
  font-size: 11px;
  color: #94A3B8;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.pstat {
  background: var(--soft-white);
  border: 1px solid var(--light-grey);
  border-radius: 14px;
  padding: 8px 6px;
  text-align: center;
  transition: background .2s;
}

.profile-card:hover .pstat {
  background: #F0FDF4;
}

.pstat-icon {
  font-size: 12px;
  margin-bottom: 4px;
}

.pstat-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.pstat-lbl {
  font-size: 10px;
  color: #94A3B8;
  display: block;
}

.stars {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}

.stars svg {
  width: 13px;
  height: 13px;
}

.star-filled {
  fill: #FACC15;
  color: #FACC15;
}

.star-empty {
  fill: #E2E8F0;
  color: #E2E8F0;
}

.stars-label {
  font-size: 12px;
  color: var(--warm-grey);
  margin-left: 6px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  font-size: 11px;
  font-weight: 500;
  color: var(--warm-grey);
  background: #F1F5F9;
  border-radius: 99px;
  padding: 4px 10px;
  transition: background .2s, color .2s;
}

.profile-card:hover .tag {
  background: #E8F5EE;
  color: var(--teal);
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 500;
}

.availability.avail {
  background: #F0FDF4;
  border: 1px solid rgba(16, 185, 129, .2);
  color: var(--teal);
}

.availability.busy {
  background: #FEF2F2;
  border: 1px solid rgba(248, 113, 113, .2);
  color: #EF4444;
}

.avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.avail-dot.on {
  background: var(--success);
  animation: live-blink 1.5s ease-in-out infinite;
}

.avail-dot.off {
  background: #F87171;
}

.profiles-footnote {
  text-align: center;
  margin-top: 36px;
  font-size: 13px;
  color: #94A3B8;
}

/* ══════════════════════════════════════════════════════════════════
   7. WHY LYNCDOC
══════════════════════════════════════════════════════════════════ */
.why-section {
  background: #F0FDF4;
  padding: 88px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left .section-label {
  display: inline-flex;
  margin-bottom: 14px;
}

.why-left h2 {
  margin-bottom: 20px;
}

.why-left p {
  font-size: 15px;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: 28px;
}

.pull-quote {
  background: #fff;
  border-radius: var(--radius-card);
  border-left: 4px solid var(--teal);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.pull-quote .quote-mark {
  font-size: 44px;
  color: rgba(6, 95, 70, .2);
  line-height: 1;
  margin-bottom: 8px;
  font-family: Georgia, serif;
}

.pull-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}

.pull-quote cite {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal);
  font-style: normal;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-feat {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(6, 95, 70, .1);
  box-shadow: var(--shadow-soft);
  transition: box-shadow .3s, transform .3s;
}

.why-feat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E8F5EE, #F0FDF4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
  transition: background .3s;
}

.why-feat:hover .why-feat-icon {
  background: var(--teal);
}

.why-feat h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35;
}

.why-feat p {
  font-size: 12px;
  color: var(--warm-grey);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════
   8. TESTIMONIALS
══════════════════════════════════════════════════════════════════ */
.testimonials {
  background: #fff;
  padding: 88px 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 26px;
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testi-stars svg {
  width: 15px;
  height: 15px;
  fill: #FACC15;
  color: #FACC15;
}

.testi-quote {
  font-size: 14px;
  font-style: italic;
  color: var(--warm-grey);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 20px;
}

.testi-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

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

.testi-loc {
  font-size: 11px;
  color: var(--warm-grey);
}

.testi-service {
  display: inline-block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  background: #F0FDF4;
  border-radius: 99px;
  padding: 2px 8px;
}

/* ══════════════════════════════════════════════════════════════════
   9. TRUST LOGOS
══════════════════════════════════════════════════════════════════ */
.trust-logos {
  background: var(--soft-white);
  padding: 52px 0;
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
}

.trust-logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--warm-grey);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.logo-box {
  width: 140px;
  height: 56px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94A3B8;
  transition: border-color .2s, box-shadow .2s;
  cursor: default;
}

.logo-box:hover {
  border-color: rgba(6, 95, 70, .2);
  box-shadow: var(--shadow-soft);
}

/* ══════════════════════════════════════════════════════════════════
   10. DOCTOR ENROLMENT
══════════════════════════════════════════════════════════════════ */
.enrolment {
  background: var(--navy);
  padding: 88px 0;
}

.enrolment-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, .3);
  background: rgba(16, 185, 129, .1);
  border-radius: 99px;
  padding: 6px 16px;
  margin-bottom: 16px;
}

.enrolment h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.enrolment-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.75;
}

.enrolment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.benefit-card {
  background: rgba(255, 255, 255, .07);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background .3s, transform .3s;
}

.benefit-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(6, 95, 70, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.65;
}

.enrol-cta-card {
  background: #fff;
  border-radius: 26px;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .3);
}

.enrol-cta-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.enrol-cta-card>p {
  font-size: 14px;
  color: var(--warm-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}

.enrol-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.btn-enrol-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  padding: 16px 24px;
  transition: opacity .2s, transform .2s;
  box-shadow: 0 6px 20px rgba(6, 95, 70, .3);
}

.btn-enrol-primary:hover {
  opacity: .9;
  transform: translateY(-2px);
}

.btn-enrol-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 14px;
  border-radius: 16px;
  padding: 15px 24px;
  transition: background .2s, color .2s;
}

.btn-enrol-outline:hover {
  background: var(--teal);
  color: #fff;
}

.enrol-requirements {
  background: var(--soft-white);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.enrol-req-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--warm-grey);
  margin-bottom: 10px;
}

.req-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.req-tag {
  font-size: 12px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--light-grey);
  border-radius: 99px;
  padding: 4px 12px;
  font-weight: 500;
}

.enrol-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--warm-grey);
}

.enrol-trust .check {
  color: var(--success);
}

/* ══════════════════════════════════════════════════════════════════
   11. FAQ
══════════════════════════════════════════════════════════════════ */
.faq {
  background: var(--soft-white);
  padding: 88px 0;
}

.faq-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.faq-list {
  background: #fff;
  border-radius: var(--radius-card);
  border: 1px solid var(--light-grey);
  box-shadow: var(--shadow-soft);
  padding: 0 28px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--light-grey);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  background: none;
  cursor: pointer;
  transition: color .2s;
}

.faq-q:hover {
  color: var(--teal);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform .25s;
  color: var(--warm-grey);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal);
}

.faq-a {
  font-size: 14px;
  color: var(--warm-grey);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding-bottom .3s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ══════════════════════════════════════════════════════════════════
   12. FINAL CTA
══════════════════════════════════════════════════════════════════ */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(140deg, #065F46 0%, #1B3A5C 55%, #0f2340 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, .14), transparent 65%);
  top: -25%;
  right: -8%;
  pointer-events: none;
}

.final-cta::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, .1), transparent 65%);
  bottom: -18%;
  left: -4%;
  pointer-events: none;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.btn-whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border-radius: 20px;
  padding: 18px 44px;
  animation: glow 2.5s ease-in-out infinite, wp-pulse 2.2s ease-out infinite;
  transition: background .2s, transform .2s;
  box-shadow: 0 8px 36px rgba(0, 0, 0, .25);
}

.btn-whatsapp-cta:hover {
  background: #1fbe5a;
  transform: translateY(-3px);
}

.btn-whatsapp-cta .wp-icon {
  animation: icon-bounce 1.8s ease-in-out infinite;
  font-size: 24px;
}

.final-cta-note {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, .4);
}

/* ══════════════════════════════════════════════════════════════════
   13. FOOTER
══════════════════════════════════════════════════════════════════ */
.footer {
  background: #0d1f35;
  color: #fff;
}

.footer-top {
  padding: 56px 0 40px;
}

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

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 4px;
}

.footer-city {
  font-size: 13px;
  color: rgba(255, 255, 255, .25);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact-text {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 16px;
  line-height: 1.5;
}

.btn-wa-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 99px;
  padding: 10px 20px;
  transition: background .2s, transform .2s;
}

.btn-wa-footer:hover {
  background: #1fbe5a;
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .22);
}

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  .services-grid,
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero {
    padding: 96px 0 56px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, .12);
  }

  .trust-stat:nth-child(3),
  .trust-stat:nth-child(4) {
    border-bottom: none;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step {
    align-items: flex-start;
    text-align: left;
  }

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

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

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

  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-features {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .testi-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }

  .testi-card {
    flex-shrink: 0;
    width: 80vw;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .why-features {
    grid-template-columns: 1fr;
  }

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

  .hero-ctas {
    flex-direction: column;
  }

  .btn-whatsapp,
  .btn-outline-navy {
    width: 100%;
    justify-content: center;
  }

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