/* =====================================================
   Care Pass — Brand System
   Premium medical tourism concierge
   ===================================================== */

:root {
  /* Palette */
  --ivory: #FAF6EF;
  --ivory-soft: #F4EEE3;
  --cream: #FFFCF6;
  --emerald: #1B4332;
  --emerald-deep: #0E2A1F;
  --emerald-soft: #2D5E48;
  --gold: #B8965A;
  --gold-soft: #D9BE8C;
  --gold-deep: #8E6E3D;
  --lavender: #C7C6E6;
  --lavender-soft: #E3E3F0;
  --sage: #B5C2BC;
  --sage-soft: #DCE3DF;
  --charcoal: #1A1A1A;
  --graphite: #3B3B3B;
  --mist: #6E726F;
  --line: rgba(27, 67, 50, 0.12);
  --line-soft: rgba(27, 67, 50, 0.06);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ar: 'Tajawal', 'Noto Naskh Arabic', sans-serif;

  /* Sizing */
  --max: 1280px;
  --max-narrow: 980px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body { font-family: var(--font-ar); letter-spacing: 0; }
[dir="rtl"] .display { font-family: var(--font-ar); font-weight: 600; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }

/* ---------- Typography ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--emerald-deep);
  line-height: 1.1;
}
h1, .h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 400; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 400; }
h3, .h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 500; }
.eyebrow {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--gold-deep);
}
.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--graphite);
  line-height: 1.7;
  max-width: 60ch;
}
.muted { color: var(--mist); }

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 120px) 0; }
.divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 0 18px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 246, 239, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; max-width: var(--max); margin: 0 auto;
}
/* Brand wordmark — inline lockup for nav */
.brand {
  display: inline-flex; flex-direction: column;
  font-family: var(--font-display);
  color: var(--emerald-deep);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.brand-word {
  font-size: 1.7rem;
  font-weight: 600;
}
.brand-word em {
  font-style: normal;
}
.brand-tag {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-top: 6px;
}
[dir="rtl"] .brand {
  font-family: var(--font-ar);
  letter-spacing: 0;
}

/* Stacked wordmark — for hero, footer, or large brand placement */
.wordmark {
  display: inline-flex; flex-direction: column;
  font-family: var(--font-display);
  color: var(--emerald-deep);
  line-height: 0.85;
  letter-spacing: -0.025em;
  font-weight: 600;
}
.wordmark-care, .wordmark-pass {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  display: block;
}
.wordmark-pass { padding-left: 0.3em; }
.wordmark .brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  margin-top: 14px;
  padding-left: 0.1em;
}
.wordmark.on-dark { color: var(--cream); }
.wordmark.on-dark .brand-tag { color: var(--gold-soft); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.92rem; color: var(--graphite);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: var(--emerald); }
.nav-links a.is-active { color: var(--emerald); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--emerald);
  background: transparent;
  transition: all 0.2s var(--ease);
}
.lang-toggle:hover { background: var(--emerald); color: var(--cream); }

.mobile-only { display: none; }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center; justify-content: center;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--emerald); color: var(--cream); }
.btn-primary:hover { background: var(--emerald-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--emerald); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--emerald); background: var(--cream); }
.btn-gold { background: var(--gold); color: var(--cream); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-lg { padding: 18px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
[dir="rtl"] .btn-arrow::after { content: '←'; }
.btn-arrow:hover::after { transform: translateX(4px); }
[dir="rtl"] .btn-arrow:hover::after { transform: translateX(-4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.hero h1 {
  margin: 22px 0 26px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.015em;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.trust-item { font-size: 0.85rem; color: var(--mist); }
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--emerald);
  font-weight: 500;
  margin-bottom: 2px;
}
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(31,61,56,0.10), rgba(184,150,90,0.10)),
    url('assets/heroes/home-woman-damascus.jpg') center/cover no-repeat,
    var(--sage-soft);
  box-shadow: 0 30px 60px -30px rgba(31, 61, 56, 0.35);
}
.hero-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(190deg, transparent 55%, rgba(20, 40, 36, 0.55));
}
.hero-card {
  position: absolute;
  left: 24px; bottom: 24px;
  background: rgba(255, 252, 246, 0.94);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex; gap: 12px; align-items: center;
  box-shadow: 0 10px 30px -10px rgba(20, 40, 36, 0.35);
  max-width: 320px;
  z-index: 1;
}
.hero-card-img {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage); flex-shrink: 0;
  background-size: cover; background-position: center;
}
.hero-card-meta { font-size: 0.78rem; color: var(--mist); line-height: 1.4; }
.hero-card-meta strong { display: block; color: var(--emerald-deep); font-size: 0.9rem; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 4 / 4; }
}

/* ---------- Section heads ---------- */
.sec-head {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 18px; max-width: 720px; margin-bottom: 56px;
}
.sec-head.center {
  align-items: center; text-align: center; margin: 0 auto 56px;
}
.sec-head .divider { margin: 0; }

/* ---------- Treatment cards ---------- */
.tx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.tx-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex; flex-direction: column;
}
.tx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -30px rgba(20, 40, 36, 0.4);
}
.tx-card-img {
  aspect-ratio: 4 / 3;
  background: var(--sage-soft);
  background-size: cover; background-position: center;
}
.tx-card-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.tx-card h3 { margin-bottom: 10px; }
.tx-card p { color: var(--graphite); font-size: 0.94rem; margin-bottom: 18px; flex: 1; }
.tx-card-foot {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.tx-card-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--emerald); }
.tx-card-price small { font-size: 0.72rem; color: var(--mist); font-family: var(--font-body); display: block; }
.tx-card a.link {
  font-size: 0.85rem; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ---------- Doctor cards ---------- */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.doc-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease);
  display: flex; flex-direction: column;
  border: 1px solid var(--line-soft);
}
.doc-card:hover { transform: translateY(-3px); }
.doc-photo {
  aspect-ratio: 1 / 1;
  background: var(--sage-soft);
  background-size: cover; background-position: center top;
}
.doc-body { padding: 24px; }
.doc-body h3 { font-size: 1.4rem; margin-bottom: 4px; }
.doc-spec { font-size: 0.88rem; color: var(--gold-deep); margin-bottom: 14px; letter-spacing: 0.04em; text-transform: uppercase; }
.doc-meta {
  font-size: 0.88rem; color: var(--graphite);
  line-height: 1.7;
}
.doc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag {
  font-size: 0.72rem;
  padding: 4px 10px;
  background: var(--ivory-soft);
  border-radius: 999px;
  color: var(--emerald);
}

