/*
Theme Name: Physiotherapist Dr. Muhammad Jawad Alam
Theme URI: https://drjawadphysio.pk
Author: Dr. Muhammad Jawad Alam
Author URI: https://drjawadphysio.pk
Description: Official WordPress theme for Physiotherapist Dr. Muhammad Jawad Alam's clinic in Lahore — appointment booking, referral system, AI health assistant, and full SEO optimization.
Version: 1.2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dr-jawad-physio
Tags: healthcare, physiotherapy, medical, appointment, one-page
*/

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  /* Brand palette */
  --teal-950: #021f18;
  --teal-900: #04342C;
  --teal-800: #085041;
  --teal-700: #0F6E56;
  --teal-600: #179068;
  --teal-500: #1D9E75;
  --teal-400: #32B888;
  --teal-300: #5DCAA5;
  --teal-200: #8FDFC5;
  --teal-100: #9FE1CB;
  --teal-50:  #E1F5EE;
  --amber-500: #BA7517;
  --amber-400: #EF9F27;
  --amber-50:  #FAEEDA;
  --red-50:    #FCEBEB;
  --red-600:   #A32D2D;
  --red-200:   #F7C1C1;
  --gray-950: #111110;
  --gray-900: #1a1a1a;
  --gray-800: #2C2C2A;
  --gray-700: #3E3D3A;
  --gray-600: #5F5E5A;
  --gray-400: #888780;
  --gray-300: #B5B3AC;
  --gray-200: #D3D1C7;
  --gray-100: #F1EFE8;
  --gray-50:  #F8F7F4;
  --white:    #ffffff;
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Spacing scale */
  --space-xs:  4px;
  --space-sm:  8px;
  --space-md:  16px;
  --space-lg:  24px;
  --space-xl:  40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(4,52,44,.07), 0 1px 2px rgba(4,52,44,.04);
  --shadow-md:  0 4px 16px rgba(4,52,44,.10), 0 2px 6px rgba(4,52,44,.05);
  --shadow-lg:  0 8px 32px rgba(4,52,44,.13), 0 4px 12px rgba(4,52,44,.06);
  --shadow-xl:  0 20px 60px rgba(4,52,44,.16), 0 8px 20px rgba(4,52,44,.08);
  /* Radii */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-pill:50px;
  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --transition: .22s var(--ease);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════ */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--gray-900);
  font-weight: 700;
}
h1 { font-size: clamp(38px, 5.5vw, 60px); }
h2 { font-size: clamp(28px, 3.8vw, 44px); }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
p  { line-height: 1.75; color: var(--gray-600); }
a  { color: var(--teal-500); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-700); }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-500);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--teal-400);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,158,117,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--teal-300);
  color: var(--teal-300);
  background: rgba(93,202,165,.06);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--teal-600);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  border: 1.5px solid var(--teal-200);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-ghost:hover {
  background: var(--teal-50);
  border-color: var(--teal-300);
  color: var(--teal-700);
}

/* ═══════════════════════════════════════════
   SECTION UTILITIES
═══════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-700);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  border: 1px solid var(--teal-100);
}
.section-heading  { margin-bottom: 16px; }
.section-subtext  { max-width: 580px; font-size: 17px; line-height: 1.75; }
.section-header   { margin-bottom: 56px; }
.section-header-centered { text-align: center; margin-bottom: 56px; }
.section-header-centered .section-subtext { margin: 0 auto; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(4,52,44,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(4,52,44,.4);
}

/* ── Site logo / identity block ──────────────── */
.site-logo {
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
  max-width: 400px;
}

