/* =====================================================================
   Vibes Medical Tourism — styles.css
   Tuned to match client's Figma exactly
   - Font: Montserrat (300/400/500/600 + italic 300)
   - Colors from Figma: #0f2a3f / #d4a24c / #6b6356 / #faf5ea / #f4ecdc /
     #f7e8e4 / #fbfaf6 / #e5ddc9
   ===================================================================== */

:root {
  /* Brand — exact Figma values */
  --navy:        #0f2a3f;
  --navy-deep:   #0a1e2e;
  --navy-soft:   rgba(15, 42, 63, 0.9);
  --gold:        #d4a24c;
  --gold-hover:  #b8862e;
  --brown:       #6b6356;    /* eyebrow + body text */
  --brown-light: rgba(107, 99, 86, 0.7);
  --cream:       #faf5ea;    /* page bg */
  --cream-soft:  #fbfaf6;    /* card bg */
  --bone:        #f4ecdc;    /* darker cream sections */
  --blush:       #f7e8e4;    /* pink section / pills */
  --line:        #e5ddc9;    /* soft border */
  --line-dark:   rgba(15, 42, 63, 0.12);

  /* Type */
  --sans: 'Montserrat', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1369px;
  --inner: 1241px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
svg { display: block; }

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

/* =====================================================================
   Header — sticky white-cream, simple
   ===================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 234, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 221, 201, 0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.logo.light { color: var(--cream); }
.logo-dot {
  color: var(--gold);
  font-size: 18px;
  line-height: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--navy);
  padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-block;
  font-size: 13px;
  color: var(--navy);
  padding: 8px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-weight: 500;
  transition: all .2s;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
}
.lang-switch:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 162, 76, 0.05);
}
.btn-chat {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all .2s;
}
.btn-chat:hover {
  background: var(--navy);
  color: var(--gold);
  transform: scale(1.05);
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-radius: 100px;
  transition: all .25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 42, 63, 0.2);
}
.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 42, 63, 0.3);
}
.btn-gold-final {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold-final svg { width: 16px; height: 16px; }
.btn-gold-final:hover {
  background: #b88a3a;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--cream);
}
.btn-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15, 42, 63, 0.3);
  transition: color .2s;
}
.btn-link.light { color: var(--cream); text-decoration-color: rgba(250, 245, 234, 0.3); }
.btn-link:hover { color: var(--gold); }
.btn-link.light:hover { color: var(--gold); }

/* =====================================================================
   Section base — Montserrat typography
   ===================================================================== */
section { padding: 96px 0; position: relative; }

.section-head { margin-bottom: 64px; }
.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 22px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brown);
}
.eyebrow-line.gold,
.eyebrow.gold .eyebrow-line { background: var(--gold); }

/* White pill eyebrow (used in FinalCTA over dark photo) */
.eyebrow.pill-white {
  background: var(--cream);
  color: var(--brown);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--sans);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.section-title.white { color: var(--cream); }
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.section-sub {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--brown);
  max-width: 600px;
}
.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}
.section-sub.light { color: rgba(250, 245, 234, 0.75); }

/* =====================================================================
   HERO — Text left, image right with testimonial overlay
   ===================================================================== */
.hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text { max-width: 580px; }

.hero-text .eyebrow { margin-bottom: 28px; }

.hero h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 4.6vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-lead {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--brown);
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-point {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: 14px;
  transition: all .25s;
}
.hero-point:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}
.hp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blush);
  color: var(--gold);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.hp-icon svg { width: 20px; height: 20px; }
.hero-point p {
  font-size: 14.5px;
  color: var(--brown);
  line-height: 1.55;
}
.hero-point strong {
  color: var(--navy);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero media (image right + testimonial overlay) */
.hero-media {
  position: relative;
}
.hero-image {
  position: relative;
  height: 620px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 42, 63, 0.18);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-testimonial {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  background: rgba(250, 245, 234, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 22px 26px;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(15, 42, 63, 0.22);
}
.ht-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--gold);
}
.ht-stars svg { width: 14px; height: 14px; }
.ht-quote {
  font-size: 14.5px;
  font-style: italic;
  color: var(--brown);
  line-height: 1.55;
  margin-bottom: 10px;
}
.ht-attr {
  font-size: 13px;
  color: var(--brown);
}
.ht-attr strong {
  color: var(--navy);
  font-weight: 600;
}