/* ---------- Process / steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  counter-reset: step;
}
.step { position: relative; padding-top: 60px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display);
  font-size: 2.4rem; color: var(--gold);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 6px;
  display: block; width: 50px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--graphite); line-height: 1.7; }

/* ---------- Why us ---------- */
.why {
  background: var(--emerald);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why h2 { color: var(--cream); }
.why .eyebrow { color: var(--gold-soft); }
.why .lede { color: rgba(255, 252, 246, 0.85); }
.why-list { list-style: none; display: grid; gap: 18px; }
.why-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.96rem;
  color: rgba(255, 252, 246, 0.92);
  line-height: 1.6;
}
.why-list .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(184, 150, 90, 0.2);
  color: var(--gold-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
@media (max-width: 860px) { .why { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--emerald-deep);
  font-weight: 400;
}
.testimonial-meta {
  display: flex; gap: 12px; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}
.testimonial-meta-img {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sage); background-size: cover; background-position: center;
}
.testimonial-meta-img.is-source {
  display: grid;
  place-items: center;
  background: var(--sage-soft);
  color: var(--emerald-deep);
  border: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1rem;
}
.testimonial-meta-name { font-size: 0.88rem; }
.testimonial-meta-name strong { display: block; color: var(--emerald-deep); }
.testimonial-meta-name span { color: var(--mist); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--emerald-deep);
  text-align: start;
  width: 100%;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  color: var(--graphite);
  line-height: 1.7;
}
.faq-item.is-open .faq-a {
  max-height: 400px;
  padding-top: 12px;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--emerald-deep);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 80px);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%; height: 100%;
  background: radial-gradient(circle at top right, rgba(184, 150, 90, 0.22), transparent 60%);
}
.cta-banner h2 { color: var(--cream); position: relative; margin-bottom: 18px; }
.cta-banner p {
  position: relative;
  color: rgba(255, 252, 246, 0.82);
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-banner .btn { position: relative; }

/* ---------- Footer ---------- */
footer {
  background: var(--emerald-deep);
  color: rgba(255, 252, 246, 0.7);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand .brand { color: var(--cream); margin-bottom: 16px; }
.foot-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
footer h4 {
  color: var(--cream);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  font-weight: 600;
  font-family: var(--font-body);
}
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { font-size: 0.9rem; transition: color 0.2s var(--ease); }
.foot-col a:hover { color: var(--gold-soft); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 252, 246, 0.08);
  font-size: 0.82rem;
  flex-wrap: wrap; gap: 16px;
}
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Pills / accreditation strip ---------- */
.pills {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
  justify-content: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  font-weight: 500;
}
.pill svg { color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.55);
  z-index: 90;
  transition: transform 0.2s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
[dir="rtl"] .wa-float { right: auto; left: 24px; }

/* ---------- Booking flow ---------- */
.flow {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 28px 120px;
}
.flow-progress {
  display: flex; gap: 8px; margin-bottom: 48px;
}
.flow-progress span {
  flex: 1; height: 3px; border-radius: 3px;
  background: var(--line);
  transition: background 0.3s var(--ease);
}
.flow-progress span.is-active,
.flow-progress span.is-done { background: var(--gold); }

.flow-step { display: none; animation: fadeIn 0.4s var(--ease); }
.flow-step.is-active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.flow-step h2 { margin-bottom: 12px; }
.flow-step .lede { margin-bottom: 36px; }

.choice {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 14px;
  text-align: start;
  width: 100%;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  display: flex; align-items: center; gap: 18px;
}
.choice:hover { border-color: var(--emerald); transform: translateY(-1px); }
.choice.is-selected { border-color: var(--gold); background: var(--ivory-soft); }
.choice-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--ivory-soft);
  display: grid; place-items: center;
  color: var(--emerald);
  flex-shrink: 0;
}
.choice-text { flex: 1; }
.choice-text strong { display: block; color: var(--emerald-deep); font-size: 1.05rem; margin-bottom: 2px; }
.choice-text span { font-size: 0.88rem; color: var(--mist); }
.choice-price { color: var(--emerald); font-family: var(--font-display); font-size: 1.3rem; }

.oauth {
  display: flex; flex-direction: column; gap: 12px;
  margin: 32px 0;
}
.oauth-btn {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s var(--ease);
}
.oauth-btn:hover { border-color: var(--emerald); transform: translateY(-1px); }

.input-field {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.96rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  margin-bottom: 14px;
  transition: border 0.2s var(--ease);
}
.input-field:focus { outline: none; border-color: var(--emerald); }
.input-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mist);
  margin-bottom: 6px;
  font-weight: 500;
}

/* Calendar */
.cal {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.cal-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.cal-head h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--emerald-deep);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day-name {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--mist);
  padding-bottom: 8px;
  text-transform: uppercase;
}
.cal-day {
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: all 0.15s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
}
.cal-day:hover:not(.is-disabled) { border-color: var(--emerald); }
.cal-day.is-selected { background: var(--emerald); color: var(--cream); }
.cal-day.is-disabled { color: var(--sage); cursor: default; }
.cal-times { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.cal-time {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  color: var(--emerald);
  background: transparent;
  cursor: pointer;
}
.cal-time.is-selected { background: var(--emerald); color: var(--cream); border-color: var(--emerald); }
.cal-time:hover:not(.is-selected) { border-color: var(--emerald); }

/* Payment */
.pay-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.pay-summary {
  background: var(--ivory-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.pay-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  font-size: 0.95rem;
}
.pay-row + .pay-row { border-top: 1px solid var(--line-soft); }
.pay-row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--emerald-deep);
}