/* Text credentials */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}
.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.logo-cred {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.logo-cred-1 {
  font-size: 10.5px;
  color: var(--teal-200);
  letter-spacing: .01em;
}
.logo-cred-2 {
  font-size: 10px;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.logo-cred-3 {
  font-size: 9.5px;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
}

/* remove old photo-wrap rules if present */
.logo-photo-wrap { display: none; }

.main-nav { display: flex; align-items: center; }
.main-nav ul {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255,255,255,.75);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .01em;
  transition: color var(--transition);
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.main-nav a:hover {
  color: var(--teal-300);
  border-bottom-color: var(--teal-400);
}
.main-nav .btn-nav {
  background: var(--teal-500);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 14px;
  border-bottom: none !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.main-nav .btn-nav:hover {
  background: var(--teal-400) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 16px rgba(29,158,117,.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
  display: block;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  padding: 110px 5% 72px;
  background: linear-gradient(140deg, var(--teal-900) 0%, #0a3d2e 45%, #163e30 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute; bottom: -160px; left: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,158,117,.18);
  border: 1px solid rgba(93,202,165,.35);
  color: var(--teal-300);
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
  font-weight: 600;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
  animation: blink-dot 2s infinite;
}
@keyframes blink-dot {
  0%,100% { opacity:1; } 50% { opacity:.3; }
}

.hero-section h1 {
  color: var(--white);
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero-section h1 em {
  font-style: italic;
  color: var(--teal-300);
}

.hero-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--teal-300);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
  font-weight: 400;
}

/* Hero booking card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.15);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.hero-card-sub { color: rgba(255,255,255,.5); font-size: 13px; margin-bottom: 28px; }

.hero-appt-form  { display: flex; flex-direction: column; gap: 12px; }
.hero-appt-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-appt-form input,
.hero-appt-form select {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.hero-appt-form select option { background: var(--teal-900); color: var(--white); }
.hero-appt-form input::placeholder { color: rgba(255,255,255,.38); }
.hero-appt-form input:focus,
.hero-appt-form select:focus {
  border-color: var(--teal-300);
  background: rgba(255,255,255,.13);
}
.hero-appt-form .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* ═══════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════ */
.trust-bar {
  background: var(--teal-50);
  padding: 30px 5%;
  border-bottom: 1px solid var(--teal-100);
}
.trust-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-icon {
  width: 44px; height: 44px;
  background: var(--teal-500);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(29,158,117,.3);
}
.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-900);
  font-family: var(--font-body);
}
.trust-text span { font-size: 12px; color: var(--teal-700); }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about-section { padding: var(--space-3xl) 5%; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;   /* narrower photo column */
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
  padding-bottom: 20px;
  padding-right: 20px;
  max-width: 300px;          /* cap photo width */
  justify-self: center;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  object-position: center top;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.about-img-wrap:hover img {
  transform: scale(1.012);
  box-shadow: 0 28px 72px rgba(4,52,44,.22), 0 8px 24px rgba(0,0,0,.12);
}
.about-img-placeholder {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--teal-50) 0%, var(--teal-100) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 88px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--teal-100);
}
/* decorative corner accent */
.about-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60%; height: 60%;
  border: 3px solid var(--teal-100);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: var(--teal-900);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(93,202,165,.2);
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--teal-300);
  line-height: 1;
}
.about-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: .12em; opacity: .7; }

.credentials { display: flex; flex-direction: column; gap: 12px; margin: 30px 0; }
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--gray-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--teal-500);
  transition: background var(--transition), box-shadow var(--transition);
}
.credential-item:hover {
  background: var(--teal-50);
  box-shadow: var(--shadow-sm);
}
.credential-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.credential-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.credential-text span { font-size: 13px; color: var(--gray-600); }

/* ═══════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════ */
.services-section { padding: var(--space-3xl) 5%; background: var(--gray-50); }
.services-inner   { max-width: 1220px; margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1.5px solid var(--gray-200);
  transition: all .3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,158,117,.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--teal-200);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 1; }