/* =====================================================================
   FEATURED JOURNEYS — Curated this month
   ===================================================================== */
.featured-journeys {
  background: var(--bone);
}

.fj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fj-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(15, 42, 63, 0.15);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.fj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(15, 42, 63, 0.22);
}

/* Featured (gold) variant */
.fj-card.featured {
  background: var(--gold);
}
.fj-card.featured .fj-tag,
.fj-card.featured .fj-price-label,
.fj-card.featured .fj-clinic-label { color: var(--navy); }
.fj-card.featured .fj-body p,
.fj-card.featured .fj-clinic-label { color: rgba(10, 30, 46, 0.55); }
.fj-card.featured h3,
.fj-card.featured .fj-price,
.fj-card.featured .fj-clinic-name { color: var(--navy); }
.fj-card.featured .fj-body p { color: var(--navy-deep); opacity: 0.85; }
.fj-card.featured .fj-clinic { border-bottom-color: rgba(15, 42, 63, 0.15); }
.fj-card.featured .fj-arrow.dark { background: var(--navy); color: var(--gold); }

.fj-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.fj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.fj-card:hover .fj-img img { transform: scale(1.05); }

.fj-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy-soft);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

.fj-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.fj-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 22px;
}
.fj-body h3 {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.fj-body > p {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.5;
  margin-bottom: 20px;
  flex: 1;
}

.fj-clinic {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.fj-clinic-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.fj-clinic-icon img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.fj-clinic-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 2px;
}
.fj-clinic-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

.fj-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fj-price-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 2px;
}
.fj-price {
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
}
.fj-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: grid;
  place-items: center;
  transition: all .25s;
}
.fj-arrow:hover {
  background: var(--navy);
  color: var(--gold);
  transform: rotate(-45deg);
}
.fj-arrow svg { width: 20px; height: 20px; }

/* =====================================================================
   TWO CITIES — Cairo & Alexandria
   ===================================================================== */
.two-cities { background: var(--cream); }
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.city-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
}
.city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(15, 42, 63, 0.18);
}
.city-img {
  height: 340px;
  position: relative;
  overflow: hidden;
}
.city-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.city-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 42, 63, 0.35));
}
.city-card:hover .city-img img { transform: scale(1.04); }

.city-body { padding: 36px; }
.city-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.city-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.04em;
}
.city-tag {
  background: var(--blush);
  color: var(--brown);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
}
.city-card h3 {
  font-family: var(--sans);
  font-size: 40px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.city-sub em {
  font-style: italic;
  color: var(--gold);
  font-size: 17px;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
}
.city-desc {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 24px;
}

.city-clinics {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.city-clinics-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brown);
  margin-bottom: 14px;
}
.city-clinics-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.cc-star { color: var(--gold); font-size: 12px; }
.cc-featured {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
}
.city-clinics-more {
  margin-top: 12px;
  font-size: 13px;
  color: var(--brown);
}

.city-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(15, 42, 63, 0.3);
  transition: color .2s;
}
.city-link svg { width: 16px; height: 16px; transition: transform .25s; }
.city-link:hover { color: var(--gold); }
.city-link:hover svg { transform: translateX(4px); }

/* =====================================================================
   SERVICES — Comprehensive care
   ===================================================================== */
.services { background: var(--bone); }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all .3s;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(15, 42, 63, 0.15);
  border-color: var(--gold);
}
.svc-img {
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}
.svc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-card h4 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-card > p {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.55;
  margin-bottom: 18px;
}
.svc-list {
  margin-bottom: 22px;
}
.svc-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.7;
}
.svc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  letter-spacing: 0.02em;
  transition: gap .25s;
}
.svc-link svg { width: 14px; height: 14px; }
.svc-card:hover .svc-link { gap: 14px; }