/* Confirmation */
.confirm {
  text-align: center; padding: 40px 0;
}
.confirm-ic {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--ivory-soft);
  color: var(--gold);
  display: grid; place-items: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

/* ---------- About / page heros ---------- */
.page-hero {
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 6vw, 80px);
  text-align: center;
  background:
    radial-gradient(circle at 30% 0%, rgba(184, 150, 90, 0.1), transparent 50%),
    var(--ivory);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { margin: 18px 0; max-width: 820px; margin-left: auto; margin-right: auto; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--graphite); }

/* ---------- Modal ---------- */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(20, 40, 36, 0.5);
  backdrop-filter: blur(6px);
  display: none; place-items: center;
  z-index: 200;
  padding: 20px;
}
.modal-bg.is-open { display: grid; }
.modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 36px;
  position: relative;
}
.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--mist);
}
.modal-close:hover { background: var(--ivory-soft); color: var(--emerald); }

/* ---------- Utilities ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 28px; } .mt-lg { margin-top: 48px; }
.hidden { display: none !important; }

[dir="rtl"] .btn-arrow::after { margin-right: 4px; margin-left: 0; }

/* ---------- Packages ---------- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.pkg-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -32px rgba(14, 42, 31, 0.4);
}
.pkg-card.is-featured {
  background: var(--emerald);
  color: var(--cream);
  border-color: var(--emerald);
}
.pkg-card.is-featured h3,
.pkg-card.is-featured .pkg-price,
.pkg-card.is-featured .pkg-includes-title { color: var(--cream); }
.pkg-card.is-featured .pkg-tagline { color: var(--gold-soft); }
.pkg-card.is-featured .pkg-vs { color: rgba(255,252,246,0.65); }
.pkg-card.is-featured .pkg-includes li { color: rgba(255,252,246,0.85); }
.pkg-card.is-featured .pkg-includes li::before { background: var(--gold-soft); }
.pkg-card.is-featured .pkg-compare { border-color: rgba(255,252,246,0.18); }
.pkg-card.is-featured .btn-ghost { color: var(--cream); border-color: rgba(255,252,246,0.3); }
.pkg-card.is-featured .btn-ghost:hover { background: var(--cream); color: var(--emerald-deep); }

.pkg-badge {
  position: absolute; top: 22px; right: 22px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--cream);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}
[dir="rtl"] .pkg-badge { right: auto; left: 22px; }

.pkg-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 14px;
  font-weight: 500;
}
.pkg-card h3 {
  font-size: 1.65rem;
  margin-bottom: 10px;
  color: var(--emerald-deep);
}
.pkg-stay {
  font-size: 0.92rem;
  color: var(--mist);
  margin-bottom: 22px;
}
.pkg-price-block {
  display: flex; align-items: baseline; gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--emerald);
  font-weight: 500;
  line-height: 1;
}
.pkg-price-meta {
  font-size: 0.78rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.pkg-includes-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mist);
  margin-bottom: 14px;
  font-weight: 600;
}
.pkg-includes {
  list-style: none;
  margin-bottom: 22px;
  display: grid;
  gap: 8px;
}
.pkg-includes li {
  font-size: 0.9rem;
  color: var(--graphite);
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}
.pkg-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--gold);
}
[dir="rtl"] .pkg-includes li { padding-left: 0; padding-right: 18px; }
[dir="rtl"] .pkg-includes li::before { left: auto; right: 0; }

.pkg-compare {
  font-size: 0.82rem;
  color: var(--mist);
  padding: 12px 0;
  border-top: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.pkg-compare strong { color: var(--emerald); }
.pkg-vs {
  font-size: 0.78rem;
  color: var(--mist);
  margin-bottom: 16px;
}
.pkg-vs s { color: rgba(110, 114, 111, 0.6); }
.pkg-card .btn { margin-top: auto; }

/* ---------- Hotels ---------- */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.hotel-card {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease);
}
.hotel-card:hover { transform: translateY(-3px); }
.hotel-card.is-pick {
  border-color: var(--gold);
}
.hotel-img {
  aspect-ratio: 16/10;
  background: var(--sage-soft);
  background-size: cover; background-position: center;
  position: relative;
}
.hotel-pick {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: var(--cream);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}
[dir="rtl"] .hotel-pick { left: auto; right: 14px; }
.hotel-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.hotel-area {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.hotel-body h3 { font-size: 1.45rem; margin-bottom: 6px; color: var(--emerald-deep); }
.hotel-class { font-size: 0.85rem; color: var(--mist); margin-bottom: 16px; }
.hotel-desc { font-size: 0.92rem; color: var(--graphite); line-height: 1.6; margin-bottom: 18px; }
.hotel-perks {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.hotel-perk {
  font-size: 0.74rem;
  color: var(--emerald);
  background: var(--ivory-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.hotel-rates {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin-top: auto;
  display: grid;
  gap: 6px;
}
.hotel-rate {
  display: flex; justify-content: space-between;
  font-size: 0.88rem;
  color: var(--graphite);
}
.hotel-rate strong { color: var(--emerald-deep); font-weight: 500; }
.hotel-from {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--emerald);
  font-weight: 500;
  margin-top: 12px;
  display: flex; align-items: baseline; gap: 8px;
}
.hotel-from small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Add-on services strip ---------- */
.addons {
  background: var(--lavender-soft);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}
.addon-item {
  display: grid;
  gap: 6px;
}
.addon-item .ic {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.addon-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--emerald-deep);
  font-weight: 500;
  line-height: 1;
}
.addon-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--mist);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}
.addon-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--emerald-deep);
}
.addon-desc {
  font-size: 0.82rem;
  color: var(--graphite);
  line-height: 1.5;
}