.service-icon {
  width: 54px; height: 54px;
  background: var(--teal-50);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
  border: 1px solid var(--teal-100);
}
.service-card:hover .service-icon {
  background: var(--teal-500);
  transform: scale(1.05);
}
.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--gray-900);
  line-height: 1.3;
}
.service-card p {
  font-size: 13.5px;
  margin-bottom: 18px;
  color: var(--gray-600);
  line-height: 1.65;
}
.procedure-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.procedure-tag {
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  border: 1px solid var(--teal-100);
  font-family: var(--font-body);
}
.service-card-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--teal-500);
  font-weight: 500;
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .25s var(--ease);
}
.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   REFERRAL
═══════════════════════════════════════════ */
.referral-section { padding: var(--space-3xl) 5%; background: var(--white); }
.referral-inner   { max-width: 1100px; margin: 0 auto; }
.referral-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.referral-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all .25s var(--ease);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.referral-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}
.referral-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.referral-card:hover::after { transform: scaleX(1); }
.referral-num {
  font-family: var(--font-heading);
  font-size: 52px;
  color: var(--teal-100);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.referral-card h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.referral-card p  { font-size: 14px; margin-bottom: 24px; line-height: 1.7; }

/* Referral inline form */
.referral-form-wrap {
  margin-top: 56px;
  background: var(--gray-50);
  padding: 48px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
}
.referral-form-wrap h3 {
  font-size: 26px;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.referral-form-wrap > p { font-size: 15px; margin-bottom: 28px; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials-section { padding: var(--space-3xl) 5%; background: var(--gray-50); }
.testimonials-inner   { max-width: 1100px; margin: 0 auto; }
.testimonials-grid    { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-heading);
  font-size: 72px;
  color: var(--teal-50);
  line-height: 1;
  pointer-events: none;
}
.stars {
  color: var(--amber-400);
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.7;
  color: var(--gray-700);
}
.testimonial-author  { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  background: var(--teal-50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-700);
  flex-shrink: 0;
  border: 2px solid var(--teal-100);
}
.author-avatar.amber { background: var(--amber-50); color: var(--amber-500); border-color: #f0deb0; }
.testimonial-author strong {
  font-size: 13.5px;
  font-weight: 600;
  display: block;
  color: var(--gray-900);
  font-family: var(--font-body);
}
.testimonial-author span { font-size: 12px; color: var(--gray-400); }

/* ═══════════════════════════════════════════
   CONTACT / APPOINTMENT
═══════════════════════════════════════════ */
.contact-section {
  padding: var(--space-3xl) 5%;
  background: linear-gradient(140deg, var(--teal-900) 0%, #0a3d2e 100%);
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section::after {
  content: '';
  position: absolute; bottom: -160px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,.07) 0%, transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact-info .section-heading { color: var(--white); }
.contact-info .section-subtext { color: rgba(255,255,255,.6); }
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.contact-item  { display: flex; align-items: center; gap: 16px; }
.contact-dot {
  width: 46px; height: 46px;
  background: rgba(29,158,117,.18);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(93,202,165,.2);
  transition: background var(--transition);
}
.contact-item:hover .contact-dot { background: rgba(29,158,117,.3); }
.contact-item strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.contact-item span { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* Appointment form card */
.appt-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.appt-form-card h3 {
  font-size: 23px;
  margin-bottom: 6px;
  color: var(--gray-900);
}
.appt-form-card > p { font-size: 14px; margin-bottom: 28px; color: var(--gray-600); }
.appt-form { display: flex; flex-direction: column; gap: 14px; }
.appt-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.appt-form input,
.appt-form select,
.appt-form textarea {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  color: var(--gray-800);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.appt-form input:focus,
.appt-form select:focus,
.appt-form textarea:focus {
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29,158,117,.1);
}
.appt-form textarea { resize: vertical; min-height: 80px; }
.appt-form .btn-primary { width: 100%; justify-content: center; padding: 14px; }

/* Form notices */
.form-notice {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
  display: none;
  font-family: var(--font-body);
}
.form-notice.success {
  background: var(--teal-50);
  color: var(--teal-700);
  border: 1px solid var(--teal-100);
  display: block;
}
.form-notice.error {
  background: var(--red-50);
  color: var(--red-600);
  border: 1px solid var(--red-200);
  display: block;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--teal-950);
  color: rgba(255,255,255,.55);
  padding: 64px 5% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.footer-col p  { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,.5); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.footer-col ul li a {
  color: rgba(255,255,255,.5);
  font-size: 13.5px;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--teal-300); padding-left: 4px; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 19px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}
.footer-tagline {
  font-size: 12px;
  color: var(--teal-400);
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: var(--teal-400); }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS  (no overlap)
   Book Now → bottom LEFT
   Chatbot  → bottom RIGHT  (in chatbot.css)
═══════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  left: 28px;          /* ← moved to left */
  z-index: 998;
  background: var(--teal-500);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  box-shadow: 0 4px 22px rgba(29,158,117,.45);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,.15);
}
.floating-cta:hover {
  background: var(--teal-400);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29,158,117,.5);
}

/* ═══════════════════════════════════════════
   SINGLE SERVICE PAGE
═══════════════════════════════════════════ */
.service-single {
  padding: 120px 5% 80px;
  max-width: 1060px;
  margin: 0 auto;
}
.service-single h1 { margin-bottom: 20px; }
.breadcrumb {
  font-size: 13px;
  color: var(--gray-400);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--teal-500);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--teal-700); }
