/*
 * FLYDOC — Specialized-OPD Theme 1 — style.css
 * Single CSS file containing ALL styles.
 * Upload to: /public_html/app/website/themes/specialized-t1/style.css
 *
 * Structure:
 *  1. Root variables (defaults — overridden by head.php inline :root)
 *  2. Base / typography / reset
 *  3. Component modules (hero, about, services, doctors, testi, faq, gallery, blog, cta)
 *  4. AUTHORITATIVE header, navbar, footer, mobile-nav (SINGLE definition — no duplicates)
 *  5. Testimonial carousel
 *  6. Doctor detail page
 *  7. Column grid builder blocks
 *  8. Responsive breakpoints
 */
:root {
  --brand:       #008080;
  --brand-dark:  #006060;
  --brand-light: #00808018;
  --brand-rgb:   0,128,128;
  --text-dark:   #0d1b2a;
  --text-mid:    #3d5166;
  --text-light:  #6b7f93;
  --bg:          #ffffff;
  --bg-soft:     #f4f8fd;
  --bg-alt:      #eef4fb;
  --border:      #e2e8f0;
  --card-shadow: 0 4px 24px rgba(0,0,0,.08);
  --card-radius: 12px;
}
/* :root above is default — overridden by inline :root in head.php */


/* Values above are overridden by inline :root from clinic branding */

/* ═══════════════════════════════════════════════════
   GLOBAL RESET
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--p-font, 'Bitter', sans-serif);
  background: #ffffff;
  color: #0d1b2a;
  line-height: 1.6;
  transition: background 0.4s, color 0.4s;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════
   STICKY WHATSAPP BUTTON (Mobile First)
═══════════════════════════════════════════════════ */

@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ═══════════════════════════════════════════════════
   TOP BAR
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #0d1b2a;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════ */
.hero {
  background: var(--brand);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-tag i { font-size: 10px; }

.hero-title {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.18;
  margin-bottom: 20px;
}

.hero-title span { color: var(--brand); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  padding: 14px 28px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,181,163,0.3);
}

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

.btn-hero-outline {
  padding: 14px 28px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.2); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat .num {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  align-self: stretch;
}

/* Hero Right — Quick Contact Card */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.hero-card-title {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 6px;
}

.hero-card-sub {
  font-size: 13px;
  color: #6b7f93;
  margin-bottom: 24px;
}
.hero-form-group { margin-bottom: 14px; }
.hero-form-group input,
.hero-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--p-font, 'Bitter', sans-serif);
  color: #0d1b2a;
  background: #ffffff;
  transition: border-color 0.2s;
  outline: none;
}