/* =====================================================================
   HOW IT WORKS — dark navy, 7 steps
   ===================================================================== */
.how-it-works {
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.16), transparent 60%);
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(250, 245, 234, 0.12);
  position: relative;
}
.step {
  padding: 32px 22px;
  border-right: 1px solid rgba(250, 245, 234, 0.12);
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--sans);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.step h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 13px;
  color: rgba(250, 245, 234, 0.65);
  line-height: 1.55;
}

/* =====================================================================
   FEATURED CLINICS — image cards
   ===================================================================== */
.featured-clinics { background: var(--cream); }
.fc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.fc-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.fc-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.fc-card:hover img { transform: scale(1.05); }
.fc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 42, 63, 0.85));
}
.fc-label {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
}
.fc-label strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.fc-label span {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* =====================================================================
   MARQUEE STRIP — scrolling text
   ===================================================================== */
.marquee {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(212, 162, 76, 0.25);
  border-bottom: 1px solid rgba(212, 162, 76, 0.25);
}
.marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.marquee-track i {
  color: var(--gold);
  font-style: normal;
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================================
   BEFORE & AFTER — photo comparison cards
   ===================================================================== */
.before-after { background: var(--blush); }
.before-after .eyebrow { color: var(--brown); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ba-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px -24px rgba(15, 42, 63, 0.15);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.ba-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(15, 42, 63, 0.2);
}
.ba-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 290px;
}
.ba-img-half {
  position: relative;
  overflow: hidden;
}
.ba-img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-label {
  position: absolute;
  top: 12px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}
.ba-label-before {
  left: 12px;
  background: var(--navy);
  color: var(--cream);
}
.ba-label-after {
  right: 12px;
  background: var(--gold);
  color: var(--navy);
}
.ba-body {
  padding: 26px 28px 30px;
}
.ba-cat {
  font-size: 11.5px;
  color: var(--gold);
  letter-spacing: 0.18em;
  font-weight: 500;
  margin-bottom: 10px;
}
.ba-body h3 {
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.ba-body p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--brown);
}

/* =====================================================================
   PATIENT VOICES — Dark navy testimonials section
   ===================================================================== */
.patient-voices {
  background: var(--navy);
  color: var(--cream);
  padding: 110px 0;
}
.patient-voices .section-head { margin-bottom: 56px; }
.patient-voices .section-sub { color: rgba(250, 245, 234, 0.65); }

.eyebrow.pill-dark {
  background: rgba(250, 245, 234, 0.08);
  color: rgba(250, 245, 234, 0.7);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

/* Featured story card */
.pv-featured {
  position: relative;
  height: 540px;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 28px;
}
.pv-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.pv-featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 63, 0) 0%, rgba(15, 42, 63, 0.65) 100%);
}
.pv-featured-body {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  color: var(--cream);
}
.pv-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.pv-pill svg { width: 12px; height: 12px; }
.pv-featured-body h3 {
  font-family: var(--sans);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 6px;
}
.pv-featured-body p {
  font-size: 14.5px;
  color: rgba(250, 245, 234, 0.7);
}

/* Two main story cards */
.pv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.pv-card {
  background: rgba(250, 245, 234, 0.04);
  border: 1px solid rgba(250, 245, 234, 0.08);
  border-radius: 18px;
  overflow: hidden;
}
.pv-img {
  position: relative;
  height: 280px;
}
.pv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pv-pill-sm {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 100px;
}
.pv-pill-sm svg { width: 10px; height: 10px; }
.pv-body {
  padding: 26px 28px 28px;
}
.pv-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  color: var(--gold);
}
.pv-stars svg { width: 14px; height: 14px; }
.pv-quote {
  font-size: 15px;
  line-height: 1.6;
  font-style: italic;
  color: rgba(250, 245, 234, 0.85);
  margin-bottom: 20px;
}
.pv-attr strong {
  display: block;
  font-style: normal;
  font-size: 14.5px;
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 3px;
}
.pv-attr span {
  display: block;
  font-style: normal;
  font-size: 12.5px;
  color: rgba(250, 245, 234, 0.55);
}