/* ---------- Treatment placeholder card images ---------- */
.tx-placeholder {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  font-weight: 500;
  text-align: center;
  padding: 24px;
  color: var(--emerald-deep);
  line-height: 1.1;
  letter-spacing: -0.01em;
  position: relative;
}
.tx-placeholder::after {
  content: '';
  position: absolute; left: 50%; bottom: 22px;
  transform: translateX(-50%);
  width: 32px; height: 1px;
  background: var(--gold);
}
.tx-placeholder.sage     { background: #DCE3DF; color: #1B4332; }
.tx-placeholder.ivory    { background: #F4EEE3; color: #1B4332; }
.tx-placeholder.lavender { background: #E3E3F0; color: #1B4332; }
.tx-placeholder.cream    { background: #FFFCF6; color: #1B4332; }
.tx-placeholder.gold     { background: #ECDFC4; color: #5E4520; }
.tx-placeholder.emerald  { background: #1B4332; color: #FAF6EF; }
.tx-placeholder.emerald::after { background: var(--gold-soft); }

/* ---------- Doctor placeholder (initials circle) ---------- */
.doc-placeholder {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: var(--ivory-soft);
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--emerald-deep);
  letter-spacing: -0.02em;
}
.doc-placeholder.sage { background: var(--sage-soft); }
.doc-placeholder.lavender { background: var(--lavender-soft); color: var(--emerald-deep); }
.doc-placeholder.gold { background: #ECDFC4; color: var(--emerald-deep); }
/* ---------- Hotel multi-image gallery (for hotels.html) ---------- */
.hotel-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.hotel-gallery .hotel-img {
  aspect-ratio: 16/10;
}
.hotel-gallery-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hotel-gallery-thumbs .hotel-img {
  aspect-ratio: 4/3;
}

/* =====================================================
   Care Pass — Revised visual direction
   Inspired by the provided mockup + partner palette
   ===================================================== */

:root {
  --ivory: #EFEAE4;
  --ivory-soft: #EDE5D8;
  --cream: #FFFCF6;
  --emerald: #003431;
  --emerald-deep: #032B19;
  --emerald-soft: #2E5E58;
  --gold: #AF5B4A;
  --gold-soft: #FFC999;
  --gold-deep: #8E4437;
  --lavender: #B6DEDD;
  --lavender-soft: #D7E5D6;
  --sage: #A9C0A9;
  --sage-soft: #D7E5D6;
  --charcoal: #082626;
  --graphite: #2F4743;
  --mist: #667774;
  --line: rgba(3, 43, 25, 0.16);
  --line-soft: rgba(3, 43, 25, 0.08);
  --radius-sm: 8px;
  --radius: 8px;
  --radius-lg: 8px;
}

body {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(169, 192, 169, 0.16) 0 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #FFFCF6 0%, #EFEAE4 44%, #FFFCF6 100%);
}

.display,
h1,
h2,
h3,
.doc-placeholder {
  color: var(--charcoal);
  letter-spacing: 0;
}

.lede,
.step p,
.hotel-desc,
.doc-meta,
.pkg-includes li,
.tx-card p {
  color: var(--graphite);
}

.eyebrow {
  color: var(--emerald-soft);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.divider {
  width: 92px;
  background: linear-gradient(90deg, var(--gold), rgba(175, 91, 74, 0.08));
}

section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.nav {
  background: rgba(255, 252, 246, 0.88);
  border-bottom: 1px solid rgba(3, 43, 25, 0.09);
  box-shadow: 0 14px 36px rgba(3, 43, 25, 0.04);
}

.nav-inner {
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  width: 174px;
  height: 52px;
  flex: 0 0 auto;
  background: url("assets/Horizontal_DarkGreen.png") left center / contain no-repeat;
  color: transparent;
  overflow: hidden;
}

.brand-word,
.brand-tag {
  font-size: 0 !important;
  line-height: 0;
}

.nav-links {
  gap: 34px;
}

.nav-links a {
  color: var(--charcoal);
  font-size: 0.88rem;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold-deep);
}

.lang-toggle,
.btn,
.choice,
.oauth-btn,
.input-field,
.cal,
.pay-card,
.pay-summary {
  border-radius: 8px;
}

.btn {
  letter-spacing: 0;
  box-shadow: none;
}

.btn-primary {
  background: #2A1220;
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--emerald-deep);
}

.btn-ghost {
  color: var(--gold-deep);
  border-color: rgba(175, 91, 74, 0.38);
  background: rgba(255, 252, 246, 0.62);
}

.btn-ghost:hover {
  color: var(--emerald-deep);
  border-color: var(--gold-deep);
  background: var(--cream);
}

.btn-gold {
  color: var(--charcoal);
  background: var(--gold-soft);
}

.hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(52px, 7vw, 88px);
  background:
    linear-gradient(100deg, rgba(255, 252, 246, 0.98) 0 47%, rgba(255, 252, 246, 0.75) 47% 55%, rgba(239, 234, 228, 0.3) 55%),
    linear-gradient(180deg, rgba(182, 222, 221, 0.2), rgba(255, 252, 246, 0));
}

.hero::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 26px;
  width: 140px;
  height: 210px;
  border-left: 1px solid rgba(169, 192, 169, 0.55);
  border-bottom: 1px solid rgba(169, 192, 169, 0.45);
  border-radius: 100% 0 0 100%;
  opacity: 0.65;
  pointer-events: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(32px, 5vw, 70px);
}

.hero h1 {
  max-width: 780px;
  margin: 18px 0 22px;
  font-size: clamp(2.65rem, 5vw, 5.05rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.hero h1 em {
  color: var(--gold-deep);
}

.hero .lede {
  max-width: 54ch;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.hero-actions {
  margin-top: 28px;
}

.hero-trust {
  gap: 0;
  padding: 18px 0 0;
  border-top-color: var(--line);
}

.trust-item {
  flex: 1 1 130px;
  padding-right: 22px;
  color: var(--mist);
}

.trust-item + .trust-item {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.trust-item strong {
  color: var(--emerald);
}

.hero-visual {
  border-radius: 0;
  min-height: 560px;
  aspect-ratio: 4 / 3.9;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0) 55%, rgba(3, 43, 25, 0.18)),
    url("assets/hero-recovery.png") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(3, 43, 25, 0.14);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1px;
  width: 16%;
  background: linear-gradient(105deg, var(--cream) 0%, rgba(255, 252, 246, 0.86) 40%, rgba(255, 252, 246, 0) 100%);
}

.hero-visual::after {
  background: linear-gradient(190deg, transparent 62%, rgba(3, 43, 25, 0.36));
}

.hero-card {
  left: 26px;
  bottom: 26px;
  border: 1px solid rgba(255, 252, 246, 0.55);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.9);
}

.wrap > .pills {
  margin-top: -50px;
  position: relative;
  z-index: 2;
  background: rgba(255, 252, 246, 0.94);
  border: 1px solid rgba(3, 43, 25, 0.14);
  border-radius: 8px;
  padding: 22px 26px;
  box-shadow: 0 22px 50px rgba(3, 43, 25, 0.08);
}

.pill {
  color: var(--emerald-soft);
  letter-spacing: 0.04em;
}

.pill svg {
  color: var(--sage);
}

.sec-head {
  gap: 13px;
  margin-bottom: 38px;
}

.sec-head.center .divider {
  margin-left: auto;
  margin-right: auto;
}

#packages {
  padding-top: clamp(78px, 9vw, 118px);
}

.pkg-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pkg-card,
.tx-card,
.hotel-card,
.doc-card,
.testimonial {
  background: rgba(255, 252, 246, 0.88);
  border-color: rgba(3, 43, 25, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(3, 43, 25, 0.055);
}

.pkg-card {
  padding: 28px 24px;
}

.pkg-card::before,
.tx-card::before,
.hotel-card::before,
.doc-card::before {
  content: "";
  display: block;
  height: 3px;
  margin: -1px -1px 0;
  background: linear-gradient(90deg, var(--gold), var(--sage), var(--lavender));
}

.pkg-card.is-featured {
  background: var(--emerald);
  border-color: var(--emerald);
}

.pkg-badge,
.hotel-pick {
  background: var(--gold);
  color: var(--cream);
  letter-spacing: 0.08em;
  border-radius: 999px;
}

.pkg-tagline,
.hotel-area,
.doc-spec {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
}

.pkg-price {
  color: var(--emerald);
}

.tx-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.tx-placeholder {
  min-height: 168px;
  padding: 0;
  color: transparent !important;
  background-size: cover !important;
  background-position: center !important;
}

.tx-placeholder::before {
  content: attr(data-icon);
  position: absolute;
  left: 24px;
  bottom: -24px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid rgba(175, 91, 74, 0.24);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1;
}

.tx-placeholder::after {
  left: 24px;
  bottom: -24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid rgba(175, 91, 74, 0.22);
  transform: none;
}

.tx-img-face,
.tx-img-rhinoplasty { background-image: url("assets/treatment-face.png") !important; }
.tx-img-tummy,
.tx-img-body,
.tx-img-lipo { background-image: url("assets/treatment-body.png") !important; }
.tx-img-eye,
.tx-img-endolift { background-image: url("assets/treatment-eye.png") !important; }
.tx-img-otoplasty,
.tx-img-fat { background-image: url("assets/treatment-smile.png") !important; }
.tx-img-hair { background-image: url("assets/treatment-hair.png") !important; }
.tx-img-breast,
.tx-img-breast-lift,
.tx-img-gynecomastia {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.14), rgba(255,252,246,.08)),
    url("assets/treatments/breast-augmentation.jpg"),
    url("assets/treatments/liposuction.jpg") !important;
}
.tx-img-lift {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.10), rgba(255,252,246,.08)),
    url("assets/treatments/thigh-arm-lift.jpg"),
    url("assets/treatments/liposuction.jpg") !important;
}