.hero-form-group input:focus,
.hero-form-group select:focus {
  border-color: var(--brand);
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-wa-alt {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: #6b7f93;
}
.form-wa-alt a {
  color: #25d366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ═══════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════ */
.trust-bar {
  background: var(--brand);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.trust-item i {
  font-size: 20px;
  color: rgba(255,255,255,0.6);
}

.trust-item-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.trust-item-lbl {
  font-size: 12px;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════
   SECTION STYLES
═══════════════════════════════════════════════════ */
section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 16px;
  color: #6b7f93;
  max-width: 580px;
  line-height: 1.7;
}
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════════════ */
.why-section { background: #f4f8fd; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(var(--brand-rgb),0.15);
  border-color: var(--brand);
}

.why-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.why-icon i { font-size: 24px; color: var(--brand); }
.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; color: #6b7f93; line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   CANCER TYPES GRID
═══════════════════════════════════════════════════ */
.cancer-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.cancer-type-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}
.cancer-type-card:hover {
  border-color: var(--brand);
  background: var(--brand-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.cancer-type-card .ct-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: #f4f8fd;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  transition: all 0.25s;
}

.cancer-type-card:hover .ct-icon { background: var(--brand); }

.cancer-type-card .ct-icon i {
  font-size: 20px;
  color: var(--brand);
  transition: color 0.25s;
}

.cancer-type-card:hover .ct-icon i { color: #fff; }

.cancer-type-card span {
  font-size: 13px;
  font-weight: 600;
  color: #3d5166;
  display: block;
}
.cancer-type-card:hover span { color: var(--brand); }

/* ═══════════════════════════════════════════════════
   ABOUT DOCTOR
═══════════════════════════════════════════════════ */
.about-section { background: #ffffff; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 500px;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--brand);
  color: #fff;
  padding: 16px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(var(--brand-rgb),0.3);
}

.about-badge strong { font-size: 28px; font-weight: 800; display: block; }
.about-badge span { font-size: 12px; opacity: 0.85; }
.about-creds {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.about-cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-cred i {
  color: var(--brand);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-cred-text { font-size: 14px; color: #3d5166; line-height: 1.5; }
.about-cred-text strong { color: #0d1b2a; display: block; font-size: 14px; }

/* ═══════════════════════════════════════════════════
   SERVICES / SPECIALIZATIONS
═══════════════════════════════════════════════════ */
.services-section { background: #f4f8fd; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(var(--brand-rgb),0.15);
}

.service-card-img {
  height: 160px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}

.service-card-img i {
  font-size: 52px;
  color: var(--brand);
  opacity: 0.3;
}

.service-card-img .svc-icon-main {
  position: absolute;
  font-size: 56px;
  color: var(--brand);
  opacity: 0.15;
}

.service-card-img .svc-thumb {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
}
.service-card-body { padding: 22px; }
.service-card-body h4 {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: 17px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
  line-height: 1.3;
}
.service-card-body p { font-size: 13px; color: #6b7f93; line-height: 1.6; margin-bottom: 16px; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
  transition: gap 0.2s;
}

.service-card:hover .service-card-link { gap: 10px; }

/* ═══════════════════════════════════════════════════
   DOCTORS
═══════════════════════════════════════════════════ */
.doctors-section { background: #ffffff; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.doctor-card {
  background: #f4f8fd;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s;
  text-align: center;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(var(--brand-rgb),0.12);
}

.doctor-img-wrap {
  position: relative;
  height: 220px;
  background: var(--brand-light);
  overflow: hidden;
}

.doctor-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.doctor-dept-badge {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.doctor-body { padding: 20px; }
.doctor-body h4 {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 4px;
}
.doctor-body p { font-size: 13px; color: #6b7f93; margin-bottom: 16px; }
.doctor-actions {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.btn-doc-profile {
  flex: 1;
  padding: 9px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3d5166;
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-doc-profile:hover { border-color: var(--brand); color: var(--brand); }

.btn-doc-book {
  flex: 1;
  padding: 9px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

.btn-doc-book:hover { opacity: 0.88; }

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════ */
.testimonials-section { background: #f4f8fd; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  position: relative;
}

.testi-quote {
  font-size: 60px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.15;
  font-family: Georgia, serif;
  margin-bottom: -10px;
}

.testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testi-text {
  font-size: 14px;
  color: #3d5166;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
}

.testi-name { font-size: 14px; font-weight: 700; color: #0d1b2a; }
.testi-role { font-size: 12px; color: #6b7f93; }

/* Video Testimonials */
.video-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.video-testi-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.video-testi-wrap iframe {
  width: 100%;
  height: 200px;
  display: block;
  border: none;
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════ */
.faq-section { background: #ffffff; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item.open 

.faq-item.open 

.faq-item.open 

.faq-item.open 

.faq-cta-box {
  background: var(--brand);
  border-radius: 16px;
  padding: 36px;
  color: #fff;
  position: sticky;
  top: 100px;
}

.faq-cta-box h3 {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.faq-cta-box p { font-size: 14px; opacity: 0.8; margin-bottom: 24px; line-height: 1.6; }

.btn-faq-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.btn-faq-wa:hover { background: #1da851; }
.btn-faq-call {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-faq-call:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════ */
.cta-banner {
  background: var(--brand);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--h-font, 'Poppins', sans-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-banner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }

.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); }
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-cta-call:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap img { height: 320px; }
  .about-badge { left: 12px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-cta-box { position: static; }
  
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-links, .nav-cta 
  .hamburger { display: flex; }
  .topbar-left { display: none; }
  .hero-stats { gap: 16px; }
  .hero-stat .num { font-size: 28px; }
  .trust-bar-inner { gap: 20px; }
  .cancer-types-grid { grid-template-columns: repeat(3, 1fr); }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-outline { justify-content: center; }
  .cancer-types-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════
   MOBILE NAV MENU
═══════════════════════════════════════════════════ */

/* ── Shared section utilities ─────────────────────────────────────── */
.fd-section-header        { margin-bottom: 48px; }
.fd-section-header.center { text-align: center; }
.fd-section-header.center .fd-section-sub { margin: 0 auto; }
.fd-section-tag  { display:inline-block;font-size:.7rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--brand);background:var(--brand-light);padding:4px 14px;border-radius:50px;margin-bottom:10px; }
.fd-section-title{ font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;color:var(--text-dark);line-height:1.2;margin-bottom:14px; }
.fd-section-sub  { font-size:.95rem;color:var(--text-light);max-width:560px;line-height:1.7; }

/* ── Buttons ──────────────────────────────────────────────────────── */
.fd-btn { display:inline-flex;align-items:center;gap:8px;padding:11px 26px;border-radius:var(--btn-radius,6px);font-weight:700;font-size:.88rem;transition:all .2s;text-decoration:none;border:2px solid transparent;cursor:pointer; }
.fd-btn:hover { transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.12); }
.fd-btn-primary { background:var(--brand);color:#fff;border-color:var(--brand); }
.fd-btn-primary:hover { opacity:.9;color:#fff; }
.fd-btn-outline { background:transparent;color:var(--brand);border-color:var(--brand); }
.fd-btn-outline:hover { background:var(--brand);color:#fff; }

/* ── Hero Section ─────────────────────────────────────────────────── */
.fd-hero { position:relative;min-height:100vh;display:flex;align-items:center;background:var(--brand);overflow:hidden;padding:0; }
.fd-hero-bg { position:absolute;inset:0;background-size:cover;background-position:center;opacity:.2; }
.fd-hero-overlay { position:absolute;inset:0;background:linear-gradient(135deg,var(--brand) 45%,rgba(0,0,0,.5)); }
.fd-hero-grid { position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;padding:100px 0 60px;width:100%; }
.fd-hero-text { color:#fff; }
.fd-hero-tag  { display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border:1px solid rgba(255,255,255,.25);border-radius:50px;padding:5px 16px;font-size:.78rem;font-weight:600;color:#fff;letter-spacing:.06em;margin-bottom:18px; }
.fd-hero-title { font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:#fff;margin-bottom:18px;line-height:1.12; }
.fd-hero-sub   { font-size:1rem;color:rgba(255,255,255,.82);margin-bottom:32px;max-width:460px; }
.fd-hero-actions { display:flex;gap:14px;flex-wrap:wrap;margin-bottom:36px; }
.fd-btn-hero-primary { display:inline-flex;align-items:center;gap:8px;padding:14px 28px;background:#25d366;color:#fff;border-radius:var(--btn-radius,6px);font-size:.95rem;font-weight:700;transition:.2s;text-decoration:none; }
.fd-btn-hero-primary:hover { background:#1da851;transform:translateY(-2px);color:#fff; }
.fd-btn-hero-outline { display:inline-flex;align-items:center;gap:8px;padding:14px 28px;background:rgba(255,255,255,.1);border:1.5px solid rgba(255,255,255,.35);color:#fff;border-radius:var(--btn-radius,6px);font-size:.95rem;font-weight:600;transition:.2s;text-decoration:none; }
.fd-btn-hero-outline:hover { background:rgba(255,255,255,.2);color:#fff; }

.fd-hero-stats         { display:flex;gap:24px;flex-wrap:wrap;align-items:center; }
.fd-hero-stat          { text-align:center; }
.fd-hero-stat-num      { font-size:2rem;font-weight:800;color:#fff;line-height:1; }
.fd-hero-stat-lbl      { font-size:.7rem;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.5px;margin-top:4px; }
.fd-hero-stat-divider  { width:1px;height:40px;background:rgba(255,255,255,.2); }

/* Hero Appointment Card */
.fd-hero-card-wrap { display:flex;align-items:center;justify-content:center; }
.fd-hero-card      { background:rgba(255,255,255,.97);border-radius:16px;padding:32px;box-shadow:0 20px 60px rgba(0,0,0,.25);width:100%;max-width:420px; }
.fd-hero-card-title{ font-size:1.2rem;font-weight:800;color:var(--brand);margin-bottom:4px; }
.fd-hero-card-sub  { font-size:.78rem;color:var(--text-light);margin-bottom:20px; }
.fd-form-group     { margin-bottom:12px; }
.fd-form-group input,
.fd-form-group select { width:100%;padding:11px 14px;border:1.5px solid var(--border,#e2e8f0);border-radius:8px;font-size:.88rem;color:var(--text-dark);background:#fff;outline:none;transition:border-color .2s;font-family:inherit; }
.fd-form-group input:focus,
.fd-form-group select:focus { border-color:var(--brand); }
.fd-btn-submit { width:100%;display:flex;align-items:center;justify-content:center;gap:8px;padding:13px;background:var(--brand);color:#fff;border:none;border-radius:8px;font-size:.95rem;font-weight:700;cursor:pointer;transition:.2s;font-family:inherit; }
.fd-btn-submit:hover { opacity:.9;transform:translateY(-1px); }
.fd-form-wa-alt { margin-top:12px;text-align:center;font-size:.78rem;color:var(--text-light); }
.fd-form-wa-alt a { color:#25d366;font-weight:600;display:inline-flex;align-items:center;gap:4px; }

/* ── About Section ────────────────────────────────────────────────── */
.fd-about-section { padding:80px 0;background:#fff; }
.fd-about-grid    { display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center; }
.fd-about-img-wrap{ position:relative; }
.fd-about-img-wrap img { width:100%;height:500px;object-fit:cover;border-radius:16px; }
.fd-about-img-placeholder { width:100%;height:500px;background:var(--brand-light);border-radius:16px;display:flex;align-items:center;justify-content:center;font-size:5rem;color:var(--brand);opacity:.3; }
.fd-about-badge   { position:absolute;bottom:24px;left:-20px;background:var(--brand);color:#fff;padding:16px 22px;border-radius:12px;box-shadow:0 8px 30px rgba(0,0,0,.2);text-align:center; }
.fd-about-badge strong { font-size:1.8rem;font-weight:800;display:block;line-height:1; }
.fd-about-badge span   { font-size:.75rem;opacity:.85;margin-top:4px;display:block; }
.fd-about-creds   { display:flex;flex-direction:column;gap:14px;margin:20px 0; }
.fd-about-cred    { display:flex;align-items:flex-start;gap:12px; }
.fd-about-cred > i { color:var(--brand);font-size:1rem;margin-top:3px;flex-shrink:0; }
.fd-about-cred-text { font-size:.88rem;color:var(--text-mid);line-height:1.5; }
.fd-about-cred-text strong { color:var(--text-dark);display:block;font-size:.88rem;margin-bottom:2px; }

/* ── Stats ────────────────────────────────────────────────────────── */
.fd-stats-section { background:var(--brand);padding:60px 0; }
.fd-stats-grid    { display:grid;grid-template-columns:repeat(4,1fr);gap:32px;text-align:center; }
.fd-stat-item     { color:#fff; }
.fd-stat-icon     { font-size:2rem;opacity:.7;margin-bottom:10px; }
.fd-stat-num      { font-size:clamp(2rem,4vw,2.8rem);font-weight:800;color:#fff;line-height:1; }
.fd-stat-lbl      { font-size:.8rem;opacity:.8;margin-top:8px; }

/* ── Services Grid ────────────────────────────────────────────────── */
.fd-services-section { padding:80px 0;background:#fff; }
.fd-services-grid    { display:grid;grid-template-columns:repeat(3,1fr);gap:24px; }
.fd-service-card     { background:#fff;border-radius:14px;overflow:hidden;border:1px solid var(--border,#e2e8f0);transition:transform .3s,box-shadow .3s; }
.fd-service-card:hover { transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,.1); }
.fd-service-card-img { width:100%;height:180px;object-fit:cover;display:block; }
.fd-service-img-placeholder { width:100%;height:180px;background:var(--brand-light);display:flex;align-items:center;justify-content:center;font-size:2.5rem;color:var(--brand);opacity:.4; }
.fd-service-card-body { padding:20px; }
.fd-service-card-body h4 { font-size:1rem;font-weight:700;color:var(--text-dark);margin-bottom:8px;line-height:1.3; }
.fd-service-card-body h4 a { color:inherit;text-decoration:none; }
.fd-service-card-body h4 a:hover { color:var(--brand); }
.fd-service-card-body p { font-size:.82rem;color:var(--text-light);line-height:1.6;margin-bottom:14px; }
.fd-service-card-link { display:inline-flex;align-items:center;gap:6px;font-size:.8rem;font-weight:700;color:var(--brand);text-decoration:none;transition:gap .2s; }
.fd-service-card:hover .fd-service-card-link { gap:10px; }

/* ── Doctors Grid ─────────────────────────────────────────────────── */
.fd-doctors-section { padding:80px 0;background:var(--bg-soft,#f4f8fd); }
.fd-doctors-grid    { display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:24px; }
.fd-doctor-card     { background:#fff;border-radius:14px;overflow:hidden;border:1px solid var(--border,#e2e8f0);text-align:center;transition:transform .3s,box-shadow .3s; }
.fd-doctor-card:hover { transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,.1); }
.fd-doctor-img-wrap { position:relative;height:240px;overflow:hidden; }
.fd-doctor-img-wrap img { width:100%;height:100%;object-fit:cover;object-position:top; }
.fd-doctor-img-placeholder { width:100%;height:240px;background:var(--brand-light);display:flex;align-items:center;justify-content:center;font-size:3.5rem;color:var(--brand);opacity:.35; }
.fd-doctor-dept-badge { position:absolute;bottom:10px;left:50%;transform:translateX(-50%);background:var(--brand);color:#fff;font-size:.72rem;font-weight:700;padding:4px 14px;border-radius:50px;white-space:nowrap; }
.fd-doctor-body { padding:18px; }
.fd-doctor-body h4 { font-size:.95rem;font-weight:700;color:var(--text-dark);margin-bottom:6px; }
.fd-doctor-body p  { font-size:.78rem;color:var(--text-light);line-height:1.5;margin-bottom:14px; }
.fd-doctor-actions { display:flex;gap:8px;justify-content:center; }
.fd-btn-doc-profile { flex:1;padding:9px;border:1.5px solid var(--border,#e2e8f0);border-radius:var(--btn-radius,6px);font-size:.78rem;font-weight:600;color:var(--text-mid);background:#fff;cursor:pointer;text-align:center;transition:.2s;text-decoration:none;display:flex;align-items:center;justify-content:center; }
.fd-btn-doc-profile:hover { border-color:var(--brand);color:var(--brand); }
.fd-btn-doc-book    { flex:1;padding:9px;background:var(--brand);color:#fff;border:none;border-radius:var(--btn-radius,6px);font-size:.78rem;font-weight:600;cursor:pointer;text-align:center;transition:.2s;text-decoration:none;display:flex;align-items:center;justify-content:center; }
.fd-btn-doc-book:hover { opacity:.88; }

/* ── Testimonials ─────────────────────────────────────────────────── */
.fd-testi-section { padding:80px 0;background:#fff; }
.fd-testi-grid    { display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px; }
.fd-testi-card {
    background: var(--bg-soft,#f4f8fd);
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border,#e2e8f0);
    height: 280px;                     /* fixed height — equal cards */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.fd-testi-text {
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;             /* max 4 lines of text */
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}
.fd-testi-quote   { font-size:3rem;color:var(--brand);opacity:.2;line-height:1;margin-bottom:8px;font-family:Georgia,serif; }
.fd-testi-stars   { color:#f59e0b;font-size:.85rem;margin-bottom:10px; }
.fd-testi-text    { font-size:.9rem;color:var(--text-mid);line-height:1.7;margin-bottom:20px;font-style:italic; }
.fd-testi-author  { display:flex;align-items:center;gap:12px; }
.fd-testi-avatar  { width:40px;height:40px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.9rem;flex-shrink:0; }
.fd-testi-name    { font-size:.88rem;font-weight:700;color:var(--text-dark); }
.fd-testi-role    { font-size:.75rem;color:var(--brand); }

/* ── Gallery ──────────────────────────────────────────────────────── */
.fd-gallery-section { padding:80px 0;background:var(--bg-soft,#f4f8fd); }
.fd-gallery-grid    { display:grid;grid-template-columns:repeat(3,1fr);gap:14px; }
.fd-gallery-item    { border-radius:12px;overflow:hidden;aspect-ratio:4/3;position:relative;cursor:pointer; }
.fd-gallery-item img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.fd-gallery-item:hover img { transform:scale(1.06); }
.fd-gallery-overlay { position:absolute;inset:0;background:rgba(0,0,0,.4);opacity:0;display:flex;align-items:center;justify-content:center;transition:opacity .3s; }
.fd-gallery-item:hover .fd-gallery-overlay { opacity:1; }
.fd-gallery-zoom { width:44px;height:44px;border-radius:50%;background:#fff;color:var(--brand);display:flex;align-items:center;justify-content:center;font-size:1rem;text-decoration:none; }

/* ── Blog ─────────────────────────────────────────────────────────── */
.fd-blog-section { padding:80px 0;background:#fff; }
.fd-blog-grid    { display:grid;grid-template-columns:repeat(3,1fr);gap:24px; }
.fd-blog-card    { background:#fff;border-radius:14px;overflow:hidden;border:1px solid var(--border,#e2e8f0);transition:transform .3s,box-shadow .3s; }
.fd-blog-card:hover { transform:translateY(-4px);box-shadow:0 12px 40px rgba(0,0,0,.08); }
.fd-blog-img     { width:100%;height:190px;object-fit:cover;display:block; }
.fd-blog-body    { padding:20px; }
.fd-blog-date    { font-size:.72rem;color:var(--brand);font-weight:700;text-transform:uppercase;letter-spacing:.06em;margin-bottom:8px; }
.fd-blog-body h4 { font-size:.95rem;font-weight:700;color:var(--text-dark);margin-bottom:8px;line-height:1.4; }
.fd-blog-body h4 a { color:inherit;text-decoration:none; }
.fd-blog-body h4 a:hover { color:var(--brand); }
.fd-blog-body p  { font-size:.82rem;color:var(--text-light);line-height:1.6;margin-bottom:12px; }

/* ── Appointment Section ──────────────────────────────────────────── */
.fd-appt-section      { padding:80px 0;background:var(--brand); }
.fd-appt-outer        { display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center; }
.fd-appt-info         { color:#fff; }
.fd-contact-info-item { display:flex;align-items:flex-start;gap:14px;margin-bottom:20px; }
.fd-contact-icon      { width:44px;height:44px;min-width:44px;border-radius:12px;background:rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;color:#fff;font-size:1rem;flex-shrink:0; }
.fd-btn-wa-cta        { display:inline-flex;align-items:center;gap:8px;padding:13px 24px;background:#25d366;color:#fff;border-radius:var(--btn-radius,6px);font-size:.9rem;font-weight:700;text-decoration:none;transition:.2s; }
.fd-btn-wa-cta:hover  { background:#1da851;color:#fff; }
.fd-appt-form-card    { background:#fff;border-radius:16px;padding:32px;box-shadow:0 20px 60px rgba(0,0,0,.2); }

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .fd-services-grid { grid-template-columns: repeat(2,1fr); }
    .fd-blog-grid     { grid-template-columns: repeat(2,1fr); }
    .fd-stats-grid    { grid-template-columns: repeat(2,1fr); gap:24px; }
}
@media (max-width: 768px) {
    .fd-hero-grid     { grid-template-columns: 1fr; padding:110px 0 52px; }
    .fd-hero-card-wrap{ display:flex; margin-top:32px; }
    .fd-about-grid    { grid-template-columns: 1fr; gap:36px; }
    .fd-about-badge   { left:0; }
    .fd-services-grid { grid-template-columns: 1fr; }
    .fd-blog-grid     { grid-template-columns: 1fr; }
    .fd-gallery-grid  { grid-template-columns: repeat(2,1fr); }
    .fd-appt-outer    { grid-template-columns: 1fr; }
    .fd-stats-grid    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
    .fd-gallery-grid  { grid-template-columns: 1fr; }
    .fd-doctors-grid  { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   AUTHORITATIVE HEADER / FOOTER / LAYOUT RULES
   These appear ONCE and override nothing below them
═══════════════════════════════════════════════════ */

/* ── WhatsApp sticky ── */
.wa-sticky {
  position:fixed;bottom:24px;right:24px;
  width:56px;height:56px;border-radius:50%;
  background:#25d366;color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45);
  z-index:9999;text-decoration:none;transition:transform .2s;
}
.wa-sticky:hover { transform:scale(1.1); }
.wa-sticky i { font-size:26px;color:#fff; }

/* ── Mobile Nav ── */
.mobile-nav {
  display:none;position:fixed;inset:0;
  background:rgba(5,30,62,.97);z-index:10001;
  flex-direction:column;align-items:center;justify-content:center;gap:24px;
}
.mobile-nav.open { display:flex; }
.mobile-nav a { font-size:18px;font-weight:600;color:#fff;text-decoration:none; }
.mobile-nav a:hover { color:var(--brand); }
.mobile-nav-close {
  position:absolute;top:20px;right:20px;
  background:none;border:none;color:#fff;font-size:28px;cursor:pointer;
}
.mobile-nav-wa {
  display:flex;align-items:center;gap:8px;
  padding:12px 28px;background:#25d366;
  border-radius:8px;
}
.mobile-nav-wa { color:#fff !important;font-size:15px !important;font-weight:700 !important; }

/* ── Topbar ── */
.topbar {
  background:var(--brand);color:rgba(255,255,255,.9);
  padding:8px 0;font-size:13px;
}
.topbar .container {
  display:flex;align-items:center;justify-content:space-between;
}
.topbar-left { display:flex;align-items:center;gap:20px; }
.topbar-right { display:flex;align-items:center;gap:12px; }
.topbar a { color:rgba(255,255,255,.85);text-decoration:none; }
.topbar a:hover { color:#fff; }
.topbar i { margin-right:5px; }

/* ── Navbar ── */
.navbar {
  background:#fff;position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 20px rgba(0,0,0,.08);
  transition:background .3s,box-shadow .3s;padding:0;
}
.nav-inner {
  display:flex;align-items:center;justify-content:space-between;height:72px;
}
.nav-logo img { height:52px;width:auto;display:block; }
.nav-logo-text {
  font-size:26px;font-weight:700;color:var(--brand);letter-spacing:-.5px;
}
.nav-links {
  display:flex;align-items:center;gap:4px;list-style:none;margin:0;padding:0;
}
.nav-links li a {
  padding:8px 14px;font-size:14px;font-weight:500;color:#0d1b2a;
  border-radius:6px;transition:all .2s;text-decoration:none;display:block;
}
.nav-links li a:hover { background:var(--brand-light);color:var(--brand); }
.nav-cta { display:flex;align-items:center;gap:10px; }
.btn-wa-nav {
  display:flex;align-items:center;gap:8px;
  padding:10px 18px;background:#25d366;color:#fff;
  border-radius:6px;font-size:14px;font-weight:600;
  text-decoration:none;white-space:nowrap;transition:all .2s;
}
.btn-wa-nav:hover { background:#1da851;color:#fff;transform:translateY(-1px); }
.btn-appt {
  display:flex;align-items:center;gap:8px;
  padding:10px 18px;background:var(--brand);color:#fff;
  border-radius:6px;font-size:14px;font-weight:600;
  text-decoration:none;white-space:nowrap;transition:all .2s;
}
.btn-appt:hover { background:var(--brand-dark);color:#fff;transform:translateY(-1px); }
.hamburger {
  display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;
}
.hamburger span {
  display:block;width:24px;height:2px;
  background:#0d1b2a;border-radius:2px;transition:.3s;
}

/* ── Footer ── */
footer {
  background:var(--brand);color:rgba(255,255,255,.7);padding:64px 0 0;
}
.footer-grid {
  display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:40px;padding-bottom:48px;
}
.footer-brand .footer-logo {
  font-size:24px;font-weight:700;color:#fff;margin-bottom:12px;display:block;
}
.footer-brand p { font-size:14px;line-height:1.7;color:rgba(255,255,255,.5); }
.footer-col h5 {
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:1.5px;color:#fff;margin-bottom:18px;
}
.footer-links {
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:10px;
}
.footer-links a {
  font-size:13px;color:rgba(255,255,255,.5);
  transition:color .2s;text-decoration:none;
  display:flex;align-items:flex-start;gap:6px;line-height:1.5;
}
.footer-links a:hover { color:#fff; }
.footer-contact-item {
  display:flex;align-items:flex-start;gap:12px;
  margin-bottom:14px;font-size:13px;color:rgba(255,255,255,.6);
}
.footer-contact-item i { color:rgba(255,255,255,.9);margin-top:2px;flex-shrink:0; }
.footer-contact-item a { color:rgba(255,255,255,.6);text-decoration:none; }
.footer-contact-item a:hover { color:#fff; }
.footer-social { display:flex;gap:8px;margin-top:16px; }
.footer-social a {
  width:36px;height:36px;border-radius:8px;
  background:rgba(255,255,255,.15);
  display:flex;align-items:center;justify-content:center;
  color:rgba(255,255,255,.85);transition:all .2s;
  font-size:14px;text-decoration:none;
}
.footer-social a:hover { background:rgba(255,255,255,.25);color:#fff; }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,.08);padding:20px 0;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:12px;font-size:13px;color:rgba(255,255,255,.35);
}
.footer-bottom a { color:#fff;text-decoration:none;font-weight:600; }

/* ── FAQ (fd- prefix) ── */
.fd-faq-list { display:flex;flex-direction:column;gap:10px; }
.fd-faq-item {
  background:#fff;border:1.5px solid #e2e8f0;
  border-radius:10px;overflow:hidden;transition:border-color .2s,box-shadow .2s;
}
.fd-faq-item.open { border-color:var(--brand);box-shadow:0 4px 20px rgba(0,0,0,.06); }
.fd-faq-q {
  width:100%;display:flex;align-items:center;
  justify-content:space-between;gap:12px;
  padding:18px 20px;background:none;border:none;cursor:pointer;
  font-family:var(--h-font,'Poppins',sans-serif);
  font-size:15px;font-weight:600;color:#0d1b2a;text-align:left;transition:background .2s;
}
.fd-faq-item.open .fd-faq-q { background:var(--brand-light);color:var(--brand); }
.fd-faq-icon { flex-shrink:0;font-size:13px;color:var(--brand);transition:transform .3s; }
.fd-faq-item.open .fd-faq-icon { transform:rotate(180deg); }
.fd-faq-a { display:none;padding:0 20px 18px; }
.fd-faq-item.open .fd-faq-a { display:block; }
.fd-faq-a p { font-size:14px;color:#3d5166;line-height:1.75;margin:0; }
.fd-faq-outer {
  display:grid;grid-template-columns:1fr 320px;gap:48px;align-items:start;
}

/* ── Responsive ── */
@media (max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px; }
}
@media (max-width:900px) {
  .nav-links,.nav-cta .btn-appt { display:none; }
  .hamburger { display:flex; }
  .fd-faq-outer { grid-template-columns:1fr; }
  .topbar-left a:last-child { display:none; }
}
@media (max-width:600px) {
  .footer-grid { grid-template-columns:1fr; gap:24px; }
  .topbar-left { display:none; }
}


/* ═══════════════════════════════════════════════════
   TESTIMONIAL CAROUSEL — Owl nav styling
═══════════════════════════════════════════════════ */
#fd-testi-owl,
#fd-video-testi-owl { position: relative; }

#fd-testi-owl .owl-nav button,
#fd-video-testi-owl .owl-nav button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: var(--brand) !important;
    color: #fff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 0.2s;
    border: none !important;
    outline: none !important;
}
#fd-testi-owl .owl-nav .owl-prev,
#fd-video-testi-owl .owl-nav .owl-prev { left: -20px; }

#fd-testi-owl .owl-nav .owl-next,
#fd-video-testi-owl .owl-nav .owl-next { right: -20px; }

#fd-testi-owl .owl-nav button:hover,
#fd-video-testi-owl .owl-nav button:hover { opacity: 0.8; }

#fd-testi-owl /* ── Owl Carousel: hide "prev"/"next" text, style dots ──────── */
#fd-testi-owl .owl-nav,
#fd-video-testi-owl .owl-nav { display: none !important; }

#fd-testi-owl .owl-dots,
#fd-video-testi-owl .owl-dots {
    text-align: center;
    margin-top: 24px;
    padding-bottom: 8px;
}

#fd-testi-owl .owl-dot,
#fd-video-testi-owl .owl-dot { outline: none; }

#fd-testi-owl .owl-dot span,
#fd-video-testi-owl .owl-dot span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #cbd5e1;               /* light gray inactive */
    margin: 0 3px;
    display: inline-block;
    transition: all .3s;
    border: none;
}
#fd-testi-owl .owl-dot.active span,
#fd-video-testi-owl .owl-dot.active span {
    background: var(--brand);
    width: 18px;
    border-radius: 4px;                /* pill shape for active */
}

/* Card equal height */
#fd-testi-owl .fd-testi-card  { margin: 0 8px; }
#fd-video-testi-owl .fd-video-testi-item { margin: 0 8px; }


/* ═══════════════════════════════════════════════════
   DOCTOR DETAIL PAGE — Professional Design
═══════════════════════════════════════════════════ */

/* Hero banner */
.doc-hero {
  background: linear-gradient(135deg, #051e3e 0%, var(--brand) 100%);
  padding: 64px 0 48px;
  position: relative;
  overflow: hidden;
}
.doc-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.doc-hero-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.doc-hero-photo-wrap { position: relative; }
.doc-hero-photo {
  width: 260px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  border: 4px solid rgba(255,255,255,.2);
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.doc-photo-placeholder {
  width: 260px; height: 300px;
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(255,255,255,.4);
  border: 4px solid rgba(255,255,255,.2);
}
.doc-exp-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.doc-exp-badge strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
}
.doc-exp-badge span {
  font-size: .7rem;
  color: #6b7f93;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 3px;
  display: block;
}

/* Hero info */
.doc-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.doc-hero-name {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.15;
}
.doc-hero-degree {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  margin-bottom: 28px;
  line-height: 1.5;
}
.doc-quick-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.doc-qs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.doc-qs-item i {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
}
.doc-qs-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
}
.doc-qs-item span {
  font-size: .7rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.doc-qs-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.2);
}
.doc-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons */
.doc-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25d366;
  color: #fff;
  border-radius: var(--btn-radius, 6px);
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.doc-btn-book:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.doc-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: var(--btn-radius, 6px);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.doc-btn-call:hover { background: rgba(255,255,255,.25); color: #fff; }
.w-full { width: 100%; justify-content: center; }

/* Breadcrumb */
.doc-breadcrumb {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 12px 0;
}
.doc-breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7f93;
}
.doc-breadcrumb a { color: var(--brand); text-decoration: none; }
.doc-breadcrumb i { font-size: 9px; }
.doc-breadcrumb span { color: #0d1b2a; font-weight: 600; }

/* Body section */
.doc-body-section { padding: 56px 0 80px; background: #f4f8fd; }
.doc-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Cards */
.doc-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.doc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f4f8;
}
.doc-card-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}
.doc-card-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  font-size: .95rem;
  flex-shrink: 0;
}
.doc-overview-body {
  font-size: 14px;
  color: #3d5166;
  line-height: 1.8;
}
.doc-overview-body p { margin-bottom: 12px; }

/* Availability grid */
.doc-avail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
}
.doc-avail-day {
  background: #f4f8fd;
  border-radius: 10px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand);
}
.doc-avail-day-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.doc-avail-slot {
  font-size: .78rem;
  color: #3d5166;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}
.doc-avail-slot i { color: var(--brand); font-size: .65rem; }

/* CTA strip */
.doc-cta-strip {
  background: linear-gradient(135deg, var(--brand) 0%, #051e3e 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.doc-cta-strip h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.doc-cta-strip p  { color: rgba(255,255,255,.75); font-size: .85rem; margin: 0; }

/* Sidebar */
.doc-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.doc-sidebar-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.doc-sidebar-card-title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--brand);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* Facts list */
.doc-facts-list { display: flex; flex-direction: column; gap: 14px; }
.doc-fact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f4f8;
}
.doc-fact-row:last-child { border-bottom: none; padding-bottom: 0; }
.doc-fact-icon {
  width: 34px; height: 34px; min-width: 34px;
  border-radius: 8px;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: .85rem;
}
.doc-fact-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--brand);
  margin-bottom: 3px;
}
.doc-fact-value {
  font-size: .88rem;
  font-weight: 600;
  color: #0d1b2a;
  line-height: 1.4;
}

/* Sidebar CTA */
.doc-sidebar-cta {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--brand), #051e3e);
}
.doc-sidebar-cta-inner {
  padding: 24px;
  text-align: center;
}
.doc-wa-icon {
  font-size: 2.2rem;
  color: #25d366;
  background: rgba(255,255,255,.12);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
}
.doc-sidebar-cta h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.doc-sidebar-cta p  { color: rgba(255,255,255,.7); font-size: .82rem; margin-bottom: 16px; }
.doc-sidebar-cta .doc-btn-book  { width: 100%; justify-content: center; }
.doc-sidebar-cta .doc-btn-call  {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  width: 100%;
  justify-content: center;
}

/* Other doctors */
.doc-other-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f4f8;
  text-decoration: none;
  transition: background .15s;
}
.doc-other-item:last-child { border-bottom: none; padding-bottom: 0; }
.doc-other-item:hover .doc-other-name { color: var(--brand); }
.doc-other-photo {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.doc-other-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc-other-name  { font-size: .84rem; font-weight: 600; color: #0d1b2a; transition: color .2s; }
.doc-other-desig { font-size: .73rem; color: #6b7f93; margin-top: 2px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .doc-hero-inner  { grid-template-columns: 1fr; text-align: center; }
  .doc-hero-photo, .doc-photo-placeholder { width: 200px; height: 240px; margin: 0 auto; }
  .doc-exp-badge   { right: calc(50% - 120px); }
  .doc-quick-stats { justify-content: center; }
  .doc-hero-actions{ justify-content: center; }
  .doc-body-grid   { grid-template-columns: 1fr; }
  .doc-sidebar     { position: static; }
  .doc-cta-strip   { flex-direction: column; text-align: center; }
}


/* ═══════════════════════════════════════════════════
   PAGE TITLE BANNER (all inner pages)
═══════════════════════════════════════════════════ */
.fd-page-title {
  background:var(--brand);padding:72px 0 52px;text-align:center;
}
.fd-page-title h1 {
  font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;color:#fff;margin-bottom:12px;
}
.fd-breadcrumb {
  display:flex;align-items:center;justify-content:center;
  gap:8px;font-size:.85rem;color:rgba(255,255,255,.7);flex-wrap:wrap;
}
.fd-breadcrumb a { color:rgba(255,255,255,.75);text-decoration:none; }
.fd-breadcrumb a:hover { color:#fff; }
.fd-breadcrumb span { opacity:.5; }

/* ═══════════════════════════════════════════════════
   SERVICE DETAIL PAGE
═══════════════════════════════════════════════════ */
.fd-service-detail-section { padding:72px 0;background:#fff; }
.fd-service-detail-grid {
  display:grid;grid-template-columns:1fr 300px;gap:40px;align-items:start;
}
.fd-service-detail-banner {
  width:100%;border-radius:16px;margin-bottom:28px;
  max-height:420px;object-fit:cover;display:block;
}
.fd-service-detail-body {
  font-size:15px;color:#3d5166;line-height:1.85;
}
.fd-service-detail-body p { margin-bottom:14px; }
.fd-service-detail-body b { color:#0d1b2a; }
.fd-service-sidebar {
  display:flex;flex-direction:column;gap:20px;
  position:sticky;top:90px;
}
.fd-sidebar-cta {
  background:var(--brand);border-radius:14px;padding:24px;color:#fff;
}
.fd-sidebar-cta h4 { color:#fff;font-size:1rem;font-weight:700;margin-bottom:6px; }
.fd-sidebar-cta p  { font-size:.82rem;color:rgba(255,255,255,.8);margin-bottom:16px; }
.fd-sidebar-wa-btn {
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:11px;background:#25d366;color:#fff;border-radius:8px;
  font-weight:700;font-size:.86rem;margin-bottom:10px;text-decoration:none;
}
.fd-sidebar-call-btn {
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:11px;background:rgba(255,255,255,.15);color:#fff;
  border-radius:8px;font-weight:600;font-size:.86rem;
  border:1px solid rgba(255,255,255,.3);text-decoration:none;
}
.fd-sidebar-links {
  background:#f4f8fd;border-radius:12px;padding:18px;
}
.fd-sidebar-links h5 {
  font-size:.78rem;font-weight:700;text-transform:uppercase;
  letter-spacing:1px;color:var(--brand);margin-bottom:12px;
}
.fd-sidebar-links ul { list-style:none;padding:0;margin:0; }
.fd-sidebar-links li a {
  font-size:.84rem;color:#3d5166;display:flex;align-items:center;
  gap:7px;padding:8px 0;border-bottom:1px solid #e2e8f0;
  text-decoration:none;transition:color .2s;
}
.fd-sidebar-links li:last-child a { border-bottom:none; }
.fd-sidebar-links li a:hover { color:var(--brand); }
.fd-sidebar-links li a i { font-size:.7rem;color:var(--brand); }
@media(max-width:900px) {
  .fd-service-detail-grid { grid-template-columns:1fr; }
  .fd-service-sidebar { position:static; }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.fd-contact-section { padding:72px 0;background:#fff; }
.fd-contact-grid {
  display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:start;
}
.fd-contact-info-item {
  display:flex;align-items:flex-start;gap:16px;margin-bottom:24px;
}
.fd-contact-info-icon {
  width:48px;height:48px;min-width:48px;border-radius:12px;
  background:var(--brand-light);display:flex;align-items:center;
  justify-content:center;color:var(--brand);font-size:1.1rem;
}
.fd-contact-info-label {
  font-size:.72rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.08em;color:var(--brand);margin-bottom:4px;
}
.fd-contact-info-val { font-size:.95rem;font-weight:600;color:#0d1b2a; }
.fd-contact-info-val a { color:#0d1b2a;text-decoration:none; }
.fd-contact-info-val a:hover { color:var(--brand); }
.fd-map-wrap {
  border-radius:16px;overflow:hidden;height:440px;
  box-shadow:0 8px 40px rgba(0,0,0,.1);
}
.fd-map-wrap iframe { width:100%;height:100%;border:0; }
.fd-map-placeholder {
  width:100%;height:440px;background:#f4f8fd;border-radius:16px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;color:#6b7f93;
}
.fd-map-placeholder i { font-size:3rem;opacity:.3; }
@media(max-width:768px) {
  .fd-contact-grid { grid-template-columns:1fr; }
}



/* ═══════════════════════════════════════════════════
   FAQ RESPONSIVE (mobile stack)
═══════════════════════════════════════════════════ */
@media(max-width:768px) {
  .fd-faq-outer {
    grid-template-columns:1fr !important;
  }
  .fd-faq-outer > div:last-child {
    position:static !important;
  }
}


/* ═══════════════════════════════════════════════════
   SERVICE DETAIL PAGE v2 — Full Redesign
═══════════════════════════════════════════════════ */

/* ── Hero ── */
.svc-hero {
  position:relative;min-height:420px;display:flex;
  align-items:flex-end;padding-bottom:0;overflow:hidden;
  background:var(--brand);
}
.svc-hero-bg {
  position:absolute;inset:0;background-size:cover;
  background-position:center;opacity:.18;
}
.svc-hero-bg-plain { background:none; }
.svc-hero-overlay {
  position:absolute;inset:0;
  background:linear-gradient(160deg,var(--brand) 40%,rgba(5,30,62,.85));
}
.svc-hero-content {
  position:relative;z-index:2;
  padding:72px 0 52px;max-width:720px;
}
.svc-hero-tag {
  display:inline-flex;align-items:center;gap:7px;
  background:rgba(255,255,255,.15);border:1px solid rgba(255,255,255,.25);
  color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.08em;
  text-transform:uppercase;padding:5px 14px;border-radius:50px;margin-bottom:16px;
}
.svc-hero-title {
  font-size:clamp(1.7rem,4vw,2.8rem);font-weight:800;
  color:#fff;line-height:1.2;margin-bottom:14px;
}
.svc-hero-sub {
  font-size:.95rem;color:rgba(255,255,255,.8);
  line-height:1.7;margin-bottom:28px;max-width:580px;
}
.svc-hero-actions { display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px; }
.svc-breadcrumb {
  display:flex;align-items:center;gap:8px;
  font-size:.78rem;color:rgba(255,255,255,.6);flex-wrap:wrap;
}
.svc-breadcrumb a { color:rgba(255,255,255,.7);text-decoration:none; }
.svc-breadcrumb a:hover { color:#fff; }
.svc-breadcrumb i { font-size:.6rem; }
.svc-breadcrumb span { color:rgba(255,255,255,.9); }

/* ── Buttons ── */
.svc-btn-wa {
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 22px;background:#25d366;color:#fff;
  border-radius:var(--btn-radius,6px);font-weight:700;
  font-size:.9rem;text-decoration:none;transition:.2s;white-space:nowrap;
}
.svc-btn-wa:hover { background:#1da851;color:#fff;transform:translateY(-2px); }
.svc-btn-call {
  display:inline-flex;align-items:center;gap:8px;
  padding:12px 22px;background:rgba(255,255,255,.15);
  border:1.5px solid rgba(255,255,255,.35);color:#fff;
  border-radius:var(--btn-radius,6px);font-weight:600;
  font-size:.9rem;text-decoration:none;transition:.2s;white-space:nowrap;
}
.svc-btn-call:hover { background:rgba(255,255,255,.25);color:#fff; }
.svc-btn-full { width:100%;justify-content:center; }

/* ── Body grid ── */
.svc-body { padding:56px 0 72px;background:#f4f8fd; }
.svc-body-grid {
  display:grid;grid-template-columns:1fr 320px;
  gap:32px;align-items:start;
}

/* ── Main content ── */
.svc-main { display:flex;flex-direction:column;gap:28px; }

.svc-excerpt-box {
  background:#fff;border-left:4px solid var(--brand);
  border-radius:0 12px 12px 0;padding:22px 24px;
  position:relative;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.svc-excerpt-icon {
  color:var(--brand);font-size:1.5rem;opacity:.2;
  position:absolute;top:14px;right:18px;
}
.svc-excerpt-box p {
  font-size:1rem;color:#3d5166;line-height:1.75;
  font-style:italic;margin:0;
}

/* Content body — clean article typography */
.svc-content-body {
  background:#fff;border-radius:14px;padding:32px;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
  font-size:.95rem;color:#3d5166;line-height:1.85;
}
.svc-content-body p  { margin-bottom:16px; }
.svc-content-body p:last-child { margin-bottom:0; }
.svc-content-body b,
.svc-content-body strong { color:#0d1b2a;font-weight:700; }
.svc-content-body h2,
.svc-content-body h3 {
  color:#0d1b2a;font-weight:700;margin:24px 0 12px;
  font-family:var(--h-font,'Poppins',sans-serif);
}
.svc-content-body ul,
.svc-content-body ol { padding-left:20px;margin-bottom:16px; }
.svc-content-body li { margin-bottom:6px; }

/* Inline CTA strip */
.svc-inline-cta {
  background:linear-gradient(135deg,var(--brand),#051e3e);
  border-radius:14px;padding:24px 28px;
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;flex-wrap:wrap;
}
.svc-inline-cta-text {
  display:flex;align-items:center;gap:16px;color:#fff;
}
.svc-inline-cta-icon {
  font-size:2rem;color:rgba(255,255,255,.5);flex-shrink:0;
}
.svc-inline-cta h4 { color:#fff;font-size:.95rem;font-weight:700;margin-bottom:4px; }
.svc-inline-cta p  { color:rgba(255,255,255,.75);font-size:.82rem;margin:0; }

/* Block titles */
.svc-block-title {
  display:flex;align-items:center;gap:12px;
  font-size:1.05rem;font-weight:700;color:#0d1b2a;
  margin-bottom:20px;
}
.svc-block-title-line {
  width:4px;height:22px;background:var(--brand);
  border-radius:2px;flex-shrink:0;display:inline-block;
}

/* Doctor cards */
.svc-doctors-block { background:#fff;border-radius:14px;padding:28px;box-shadow:0 2px 16px rgba(0,0,0,.06); }
.svc-doc-cards { display:flex;flex-direction:column;gap:12px; }
.svc-doc-card {
  display:flex;align-items:center;gap:14px;
  padding:14px 16px;border:1.5px solid #e2e8f0;
  border-radius:10px;text-decoration:none;transition:.2s;
  background:#f4f8fd;
}
.svc-doc-card:hover { border-color:var(--brand);background:#fff;transform:translateX(4px); }
.svc-doc-photo {
  width:52px;height:52px;min-width:52px;border-radius:50%;
  overflow:hidden;background:var(--brand-light);
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);font-size:1.4rem;
}
.svc-doc-photo img { width:100%;height:100%;object-fit:cover;object-position:top; }
.svc-doc-name  { font-size:.9rem;font-weight:700;color:#0d1b2a; }
.svc-doc-desig { font-size:.75rem;color:var(--brand);margin-top:2px; }
.svc-doc-exp   { font-size:.72rem;color:#6b7f93;margin-top:3px;display:flex;align-items:center;gap:4px; }
.svc-doc-exp i { color:var(--brand); }
.svc-doc-arrow { margin-left:auto;color:#e2e8f0;font-size:.8rem;transition:.2s;flex-shrink:0; }
.svc-doc-card:hover .svc-doc-arrow { color:var(--brand); }

/* Related services */
.svc-related-block { background:#fff;border-radius:14px;padding:28px;box-shadow:0 2px 16px rgba(0,0,0,.06); }
.svc-related-grid {
  display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:16px;
}
.svc-related-card {
  border:1.5px solid #e2e8f0;border-radius:12px;
  overflow:hidden;text-decoration:none;transition:.3s;background:#fff;
  display:flex;flex-direction:column;
}
.svc-related-card:hover { border-color:var(--brand);transform:translateY(-4px);box-shadow:0 8px 32px rgba(0,0,0,.1); }
.svc-related-img { height:130px;overflow:hidden; }
.svc-related-img img { width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.svc-related-card:hover .svc-related-img img { transform:scale(1.05); }
.svc-related-img-placeholder {
  width:100%;height:130px;background:var(--brand-light);
  display:flex;align-items:center;justify-content:center;
  font-size:2rem;color:var(--brand);opacity:.4;
}
.svc-related-body { padding:14px;flex:1; }
.svc-related-body h5 {
  font-size:.82rem;font-weight:700;color:#0d1b2a;
  margin-bottom:6px;line-height:1.4;
}
.svc-related-body p {
  font-size:.75rem;color:#6b7f93;line-height:1.5;margin-bottom:8px;
}
.svc-related-link {
  font-size:.75rem;font-weight:700;color:var(--brand);
  display:flex;align-items:center;gap:4px;
}

/* ── Sidebar ── */
.svc-sidebar { position:sticky;top:90px;display:flex;flex-direction:column;gap:20px; }

.svc-sidebar-cta {
  background:linear-gradient(145deg,var(--brand),#046060);
  border-radius:16px;padding:24px;color:#fff;
}
.svc-sidebar-cta-header {
  display:flex;align-items:flex-start;gap:12px;margin-bottom:18px;
}
.svc-sidebar-cta-header > i {
  font-size:1.6rem;color:rgba(255,255,255,.6);flex-shrink:0;margin-top:2px;
}
.svc-sidebar-cta h4 { color:#fff;font-size:1rem;font-weight:700;margin-bottom:4px; }
.svc-sidebar-cta p  { font-size:.78rem;color:rgba(255,255,255,.7);margin:0; }
.svc-sidebar-timing {
  margin-top:14px;font-size:.75rem;color:rgba(255,255,255,.6);
  display:flex;align-items:center;gap:6px;
}
.svc-sidebar-timing i { opacity:.7; }

.svc-sidebar-links {
  background:#fff;border-radius:14px;padding:20px;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.svc-sidebar-links h5 {
  font-size:.78rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.09em;color:var(--brand);margin-bottom:14px;
  display:flex;align-items:center;gap:7px;
}
.svc-sidebar-links ul { list-style:none;padding:0;margin:0; }
.svc-sidebar-links li { border-bottom:1px solid #f0f4f8; }
.svc-sidebar-links li:last-child { border-bottom:none; }
.svc-sidebar-links li a {
  display:flex;align-items:center;gap:8px;padding:9px 0;
  font-size:.82rem;color:#3d5166;text-decoration:none;transition:.2s;
}
.svc-sidebar-links li a:hover { color:var(--brand);padding-left:4px; }
.svc-sidebar-links li a i { font-size:.65rem;color:var(--brand);flex-shrink:0; }
.svc-sidebar-link-active span {
  display:flex;align-items:center;gap:8px;padding:9px 0;
  font-size:.82rem;color:var(--brand);font-weight:700;
}
.svc-sidebar-link-active i { font-size:.75rem; }

.svc-trust-box {
  background:#fff;border-radius:14px;padding:20px;
  box-shadow:0 2px 16px rgba(0,0,0,.06);
}
.svc-trust-box h5 {
  font-size:.78rem;font-weight:700;text-transform:uppercase;
  letter-spacing:.09em;color:var(--brand);margin-bottom:14px;
}
.svc-trust-items { display:flex;flex-direction:column;gap:12px; }
.svc-trust-item { display:flex;align-items:flex-start;gap:10px; }
.svc-trust-item > i {
  color:var(--brand);font-size:.95rem;
  margin-top:2px;flex-shrink:0;width:18px;
}
.svc-trust-item strong {
  display:block;font-size:.82rem;font-weight:700;color:#0d1b2a;
}
.svc-trust-item span { font-size:.74rem;color:#6b7f93; }

/* ── Bottom CTA ── */
.svc-bottom-cta { background:var(--brand);padding:48px 0; }
.svc-bottom-cta-inner {
  display:flex;align-items:center;justify-content:space-between;
  gap:24px;flex-wrap:wrap;
}
.svc-bottom-cta h2 { color:#fff;font-size:clamp(1.2rem,3vw,1.8rem);font-weight:800;margin-bottom:6px; }
.svc-bottom-cta p  { color:rgba(255,255,255,.75);font-size:.9rem;margin:0; }
.svc-bottom-cta-actions { display:flex;gap:12px;flex-wrap:wrap;flex-shrink:0; }

/* ── Responsive ── */
@media(max-width:1024px) {
  .svc-body-grid { grid-template-columns:1fr 280px; }
}
@media(max-width:900px) {
  .svc-body-grid { grid-template-columns:1fr; }
  .svc-sidebar   { position:static;display:grid;grid-template-columns:1fr 1fr;gap:16px; }
  .svc-sidebar-cta { grid-column:1/-1; }
  .svc-bottom-cta-inner { flex-direction:column;text-align:center; }
  .svc-bottom-cta-actions { justify-content:center; }
  .svc-inline-cta { flex-direction:column; }
}
@media(max-width:600px) {
  .svc-hero-actions { flex-direction:column; }
  .svc-related-grid { grid-template-columns:1fr; }
  .svc-sidebar { grid-template-columns:1fr; }
}


/* ═══════════════════════════════════════════════════
   LOGO SIZE — header + footer
═══════════════════════════════════════════════════ */
.nav-logo img { height:68px !important; width:auto; display:block; }
footer .footer-brand img { height:64px !important; width:auto; }

/* ═══════════════════════════════════════════════════
   SERVICE CARD IMAGE — fix overlap / contain
═══════════════════════════════════════════════════ */
.fd-service-card { display:flex; flex-direction:column; }
.fd-service-card-img {
  width:100%; height:180px; overflow:hidden; flex-shrink:0; position:relative;
}
.fd-service-card-img img {
  width:100%; height:100%; object-fit:cover;
  display:block; position:absolute; inset:0;
}
.fd-service-card-body { padding:18px; flex:1; }

/* ═══════════════════════════════════════════════════
   DUAL FLOAT BUTTON (WA + AI Chat)
   Replaces wa-sticky
═══════════════════════════════════════════════════ */
.fd-float-wrap {
  position:fixed; bottom:24px; right:24px;
  z-index:9998; display:flex; flex-direction:column;
  align-items:flex-end; gap:10px;
}
.fd-float-toggle {
  width:58px; height:58px; border-radius:50%;
  background:var(--brand); color:#fff; border:none;
  cursor:pointer; display:flex; align-items:center;
  justify-content:center; font-size:1.4rem;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:transform .2s, box-shadow .2s;
  position:relative; z-index:2;
}
.fd-float-toggle:hover { transform:scale(1.08); box-shadow:0 6px 24px rgba(0,0,0,.25); }

.fd-float-options {
  display:flex; flex-direction:column; gap:10px;
  align-items:flex-end;
  opacity:0; pointer-events:none;
  transform:translateY(16px) scale(.95);
  transition:opacity .22s, transform .22s;
}
.fd-float-options.fd-float-options-open {
  opacity:1; pointer-events:all;
  transform:translateY(0) scale(1);
}

.fd-float-opt {
  display:flex; align-items:center; gap:10px;
  background:none; border:none; cursor:pointer; padding:0;
  text-decoration:none;
}
.fd-float-opt-label {
  background:rgba(15,27,42,.78); color:#fff;
  font-size:.76rem; font-weight:700;
  padding:4px 10px; border-radius:20px;
  white-space:nowrap; backdrop-filter:blur(4px);
}
.fd-float-opt-btn {
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:1.25rem; color:#fff;
  box-shadow:0 3px 14px rgba(0,0,0,.18);
  transition:transform .2s;
}
.fd-float-opt:hover .fd-float-opt-btn { transform:scale(1.1); }

.fd-float-wa   .fd-float-opt-btn { background:#25d366; }
.fd-float-chat .fd-float-opt-btn { background:var(--brand); }

/* Move back-to-top so it doesn't clash */
#fd-back-top { bottom:96px !important; }

/* ═══════════════════════════════════════════════════
   CONTACT PAGE — CTA banner fix
═══════════════════════════════════════════════════ */
.fd-cta-banner {
  background:var(--brand); padding:56px 0;
}
.fd-cta-banner-inner {
  display:flex; align-items:center;
  justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.fd-cta-banner-text h2 {
  font-size:clamp(1.3rem,3vw,1.9rem); font-weight:800; color:#fff; margin-bottom:6px;
}
.fd-cta-banner-text p { color:rgba(255,255,255,.8); font-size:.93rem; margin:0; }
.fd-cta-banner-actions { display:flex; gap:12px; flex-wrap:wrap; flex-shrink:0; }
.fd-cta-btn-wa {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; background:#25d366; color:#fff;
  border-radius:var(--btn-radius,6px); font-weight:700;
  font-size:.9rem; text-decoration:none; transition:.2s;
}
.fd-cta-btn-wa:hover { background:#1da851; color:#fff; }
.fd-cta-btn-call {
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; background:rgba(255,255,255,.15);
  border:1.5px solid rgba(255,255,255,.4); color:#fff;
  border-radius:var(--btn-radius,6px); font-weight:600;
  font-size:.9rem; text-decoration:none; transition:.2s;
}
.fd-cta-btn-call:hover { background:rgba(255,255,255,.25); color:#fff; }
@media(max-width:768px) {
  .fd-cta-banner-inner { flex-direction:column; text-align:center; }
  .fd-cta-banner-actions { justify-content:center; }
}

/* ═══════════════════════════════════════════════════
   APPOINTMENT FORM — date/time input styling
═══════════════════════════════════════════════════ */
.fd-form-group input[type="date"] {
  width:100%; padding:11px 14px; border:1.5px solid var(--border,#e2e8f0);
  border-radius:8px; font-size:.88rem; color:var(--text-dark);
  background:#fff; outline:none; font-family:inherit;
  transition:border-color .2s;
}
.fd-form-group input[type="date"]:focus { border-color:var(--brand); }


/* ═══════════════════════════════════════════════════
   COSMETIC FIXES — May 2026
═══════════════════════════════════════════════════ */

/* 1. Testimonial carousel — nav arrows centred, dots below */
#fd-testi-owl {
  position: relative;
  padding: 0 0 40px; /* room for dots */
}
#fd-testi-owl .owl-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-60%);
  display: flex !important;
  justify-content: space-between;
  pointer-events: none;
  margin: 0;
}
#fd-testi-owl .owl-nav button {
  pointer-events: all;
  position: static !important;
  transform: none !important;
}
#fd-testi-owl .owl-nav .owl-prev { margin-left: -18px; }
#fd-testi-owl .owl-nav .owl-next { margin-right: -18px; }
#fd-testi-owl .owl-dots {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  text-align: center;
  margin: 0 !important;
}
@media(max-width:768px) {
  #fd-testi-owl .owl-nav .owl-prev { margin-left: 0; }
  #fd-testi-owl .owl-nav .owl-next { margin-right: 0; }
}

/* 2. Back-to-top — sits cleanly above chat toggle */
#fd-back-top {
  bottom: 92px !important;
  right: 24px !important;
}

/* 3. Chat window z-index higher than mobile-nav
   so close button is never blocked */
.chat-window,
#n8n-chat .chat-window,
[class*="n8n"] .chat-window {
  z-index: 10002 !important; /* above mobile-nav z-index:10001 */
}

/* ── Video Testimonials ────────────────────────────────── */
.fd-video-testi-wrap { margin-top:48px; }
.fd-video-testi-heading {
    font-size:1.1rem; font-weight:700; color:var(--text-dark);
    margin-bottom:20px; text-align:center;
}
.fd-video-testi-item  { padding:0 6px; }
.fd-video-ratio {
    position:relative; padding-bottom:56.25%; height:0;
    overflow:hidden; border-radius:12px;
    box-shadow:0 4px 20px rgba(0,0,0,.12);
}
.fd-video-ratio iframe {
    position:absolute; top:0; left:0;
    width:100%; height:100%; border:none;
}
.fd-video-testi-name {
    text-align:center; margin-top:10px;
    font-size:.85rem; font-weight:600; color:var(--text-mid);
}

/* ═══════════════════════════════════════════════════
   HERO BOOKING CARD — always visible on mobile
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .fd-hero { min-height: auto; padding-bottom: 40px; }
    .fd-hero-grid { padding: 90px 0 40px; }
    .fd-hero-card-wrap {
        display: flex !important;
        width: 100%;
        margin-top: 28px;
        padding: 0 16px;
    }
    .fd-hero-card { max-width: 100%; padding: 24px; }
}
@media (max-width: 480px) {
    .fd-hero-grid { padding: 80px 0 32px; }
    .fd-hero-card-wrap { display: flex !important; padding: 0 12px; }
    .fd-hero-card { padding: 20px 16px; }
    .fd-hero-card-title { font-size: 1.1rem; }
    /* Video testi responsive */
    .fd-video-ratio {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 12px;
    }
    .fd-video-ratio iframe {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        border: 0;
    }
}
/* Video testimonial styles */
.fd-video-testi-wrap {
    margin-top: 48px;
}
.fd-video-testi-heading {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--h-color, #0d1b2a);
    text-align: center;
    margin-bottom: 28px;
}
.fd-video-testi-item { padding: 0 8px; }
.fd-video-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}
.fd-video-ratio iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.fd-video-testi-name {
    text-align: center;
    margin-top: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
}