.breadcrumb .sep { color: var(--gray-300); }

.service-content h2 { font-size: 24px; margin: 32px 0 14px; }
.service-content p  { margin-bottom: 16px; }
.service-content ul { padding-left: 20px; margin-bottom: 16px; }
.service-content ul li { margin-bottom: 8px; color: var(--gray-600); }

/* ═══════════════════════════════════════════
   ARCHIVE PAGE
═══════════════════════════════════════════ */
.archive-main { padding: 120px 5% 80px; }
.archive-inner { max-width: 1220px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════ */
.sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); border:0;
}

/* ── Footer identity block ─────────────────── */
.footer-col-identity { grid-column: span 1; }
.footer-identity-text { display: flex; flex-direction: column; gap: 2px; margin-bottom: 4px; }
.footer-logo {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.2;
}
.footer-cred { display: block; font-family: var(--font-body); font-weight: 400; line-height: 1.5; }
.footer-cred-1 { font-size: 11.5px; color: var(--teal-200); }
.footer-cred-2 { font-size: 11px; color: rgba(255,255,255,.52); }
.footer-cred-3 { font-size: 10px; color: rgba(255,255,255,.33); letter-spacing: .03em; margin-top: 2px; }

/* unused photo rules hidden safely */
.footer-identity-block,
.footer-photo-wrap,
.footer-photo { display: none; }

/* ── Header credential responsive ─────────── */
@media (max-width: 1200px) { .logo-cred-3 { display: none; } }
@media (max-width: 1050px) { .logo-cred-2 { display: none; } }

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 960px
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-grid,
  .about-grid,
  .contact-inner  { grid-template-columns: 1fr; gap: 48px; }
  .hero-card      { display: none; }
  .referral-grid  { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .hamburger      { display: flex; }
  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--teal-900);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 199;
  }
  .main-nav.open  { display: flex; }
  .main-nav ul    { flex-direction: column; align-items: center; gap: 1.8rem; }
  .main-nav a     { font-size: 20px; }
  .about-img-wrap::before { display: none; }
  .about-badge { bottom: 0; right: 0; }
  .contact-inner { grid-template-columns: 1fr; }
  .service-single > div { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 600px
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  :root { --space-3xl: 64px; }
  section { padding: 64px 4%; }
  .footer-grid    { grid-template-columns: 1fr; }
  .referral-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid  { grid-template-columns: 1fr; }
  .appt-form .form-row,
  .hero-appt-form .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .referral-form-wrap { padding: 28px 20px; }
  .appt-form-card { padding: 28px 22px; }
  .floating-cta { bottom: 16px; left: 16px; padding: 12px 18px; font-size: 13px; }
}

/* ═══════════════════════════════════════════
   DIAGNOSIS · TREATMENT · PROGNOSIS
═══════════════════════════════════════════ */
.dtp-section {
  padding: 64px 5%;
  background: linear-gradient(135deg, var(--teal-900) 0%, #0c4a38 100%);
  position: relative;
  overflow: hidden;
}
.dtp-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235DCAA5' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.dtp-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.dtp-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-300);
  background: rgba(93,202,165,.12);
  border: 1px solid rgba(93,202,165,.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}
.dtp-heading {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}
.dtp-sub {
  color: rgba(255,255,255,.6);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 48px;
}
.dtp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.dtp-step {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.dtp-step:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
}
.dtp-step-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(255,255,255,.25);
  font-weight: 700;
}
.dtp-step-icon { font-size: 36px; margin-bottom: 16px; }
.dtp-step h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
}
.dtp-step p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.dtp-divider {
  font-size: 28px;
  color: var(--teal-400);
  align-self: center;
  padding: 0 8px;
  opacity: .6;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .dtp-steps { flex-direction: column; align-items: center; }
  .dtp-step  { max-width: 100%; width: 100%; }
  .dtp-divider { transform: rotate(90deg); padding: 4px 0; }
}