.tx-card-body,
.hotel-body,
.doc-body {
  padding: 22px;
}

.why {
  background:
    linear-gradient(135deg, rgba(3, 43, 25, 0.96), rgba(0, 52, 49, 0.94)),
    var(--emerald);
  border: 1px solid rgba(255, 252, 246, 0.1);
  box-shadow: 0 28px 70px rgba(3, 43, 25, 0.16);
}

.why-list .ic {
  background: rgba(255, 201, 153, 0.16);
  color: var(--gold-soft);
}

#treatments,
#hotels-preview,
section[style*="ivory-soft"] {
  background:
    linear-gradient(180deg, rgba(215, 229, 214, 0.4), rgba(237, 229, 216, 0.52)) !important;
}

.hotel-img {
  border-bottom: 1px solid rgba(3, 43, 25, 0.12);
}

.doc-placeholder {
  background:
    linear-gradient(135deg, rgba(182, 222, 221, 0.56), rgba(255, 201, 153, 0.2)),
    var(--sage-soft);
  color: var(--emerald);
}

.process {
  gap: 18px;
}

.step {
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 72px 22px 22px;
}

.step::before {
  top: 20px;
  left: 22px;
  color: var(--gold);
  border-bottom-color: rgba(175, 91, 74, 0.3);
}

/* ---------- Care journey ---------- */
.journey-section {
  background:
    linear-gradient(180deg, rgba(215, 229, 214, 0.28), rgba(255, 252, 246, 0.58)),
    var(--cream);
}
.journey-steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(3, 43, 25, 0.12);
  background: rgba(255, 252, 246, 0.78);
  box-shadow: 0 24px 60px rgba(3, 43, 25, 0.06);
}
.journey-steps article {
  position: relative;
  padding: 28px 22px 32px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.journey-steps article + article {
  border-left: 1px solid rgba(3, 43, 25, 0.1);
}
.journey-steps article::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 42px;
  width: 18px;
  height: 18px;
  background: var(--cream);
  border-top: 1px solid rgba(3, 43, 25, 0.12);
  border-right: 1px solid rgba(3, 43, 25, 0.12);
  transform: rotate(45deg);
  z-index: 2;
}
.journey-steps article:last-child::after { display: none; }
.journey-steps span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(175, 91, 74, 0.1);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.journey-steps h3 {
  font-size: 1.28rem;
}
.journey-steps p {
  font-size: 0.88rem;
  color: var(--graphite);
  line-height: 1.55;
}