/* More voices */
.pv-more {
  border-top: 1px solid rgba(250, 245, 234, 0.1);
  padding-top: 36px;
}
.pv-more-label {
  text-align: center;
  font-size: 11.5px;
  color: rgba(250, 245, 234, 0.6);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.pv-more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pv-small {
  background: rgba(250, 245, 234, 0.04);
  border: 1px solid rgba(250, 245, 234, 0.08);
  border-radius: 14px;
  padding: 22px 24px;
}
.pv-small .pv-stars { margin-bottom: 12px; }
.pv-small .pv-stars svg { width: 12px; height: 12px; }
.pv-small .pv-quote {
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.pv-small .pv-attr strong { font-size: 13.5px; }
.pv-small .pv-attr span { font-size: 11.5px; }

/* =====================================================================
   TRUST & SAFETY — cards with gold icons
   ===================================================================== */
.trust-safety { background: var(--cream); }
.ts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ts-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all .3s;
}
.ts-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px -12px rgba(15, 42, 63, 0.1);
}
.ts-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blush);
  color: var(--gold);
  margin-bottom: 22px;
}
.ts-icon svg { width: 24px; height: 24px; }
.ts-card h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.ts-card p {
  font-size: 14px;
  color: var(--brown);
  line-height: 1.6;
}

/* =====================================================================
   FAQ — clean light card list
   ===================================================================== */