/* ═══════════════════════════════════════════
   ONLINE CONSULTATION SECTION
═══════════════════════════════════════════ */
.online-section {
  padding: var(--space-3xl) 5%;
  background: var(--teal-900);
  position: relative;
  overflow: hidden;
}
.online-section::before {
  content: '';
  position: absolute; top: -180px; right: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.14) 0%, transparent 70%);
  pointer-events: none;
}
.online-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Platform cards */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.platform-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: background var(--transition), transform var(--transition);
}
.platform-card:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-3px);
}
.platform-card-payment {
  background: rgba(29,158,117,.12);
  border-color: rgba(93,202,165,.25);
}
.platform-icon { font-size: 36px; margin-bottom: 14px; }
.platform-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}
.platform-card > p {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.platform-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.platform-zoom      { background: #2D8CFF; color: #fff; }
.platform-zoom:hover { background: #1a7aef; color: #fff; }
.platform-meet      { background: #fff; color: #1a73e8; }
.platform-meet:hover { background: #f0f4ff; color: #1a73e8; }
.platform-whatsapp  { background: #25D366; color: #fff; }
.platform-whatsapp:hover { background: #1db954; color: #fff; }
.platform-email     { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.platform-email:hover { background: rgba(255,255,255,.25); color: #fff; }

/* Fee grid */
.fee-grid { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; }
.fee-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}
.fee-label { font-size: 13px; color: rgba(255,255,255,.7); }
.fee-price { font-size: 15px; font-weight: 700; color: var(--teal-300); font-family: var(--font-heading); }
.payment-note { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 8px !important; line-height: 1.6; }

/* Online consult booking form */
.online-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-top: 8px;
}
.online-form-wrap h3 { font-size: 24px; margin-bottom: 6px; }
.online-form-wrap > p { font-size: 15px; margin-bottom: 28px; }
.form-upload-note {
  font-size: 13px;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-top: -4px;
}

@media (max-width: 900px) {
  .platform-grid { grid-template-columns: 1fr; }
  .online-form-wrap { padding: 30px 22px; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section { padding: var(--space-3xl) 5%; background: var(--white); }
.faq-inner   { max-width: 860px; margin: 0 auto; }

.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.faq-cat-btn {
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--teal-500);
  color: var(--white);
  border-color: var(--teal-500);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover,
.faq-item.open { border-color: var(--teal-300); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.4;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gray-50); }
.faq-item.open .faq-q { background: var(--teal-50); color: var(--teal-800); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--teal-500);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  padding: 0 22px;
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s var(--ease), padding .25s var(--ease);
}
.faq-a.visible {
  max-height: 500px;
  padding: 0 22px 20px;
}
.faq-a p { font-size: 14.5px; line-height: 1.75; color: var(--gray-600); margin-bottom: 10px; }
.faq-cat-label {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--teal-100);
}

/* ═══════════════════════════════════════════
   AI TOOLS SECTION
═══════════════════════════════════════════ */
.ai-tools-section { padding: var(--space-3xl) 5%; background: var(--gray-50); }
.ai-tools-inner   { max-width: 1100px; margin: 0 auto; }
.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.ai-tool-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 16px 20px;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.ai-tool-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.ai-tool-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--teal-200);
}
.ai-tool-card:hover::before { transform: scaleX(1); }
.ai-tool-logo {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: var(--gray-900);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.ai-tool-logo-claude     { background: #CC785C; }
.ai-tool-logo-gemini     { background: linear-gradient(135deg, #4285F4, #EA4335); }
.ai-tool-logo-copilot    { background: #0078D4; }
.ai-tool-logo-perplexity { background: #1FB8CD; }
.ai-tool-logo-meta       { background: #0668E1; }
.ai-tool-name  { font-size: 14px; font-weight: 600; color: var(--gray-900); font-family: var(--font-body); }
.ai-tool-maker { font-size: 11px; color: var(--gray-400); }
@media (max-width: 900px) { .ai-tools-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 500px) { .ai-tools-grid { grid-template-columns: repeat(2,1fr); } }

/* ═══════════════════════════════════════════
   MEDICAL RESOURCES SECTION
═══════════════════════════════════════════ */
.med-resources-section { padding: var(--space-3xl) 5%; background: var(--white); }
.med-resources-inner   { max-width: 1100px; margin: 0 auto; }
.med-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}
.med-resource-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition);
}
.med-resource-card:hover {
  background: var(--white);
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.med-resource-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
}
.med-resource-info { flex: 1; min-width: 0; }
.med-resource-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-900);
  font-family: var(--font-body);
  margin-bottom: 2px;
}
.med-resource-info span { font-size: 11.5px; color: var(--gray-400); }
.med-resource-arrow { font-size: 16px; color: var(--gray-300); transition: color var(--transition); flex-shrink: 0; }
.med-resource-card:hover .med-resource-arrow { color: var(--teal-500); }

/* ═══════════════════════════════════════════
   DOCTOR DIRECTORY SECTION
═══════════════════════════════════════════ */
.doctors-section { padding: var(--space-3xl) 5%; background: var(--gray-50); }
.doctors-inner   { max-width: 1200px; margin: 0 auto; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: all .3s var(--ease);
}
.doctor-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--teal-200);
}
.doctor-photo {
  height: 200px;
  background: linear-gradient(145deg, var(--teal-50), var(--teal-100));
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; }
.doctor-initials {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--teal-500);
  opacity: .6;
}
.doctor-verified {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--teal-500);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  letter-spacing: .04em;
}
.doctor-info { padding: 22px 20px; }
.doctor-info h3 {
  font-size: 17px;
  color: var(--gray-900);
  margin-bottom: 6px;
  line-height: 1.25;
}
.doctor-specialty {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-600);
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.doctor-exp, .doctor-council {
  font-size: 12.5px;
  color: var(--gray-600);
  margin-bottom: 4px;
  font-family: var(--font-body);
}
.doctor-fee {
  display: inline-block;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--teal-100);
  margin-top: 6px;
  font-family: var(--font-body);
}
.doctors-empty {
  text-align: center;
  padding: 64px 20px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--gray-200);
}
.doctors-empty-icon { font-size: 56px; margin-bottom: 16px; }
.doctors-empty h3   { font-size: 22px; margin-bottom: 10px; }
.doctors-empty p    { font-size: 15px; color: var(--gray-600); }