/* ---------- Stronger package value comparison ---------- */
.pkg-vs {
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  margin-top: auto;
  margin-bottom: 16px;
  border: 1px solid rgba(175, 91, 74, 0.18);
  border-radius: 8px;
  background: rgba(255, 201, 153, 0.12);
  color: var(--graphite);
  font-size: 0.82rem;
}
.pkg-vs strong {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-family: var(--font-body);
}
.pkg-vs span {
  color: var(--emerald);
  font-weight: 600;
}
.pkg-vs s {
  color: rgba(47, 71, 67, 0.46);
  font-weight: 500;
}
.pkg-card.is-featured .pkg-vs {
  background: rgba(255, 201, 153, 0.12);
  border-color: rgba(255, 201, 153, 0.2);
}
.pkg-card.is-featured .pkg-vs strong {
  color: var(--gold-soft);
}
.pkg-card.is-featured .pkg-vs span {
  color: var(--cream);
}

/* ---------- Write-in service field ---------- */
.other-service {
  margin: -4px 0 18px;
  padding: 18px;
  background: rgba(255, 252, 246, 0.75);
  border: 1px solid rgba(175, 91, 74, 0.22);
  border-radius: 8px;
}
.other-service textarea {
  min-height: 96px;
  resize: vertical;
  margin-bottom: 0;
}

/* ---------- Hotel price note + image lightbox ---------- */
.hotel-rate-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 700;
}
.hotel-img {
  cursor: zoom-in;
}
.hotel-img::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(42, 18, 32, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}
.hotel-img:hover::after,
.hotel-img:focus-visible::after {
  opacity: 1;
}
.hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(8, 38, 38, 0.76);
  backdrop-filter: blur(8px);
}
.hotel-lightbox[hidden] { display: none; }
.hotel-lightbox img {
  max-width: min(1080px, 92vw);
  max-height: 84vh;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  object-fit: contain;
}
.hotel-lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--emerald-deep);
  font-size: 1.4rem;
  line-height: 1;
}

/* ---------- Premium logistics icons ---------- */
.addons {
  background: linear-gradient(135deg, rgba(215, 229, 214, 0.9), rgba(182, 222, 221, 0.46));
}
.addon-item .ic {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(3, 43, 25, 0.12);
  color: var(--emerald);
}
.addon-item .ic svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Instagram work placeholders ---------- */
.instagram-work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.instagram-card {
  background: rgba(255, 252, 246, 0.86);
  border: 1px solid rgba(3, 43, 25, 0.12);
  border-radius: 8px;
  padding: 24px;
  display: grid;
  gap: 20px;
  box-shadow: 0 18px 42px rgba(3, 43, 25, 0.055);
}
.instagram-card h3 {
  margin-top: 8px;
}
.profile-link,
.doc-meta a,
strong a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.insta-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.insta-slot {
  min-height: 190px;
  border: 1px dashed rgba(175, 91, 74, 0.38);
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  color: var(--mist);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.8), rgba(237, 229, 216, 0.6));
  font-size: 0.8rem;
}

/* ---------- Treatment image refinements ---------- */
.tx-img-otoplasty {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.10), rgba(255,252,246,.08)),
    url("assets/treatments/face-neck-lift.jpg"),
    url("assets/treatments/rhinoplasty.jpg") !important;
  background-position: 48% center !important;
}
.tx-img-fat {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.10), rgba(255,252,246,.08)),
    url("assets/treatments/skin-treatment.jpg"),
    url("assets/treatments/face-neck-lift.jpg") !important;
}
.tx-img-breast,
.tx-img-breast-lift,
.tx-img-gynecomastia {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.16), rgba(255,252,246,.08)),
    url("assets/treatments/breast-augmentation.jpg"),
    url("assets/treatments/liposuction.jpg") !important;
}
.tx-img-lift {
  background-image:
    linear-gradient(20deg, rgba(3,43,25,.12), rgba(255,252,246,.08)),
    url("assets/treatments/thigh-arm-lift.jpg"),
    url("assets/treatments/liposuction.jpg") !important;
}

@media (max-width: 980px) {
  .journey-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .journey-steps article {
    min-height: 190px;
  }
  .journey-steps article::after {
    display: none;
  }
  .journey-steps article:nth-child(2n + 1) {
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .journey-steps,
  .insta-slots {
    grid-template-columns: 1fr;
  }
  .journey-steps article + article {
    border-left: 0;
    border-top: 1px solid rgba(3, 43, 25, 0.1);
  }
  .hotel-lightbox {
    padding: 14px;
  }
}

/* ---------- Uploaded treatment imagery ---------- */
.tx-img-rhinoplasty {
  background-image: url("assets/treatments/rhinoplasty.jpg") !important;
  background-position: center center !important;
}
.tx-img-eye {
  background-image: url("assets/treatments/blepharoplasty.jpg") !important;
  background-position: center 45% !important;
}
.tx-img-face {
  background-image: url("assets/treatments/face-neck-lift.jpg") !important;
  background-position: center 32% !important;
}
.tx-img-endolift {
  background-image: url("assets/treatments/endolift.jpg") !important;
  background-position: center 42% !important;
}
.tx-img-hair {
  background-image: url("assets/treatments/hair-transplant.jpg") !important;
  background-position: center 40% !important;
}
.tx-img-lipo,
.tx-img-body,
.tx-img-tummy {
  background-image: url("assets/treatments/liposuction.jpg") !important;
  background-position: center 48% !important;
}
.tx-img-breast,
.tx-img-breast-lift {
  background-image: url("assets/treatments/breast-augmentation.jpg") !important;
  background-position: center 50% !important;
}
.tx-img-gynecomastia {
  background-image: url("assets/treatments/gynecomastia.jpg") !important;
  background-position: center 46% !important;
}
.tx-img-fat {
  background-image: url("assets/treatments/skin-treatment.jpg") !important;
  background-position: center 45% !important;
}
.tx-img-otoplasty {
  background-image: url("assets/treatments/face-neck-lift.jpg") !important;
  background-position: 24% 30% !important;
}
.tx-img-lift {
  background-image: url("assets/treatments/thigh-arm-lift.jpg") !important;
  background-position: center 45% !important;
}

.testimonial-stars {
  color: var(--gold);
}

.testimonial-quote {
  color: var(--charcoal);
}

.cta-banner {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 18, 32, 0.98), rgba(3, 43, 25, 0.96)),
    var(--emerald-deep);
}