.faq { background: var(--bone); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s;
}
.faq-item[open] {
  border-color: var(--gold);
}
.faq-item summary {
  padding: 26px 30px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  letter-spacing: -0.01em;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-content {
  padding: 0 30px 26px;
}
.faq-content p {
  font-size: 15px;
  color: var(--brown);
  line-height: 1.7;
  max-width: 760px;
}

/* =====================================================================
   FINAL CTA
   ===================================================================== */
.final-cta {
  padding: 110px 0;
  background: var(--cream);
  color: var(--navy);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 245, 234, 0.55), rgba(250, 245, 234, 0.55)),
    url('https://images.unsplash.com/photo-1568322445389-f64ac2515099?w=2000&q=70');
  background-size: cover;
  background-position: center;
}
.final-cta-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.final-cta .eyebrow { margin-bottom: 26px; justify-content: center; }
.final-cta h2 { color: var(--navy); }
.final-cta .section-sub {
  color: var(--brown);
  margin-left: auto;
  margin-right: auto;
}
.final-cta-actions {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* =====================================================================
   Footer
   ===================================================================== */
footer {
  background: var(--navy-deep);
  color: var(--cream);
  padding: 80px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.1fr 1.2fr;
  gap: 60px;
  margin-bottom: 60px;
}
.foot-brand .logo { margin-bottom: 18px; }
.foot-brand p {
  font-size: 14px;
  color: rgba(250, 245, 234, 0.6);
  max-width: 320px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.foot-social {
  display: flex;
  gap: 10px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(250, 245, 234, 0.06);
  color: var(--cream);
  display: grid;
  place-items: center;
  transition: all .2s;
}
.foot-social a:hover {
  background: var(--gold);
  color: var(--navy);
}
.foot-col h5 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}
.foot-col li {
  margin-bottom: 12px;
  font-size: 14px;
  color: rgba(250, 245, 234, 0.65);
  line-height: 1.55;
}
.foot-col a {
  color: rgba(250, 245, 234, 0.65);
  transition: color .2s;
}
.foot-col a:hover { color: var(--gold); }
.foot-col strong { color: var(--cream); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; }

.foot-sub {
  font-size: 13.5px !important;
  color: rgba(250, 245, 234, 0.6) !important;
  margin-bottom: 16px;
  line-height: 1.55;
}
.foot-form {
  display: flex;
  gap: 0;
  background: rgba(250, 245, 234, 0.08);
  border-radius: 100px;
  padding: 4px;
}
.foot-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--cream);
}
.foot-form input::placeholder { color: rgba(250, 245, 234, 0.4); }
.foot-form button {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.foot-form button:hover { background: var(--cream); }

.foot-bot {
  padding-top: 28px;
  border-top: 1px solid rgba(250, 245, 234, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 245, 234, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.foot-links { display: flex; gap: 22px; }
.foot-links a:hover { color: var(--gold); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1180px) {
  .container { padding: 0 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-image { height: 480px; }
  .svc-grid, .ts-grid, .fc-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step:nth-child(4) { border-right: none; }
  .step:nth-child(-n+4) { border-bottom: 1px solid rgba(250, 245, 234, 0.12); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .pv-grid { grid-template-columns: 1fr; }
  .pv-featured { height: 460px; }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }
  .container { padding: 0 22px; }
  .nav-links { display: none; }
  .hero { padding: 50px 0 80px; }
  .hero h1 { font-size: 36px; }
  .hero-image { height: 380px; }
  .fj-grid, .cities-grid, .ba-grid { grid-template-columns: 1fr; }
  .svc-grid, .ts-grid, .fc-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2n) { border-right: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-bot { justify-content: center; text-align: center; }
  .section-title { font-size: 32px; }
  .city-card h3 { font-size: 32px; }
  .city-num { font-size: 36px; }
  .pv-more-grid { grid-template-columns: 1fr; }
  .pv-featured { height: 360px; }
  .pv-featured-body { left: 24px; bottom: 24px; }
  .pv-featured-body h3 { font-size: 22px; }
  .ba-imgs { height: 220px; }
  .hero-testimonial { left: 16px; right: 16px; bottom: 16px; padding: 16px 18px; }
}

/* ============================================
   MOBILE HAMBURGER MENU (v6.3)
   ============================================ */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: all 0.25s;
}
.mobile-toggle span::before,
.mobile-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: all 0.25s;
}
.mobile-toggle span::before { top: -7px; }
.mobile-toggle span::after { top: 7px; }
.mobile-toggle.is-open span { background: transparent; }
.mobile-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.mobile-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 63, 0.6);
  backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s;
}
.mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 900px) {
  .mobile-toggle { display: flex; }
  .site-header .nav { position: relative; }

  .nav-links {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: 82% !important;
    max-width: 340px !important;
    background: var(--cream) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 90px 24px 24px !important;
    gap: 4px !important;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
    box-shadow: -20px 0 60px rgba(15, 42, 63, 0.2);
    height: 100vh !important;
    margin: 0 !important;
  }
  [dir="rtl"] .nav-links {
    right: auto !important;
    left: 0 !important;
    transform: translateX(-100%);
    box-shadow: 20px 0 60px rgba(15, 42, 63, 0.2);
  }
  .nav-links.is-open { transform: translateX(0); }

  .nav-links > a,
  .nav-links > .nav-dropdown > a {
    display: block;
    padding: 14px 16px !important;
    font-size: 16px !important;
    border-radius: 10px;
    color: var(--navy) !important;
    border-bottom: 1px solid var(--line);
  }
  .nav-links > a:hover,
  .nav-links > .nav-dropdown > a:hover { background: var(--cream-soft); }
  .nav-links > a.active,
  .nav-links > .nav-dropdown > a.active { color: var(--gold) !important; background: var(--cream-soft); }

  /* Mobile dropdown: convert to static list */
  .nav-dropdown { display: block !important; width: 100%; }
  .nav-dropdown .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 0 8px 20px !important;
    min-width: auto !important;
    display: none !important;
  }
  .nav-dropdown.is-open .dropdown-menu { display: block !important; }
  .nav-dropdown > a .caret { margin-left: auto; transition: transform 0.2s; }
  .nav-dropdown.is-open > a .caret { transform: rotate(180deg); }
  .nav-dropdown .dropdown-menu a {
    padding: 10px 16px !important;
    font-size: 14px !important;
    color: var(--brown) !important;
    border-radius: 8px;
  }
  [dir="rtl"] .nav-dropdown .dropdown-menu { padding: 0 20px 8px 0 !important; }

  /* Nav-right on mobile: keep visible in header */
  .nav-right { gap: 8px; }
  .lang-switch { padding: 6px 12px !important; font-size: 12px !important; }
  .btn-chat { width: 38px !important; height: 38px !important; }
}