/* ═══════════════════════════════════════════
   DOCTOR REGISTRATION SECTION
═══════════════════════════════════════════ */
.doctor-reg-section {
  padding: var(--space-3xl) 5%;
  background: linear-gradient(140deg, var(--teal-900) 0%, #0c4a38 100%);
  position: relative; overflow: hidden;
}
.doctor-reg-section::before {
  content: '';
  position: absolute; top: -200px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,202,165,.08) 0%, transparent 70%);
  pointer-events: none;
}
.doctor-reg-inner { max-width: 1140px; margin: 0 auto; position: relative; z-index: 1; }

.doc-reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

/* Benefits column */
.doc-reg-benefits h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}
.doc-benefit-list { display: flex; flex-direction: column; gap: 18px; }
.doc-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}
.doc-benefit:hover { background: rgba(255,255,255,.1); }
.doc-benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.doc-benefit strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 4px;
}
.doc-benefit p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0; }

/* Registration form card */
.doc-reg-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
}
.doc-reg-form-card h3 { font-size: 22px; margin-bottom: 6px; }
.doc-reg-form-card > p { font-size: 14px; margin-bottom: 24px; color: var(--gray-600); }

.form-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 2px;
  margin-top: 6px;
  font-family: var(--font-body);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--teal-50);
}

@media (max-width: 900px) {
  .doc-reg-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════════ */
@media print {
  .site-header,
  .floating-cta,
  #djp-chat-widget { display: none !important; }
  body { color: #000; background: #fff; }
}