.cta-banner::before {
  inset: 18px;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 201, 153, 0.18);
  background: transparent;
  pointer-events: none;
}

footer {
  background: #2A1220;
  margin-top: 0;
}

.wordmark.on-dark {
  width: 180px;
  height: 118px;
  background: url("assets/Stacked_White.png") left top / contain no-repeat;
}

.wordmark.on-dark > * {
  font-size: 0 !important;
  line-height: 0;
}

.wa-float {
  background: var(--emerald);
  border-radius: 8px;
  box-shadow: 0 18px 34px rgba(3, 43, 25, 0.24);
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(182, 222, 221, 0.24), rgba(255, 252, 246, 0.72)),
    var(--cream);
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

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

  .hero-visual {
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: 420px;
    aspect-ratio: 16 / 10;
  }

  .wrap > .pills {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .wrap,
  .wrap-narrow,
  .hero-grid,
  .nav-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand {
    width: 150px;
    height: 46px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-item,
  .trust-item + .trust-item {
    padding: 0 0 12px;
    border-left: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .hero-visual {
    height: 340px;
  }

  .wrap > div[style*="grid-template-columns: 380px"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .wrap > div[style*="grid-template-columns: 380px"] .doc-placeholder {
    width: 100%;
  }

  .pills {
    justify-content: flex-start;
    gap: 14px;
  }

  .foot-grid {
    gap: 28px;
  }
}

/* =====================================================
   Partner palette accents
   Adds secondary color without disturbing the medical tone.
   ===================================================== */
:root {
  --cp-mint: #D4F8C9;
  --cp-aqua: #B5E0E4;
  --cp-lilac: #E2B5EA;
  --cp-rose: #F28DB8;
  --cp-lime: #E3EF63;
  --cp-clay: #B45E50;
  --cp-shell: #EDE5DA;
}

body {
  background:
    linear-gradient(90deg, rgba(181, 224, 228, 0.18) 0 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(180deg, #FFFCF6 0%, #EFEAE4 44%, #FFFCF6 100%);
}

.divider {
  background: linear-gradient(90deg, var(--cp-clay), var(--cp-aqua), rgba(226, 181, 234, 0.1));
}

.eyebrow {
  color: var(--emerald-soft);
}

.hero {
  background:
    radial-gradient(circle at 16% 18%, rgba(212, 248, 201, 0.42), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(181, 224, 228, 0.34), transparent 28%),
    linear-gradient(100deg, rgba(255, 252, 246, 0.98) 0 47%, rgba(255, 252, 246, 0.75) 47% 55%, rgba(239, 234, 228, 0.3) 55%),
    linear-gradient(180deg, rgba(242, 141, 184, 0.08), rgba(255, 252, 246, 0));
}

.hero-card {
  border-color: rgba(181, 224, 228, 0.62);
  box-shadow:
    0 10px 30px -10px rgba(20, 40, 36, 0.35),
    inset 0 0 0 1px rgba(226, 181, 234, 0.18);
}

.hero-card-img {
  background: linear-gradient(135deg, var(--cp-lilac), var(--cp-aqua)) !important;
  color: var(--emerald-deep) !important;
}

.pill:nth-child(1) svg { color: var(--cp-clay); }
.pill:nth-child(2) svg { color: var(--cp-aqua); }
.pill:nth-child(3) svg { color: var(--cp-lilac); }
.pill:nth-child(4) svg { color: var(--cp-rose); }
.pill:nth-child(5) svg { color: var(--sage); }

.journey-steps span {
  background: color-mix(in srgb, var(--cp-aqua) 46%, white);
  color: var(--emerald-deep);
}
.journey-steps article:nth-child(2) span { background: color-mix(in srgb, var(--cp-lilac) 40%, white); }
.journey-steps article:nth-child(3) span { background: color-mix(in srgb, var(--cp-mint) 50%, white); }
.journey-steps article:nth-child(4) span { background: color-mix(in srgb, var(--cp-rose) 34%, white); }
.journey-steps article:nth-child(5) span { background: color-mix(in srgb, var(--cp-lime) 46%, white); }
.journey-steps article:nth-child(6) span { background: color-mix(in srgb, var(--cp-clay) 28%, white); }

.pkg-card::before,
.tx-card::before,
.hotel-card::before,
.doc-card::before,
.testimonial::before {
  background: linear-gradient(90deg, var(--cp-clay), var(--cp-aqua), var(--cp-lilac));
}

.pkg-card:nth-child(3n + 1)::before,
.tx-card:nth-child(3n + 1)::before,
.hotel-card:nth-child(3n + 1)::before {
  background: linear-gradient(90deg, var(--cp-clay), var(--cp-mint));
}

.pkg-card:nth-child(3n + 2)::before,
.tx-card:nth-child(3n + 2)::before,
.hotel-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, var(--cp-aqua), var(--cp-lilac));
}

.pkg-card:nth-child(3n + 3)::before,
.tx-card:nth-child(3n + 3)::before,
.hotel-card:nth-child(3n + 3)::before {
  background: linear-gradient(90deg, var(--cp-lime), var(--cp-rose));
}

.tx-placeholder {
  outline: 1px solid rgba(181, 224, 228, 0.42);
  outline-offset: -8px;
}

.tx-card:nth-child(4n + 1) .tx-placeholder { outline-color: rgba(181, 224, 228, 0.58); }
.tx-card:nth-child(4n + 2) .tx-placeholder { outline-color: rgba(226, 181, 234, 0.58); }
.tx-card:nth-child(4n + 3) .tx-placeholder { outline-color: rgba(212, 248, 201, 0.7); }
.tx-card:nth-child(4n + 4) .tx-placeholder { outline-color: rgba(242, 141, 184, 0.5); }

.tx-placeholder::before {
  border-color: rgba(181, 224, 228, 0.54);
  box-shadow: 0 8px 22px rgba(3, 43, 25, 0.08);
}
.tx-card:nth-child(4n + 2) .tx-placeholder::before { border-color: rgba(226, 181, 234, 0.6); }
.tx-card:nth-child(4n + 3) .tx-placeholder::before { border-color: rgba(212, 248, 201, 0.75); }
.tx-card:nth-child(4n + 4) .tx-placeholder::before { border-color: rgba(242, 141, 184, 0.55); }

.hotel-img {
  outline: 1px solid rgba(181, 224, 228, 0.38);
  outline-offset: -7px;
}

.hotel-card:nth-child(2n) .hotel-img {
  outline-color: rgba(226, 181, 234, 0.36);
}

.hotel-rate-note,
.profile-link,
.doc-meta a,
strong a {
  color: var(--cp-clay);
}

.hotel-perk:nth-child(2n),
.tag:nth-child(2n) {
  background: rgba(181, 224, 228, 0.3);
}

.hotel-perk:nth-child(3n),
.tag:nth-child(3n) {
  background: rgba(226, 181, 234, 0.24);
}

.hotel-perk:nth-child(4n),
.tag:nth-child(4n) {
  background: rgba(212, 248, 201, 0.36);
}

.addons {
  background:
    linear-gradient(135deg, rgba(181, 224, 228, 0.72), rgba(226, 181, 234, 0.25) 46%, rgba(212, 248, 201, 0.36));
}

.addon-item:nth-child(1) .ic { color: var(--emerald); background: rgba(212, 248, 201, 0.55); }
.addon-item:nth-child(2) .ic { color: var(--emerald); background: rgba(181, 224, 228, 0.62); }
.addon-item:nth-child(3) .ic { color: var(--emerald); background: rgba(226, 181, 234, 0.45); }
.addon-item:nth-child(4) .ic { color: var(--emerald); background: rgba(242, 141, 184, 0.28); }

.page-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(212, 248, 201, 0.42), transparent 32%),
    radial-gradient(circle at 86% 0%, rgba(226, 181, 234, 0.26), transparent 34%),
    linear-gradient(180deg, rgba(181, 224, 228, 0.24), rgba(255, 252, 246, 0.72)),
    var(--cream);
}

.cta-banner {
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 141, 184, 0.18), transparent 34%),
    radial-gradient(circle at 84% 10%, rgba(181, 224, 228, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(42, 18, 32, 0.98), rgba(3, 43, 25, 0.94)),
    var(--emerald-deep);
}