@media (max-width: 480px) {
  .site-header .container.nav { padding: 12px 16px; }
  .logo img { height: 34px !important; }
}

/* ============================================
   VISUAL BUG FIXES v6.4
   ============================================ */

/* Fix oversized SVG icons — many icons in the codebase use <svg><use href="#ico-..."/></svg>
   without dimensions, so they inherit the parent's size. Cap them. */
svg { max-width: 100%; }
.pv-pill svg, .pv-pill-sm svg, .pv-stars svg,
.city-clinic svg, .ft-tab svg, .step-num svg,
[class*="badge"] svg, [class*="chip"] svg {
  width: 14px !important;
  height: 14px !important;
  vertical-align: middle;
  display: inline-block;
}
.pv-stars svg { width: 16px !important; height: 16px !important; }

/* Two-cities: if a partner clinic has no image, don't show a giant star. */
.city-clinic-img svg,
.city-clinics li svg,
.city-clinics li:before {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
}

/* Kill any oversized background/highlight overlays on Arabic pages.
   The gray boxes seen behind text on how-it-works come from :not(:defined)
   fallbacks or a repeated background gradient. Force clean transparent. */
[dir="rtl"] .how-steps .step,
[dir="rtl"] .how-title,
[dir="rtl"] .how-sub,
[dir="rtl"] .how-eyebrow,
[dir="rtl"] .step-num,
[dir="rtl"] .step-title,
[dir="rtl"] .step-desc {
  background: transparent !important;
  background-color: transparent !important;
}

/* Ensure text on the how-steps section is readable */
.how-steps .step-desc,
.how-steps .step-title,
.how-steps .step-num,
.how-title,
.how-sub,
.how-eyebrow { background: transparent !important; }

/* Two Cities: give a real placeholder look for missing images */
.city-clinic { min-height: auto !important; }
.city-clinic-img:empty,
.city-clinic-img:not(:has(img)) {
  background: linear-gradient(135deg, var(--cream) 0%, #f0ead8 100%);
  display: grid;
  place-items: center;
  min-height: 60px;
  border-radius: 8px;
}
.city-clinic-img:empty::before,
.city-clinic-img:not(:has(img))::before {
  content: '🏥';
  font-size: 22px;
  opacity: 0.5;
}

/* Rich content from Quill editor — packages, doctors, services long descriptions */
.rich-content { line-height: 1.75; color: var(--navy); }
.rich-content p { margin: 0 0 16px; }
.rich-content h2 { font-family: var(--sans); font-weight: 500; font-size: 24px; margin: 32px 0 14px; color: var(--navy); }
.rich-content h3 { font-family: var(--sans); font-weight: 500; font-size: 19px; margin: 26px 0 12px; color: var(--navy); }
.rich-content h4 { font-family: var(--sans); font-weight: 500; font-size: 17px; margin: 22px 0 10px; color: var(--navy); }
.rich-content ul, .rich-content ol { margin: 12px 0 20px; padding-left: 24px; }
.rich-content li { margin-bottom: 6px; }
.rich-content blockquote { border-left: 3px solid var(--gold); padding: 6px 0 6px 18px; margin: 20px 0; color: var(--brown); font-style: italic; }
.rich-content a { color: var(--gold); }
.rich-content strong { font-weight: 600; }
.rich-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 18px 0; display: block; }
.rich-content video, .rich-content iframe, .rich-content .ql-video { display: block !important; width: 100% !important; max-width: 100% !important; aspect-ratio: 16/9 !important; height: auto !important; min-height: 300px; border-radius: 12px; margin: 18px 0; border: none; }
.rich-content iframe { min-height: 400px; }
[dir="rtl"] .rich-content ul, [dir="rtl"] .rich-content ol { padding-left: 0; padding-right: 24px; }
[dir="rtl"] .rich-content blockquote { border-left: 0; border-right: 3px solid var(--gold); padding: 6px 18px 6px 0; }

/* ==========================================================
   Seven Steps section (Arabic homepage) — matches how-it-works
   ========================================================== */
.seven-steps {
  padding: 100px 0 90px;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.seven-steps::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.16), transparent 60%);
  pointer-events: none;
}
.seven-steps .section-title,
.seven-steps .section-title.white,
.seven-steps .section-title em {
  color: var(--cream) !important;
}
.seven-steps .section-title em { color: var(--gold) !important; font-style: italic; }
.seven-steps .eyebrow { color: var(--gold); }
.seven-steps .steps-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(250, 245, 234, 0.12);
  position: relative;
}
.seven-steps .step {
  padding: 32px 22px;
  border-right: 1px solid rgba(250, 245, 234, 0.12);
}
[dir="rtl"] .seven-steps .step { border-right: none; border-left: 1px solid rgba(250, 245, 234, 0.12); }
[dir="rtl"] .seven-steps .step:last-child { border-left: none; }
.seven-steps .step:last-child { border-right: none; }
.seven-steps .step-num {
  font-family: var(--sans);
  font-weight: 300;
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.seven-steps .step h4 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--cream) !important;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.35;
}
.seven-steps .step p {
  font-size: 13px;
  color: rgba(250, 245, 234, 0.7);
  line-height: 1.55;
}
@media (max-width: 900px) {
  .seven-steps .steps-grid { grid-template-columns: 1fr 1fr; }
  .seven-steps .step { border-right: none; border-bottom: 1px solid rgba(250, 245, 234, 0.12); }
}
@media (max-width: 520px) {
  .seven-steps .steps-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   RTL fix — Featured Clinics (fc-card) text alignment
   ========================================================== */
[dir="rtl"] .fc-card,
[dir="rtl"] .fc-card h4,
[dir="rtl"] .fc-card p,
[dir="rtl"] .fc-card .fc-meta { text-align: right; }
[dir="rtl"] .fc-card { direction: rtl; }

/* ==========================================================
   Arrow icon size limit on all buttons/links (Arabic pages)
   ========================================================== */
[dir="rtl"] .btn svg,
[dir="rtl"] .btn-link svg,
[dir="rtl"] .fc-foot .btn-link svg,
[dir="rtl"] .city-link svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

/* ==========================================================
   FAQ — Arabic uses .faq-toggle + .faq-body (not .faq-icon + .faq-content)
   ========================================================== */
.faq-item summary .faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 162, 76, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-item summary .faq-toggle svg {
  width: 16px !important;
  height: 16px !important;
  color: var(--gold);
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.2;
  transition: transform .3s;
}
.faq-item[open] summary .faq-toggle {
  background: var(--gold);
}
.faq-item[open] summary .faq-toggle svg {
  color: var(--navy);
  stroke: var(--navy);
  transform: rotate(45deg);
}
.faq-item .faq-body {
  padding: 0 30px 26px;
  font-size: 15px;
  color: var(--brown);
  line-height: 1.7;
}
[dir="rtl"] .faq-item summary { text-align: right; }
[dir="rtl"] .faq-item .faq-body { text-align: right; }

/* ==========================================================
   FEATURED CLINICS — Arabic uses .fc-img wrapper + h4/p/fc-meta below
   Ensure consistent card heights across all 4
   ========================================================== */
.fc-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-soft);
}
.fc-card .fc-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.fc-card .fc-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}
.fc-card h4 {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  padding: 16px 20px 4px;
  margin: 0;
  letter-spacing: -0.01em;
}
.fc-card p {
  font-size: 13px;
  color: var(--brown);
  padding: 0 20px 8px;
  margin: 0;
}
.fc-card .fc-meta {
  font-size: 12px;
  color: var(--gold);
  padding: 0 20px 20px;
  letter-spacing: 0.02em;
  margin-top: auto;
}
[dir="rtl"] .fc-card h4,
[dir="rtl"] .fc-card p,
[dir="rtl"] .fc-card .fc-meta { text-align: right; }
/* Remove the gradient overlay for the new markup */
.fc-card::after { display: none; }
/* Reset old height rule */
.fc-card { height: auto !important; }