.cta-banner::before {
  border-color: rgba(181, 224, 228, 0.24);
}

.doc-photo-ahmad,
.doc-photo-rami,
.doc-photo-abdullah {
  background-color: var(--sage-soft);
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(181, 224, 228, 0.28);
}

.doc-photo-ahmad {
  background-image: url("assets/doctors/ahmad-kurdy.jpg");
  background-position: center 36%;
}

.doc-photo-rami {
  background-image: url("assets/doctors/rami-jazieh.jpg");
  background-position: center 34%;
}

.doc-photo-abdullah {
  background-image: url("assets/doctors/abdullah-omar.jpg");
  background-position: center 32%;
}

/* ---------- Publish hero imagery ---------- */
.hero-home-image {
  min-height: min(760px, calc(100vh - 40px));
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(14, 42, 31, 0.78) 0%, rgba(14, 42, 31, 0.58) 42%, rgba(14, 42, 31, 0.08) 72%),
    linear-gradient(180deg, rgba(14, 42, 31, 0.18), rgba(14, 42, 31, 0.34)),
    url("assets/heroes/home-woman-damascus.jpg") center / cover no-repeat;
}

.hero-home-image .hero-grid {
  grid-template-columns: minmax(0, 680px);
}

.hero-home-image h1,
.hero-home-image .eyebrow,
.hero-home-image .lede,
.hero-home-image .trust-item,
.hero-home-image .trust-item strong {
  color: var(--cream);
}

.hero-home-image .eyebrow {
  color: var(--gold-soft);
}

.hero-home-image .lede {
  color: rgba(255, 252, 246, 0.9);
}

.hero-home-image .hero-trust {
  border-top-color: rgba(255, 252, 246, 0.24);
}

.hero-home-image .btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 252, 246, 0.46);
  background: rgba(255, 252, 246, 0.08);
}

.hero-home-image .btn-ghost:hover {
  color: var(--emerald-deep);
  background: var(--cream);
}

.page-hero-image {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 42, 31, 0.26), rgba(14, 42, 31, 0.52)),
    linear-gradient(90deg, rgba(14, 42, 31, 0.62), rgba(14, 42, 31, 0.2));
}

.page-hero-image .wrap-narrow {
  position: relative;
  z-index: 1;
}

.page-hero-image h1,
.page-hero-image .eyebrow,
.page-hero-image p {
  color: var(--cream);
}

.page-hero-image .eyebrow {
  color: var(--gold-soft);
}

.page-hero-image p {
  color: rgba(255, 252, 246, 0.9);
}

.page-hero-treatments {
  background-image: url("assets/heroes/treatments-soft-shadows.jpg");
}

.page-hero-doctors {
  background-image: url("assets/heroes/doctors-water-hands.jpg");
}

.page-hero-hotels {
  background-image: url("assets/heroes/hotels-courtyard.jpg");
}

.page-hero-about {
  background-image: url("assets/heroes/about-damascus-skyline.jpg");
}

.page-hero-booking {
  background-image: url("assets/heroes/booking-water-flowers.jpg");
}

.booking-hero {
  min-height: 360px;
  padding: clamp(56px, 8vw, 86px) 0;
}

.instagram-card .btn {
  justify-self: start;
}

@media (max-width: 860px) {
  .hero-home-image {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(14, 42, 31, 0.82), rgba(14, 42, 31, 0.54)),
      url("assets/heroes/home-woman-damascus.jpg") 62% center / cover no-repeat;
  }

  .page-hero-image {
    min-height: 360px;
  }
}
