/* ═══════════════════════════════════════════════
   ehealth.ae — Shared Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ── */
:root {
  --teal:       #0D9E75;
  --teal-dark:  #096E55;
  --teal-mid:   #1DBFA0;
  --teal-lt:    #E0F5EE;
  --teal-pale:  #F0FAF6;
  --navy:       #0B1F3A;
  --navy-mid:   #1A3558;
  --navy-lt:    #2A4A70;
  --gold:       #F2A623;
  --gold-lt:    #FEF3DE;
  --red:        #E84C30;
  --red-lt:     #FEF0ED;
  --gray-50:    #F9FAFB;
  --gray-100:   #F4F6F9;
  --gray-200:   #E8EDF3;
  --gray-300:   #D0D8E4;
  --gray-400:   #A8B4C4;
  --gray-500:   #6B7E95;
  --gray-600:   #4A607A;
  --gray-700:   #2E3F54;
  --white:      #FFFFFF;
  --text:       #0B1F3A;
  --text-sub:   #4A607A;
  --font-head:  'Sora', sans-serif;
  --font-body:  'DM Sans', sans-serif;
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --shadow-sm:  0 1px 4px rgba(11,31,58,.06), 0 2px 8px rgba(11,31,58,.05);
  --shadow-md:  0 4px 16px rgba(11,31,58,.09), 0 8px 24px rgba(11,31,58,.06);
  --shadow-lg:  0 12px 40px rgba(11,31,58,.12), 0 24px 56px rgba(11,31,58,.08);
  --nav-h:      70px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.18; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 9px;
  flex-shrink: 0;
}
.nav__logo-mark svg {
  width: 20px;
  height: 20px;
}
.nav__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav__logo-text span {
  color: var(--teal);
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 7px 13px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--teal);
  background: var(--teal-pale);
}

/* Nav right */
.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.nav__phone svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(13,158,117,0.28);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,158,117,0.38);
}
.nav__cta svg {
  width: 15px;
  height: 15px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav__hamburger:hover { background: var(--gray-100); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 24px 28px;
  z-index: 899;
  box-shadow: var(--shadow-md);
}
.nav__drawer.open { display: block; }
.nav__drawer a {
  display: block;
  padding: 11px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav__drawer a:hover { background: var(--gray-100); color: var(--teal); }
.nav__drawer .drawer-divider { height: 1px; background: var(--gray-200); margin: 12px 0; }
.nav__drawer .drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* ════════════════════════════════════
   TRUST BAR
   ════════════════════════════════════ */
.trust-bar {
  background: var(--navy);
  padding: 0 40px;
}
.trust-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 52px;
  overflow: hidden;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  justify-content: center;
}
.trust-item:first-child { justify-content: flex-start; }
.trust-item:last-child  { justify-content: flex-end; }
.trust-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item__icon svg { width: 14px; height: 14px; color: var(--teal-mid); }
.trust-item__text .t1 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.trust-item__text .t2 {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.42);
  white-space: nowrap;
}
.trust-bar__divider {
  width: 1px;
  height: 26px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  margin: 0 4px;
}

/* ════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════ */
.section {
  padding: 88px 40px;
}
.section--alt { background: var(--gray-50); }
.section--dark { background: var(--navy); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-eyebrow--light { color: var(--teal-mid); }
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.16;
}
.section-title--light { color: #fff; }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 560px;
  line-height: 1.72;
}
.section-subtitle--light { color: rgba(255,255,255,0.62); }
.section-header { margin-bottom: 52px; }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin: 0 auto; }

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn--primary {
  background: var(--teal);
  color: #fff;
  padding: 13px 28px;
  font-size: 0.92rem;
  box-shadow: 0 3px 14px rgba(13,158,117,0.38);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(13,158,117,0.45);
}

.btn--secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 13px 24px;
  font-size: 0.92rem;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn--secondary:hover { background: rgba(255,255,255,0.18); }

.btn--outline {
  background: transparent;
  color: var(--teal);
  padding: 11px 24px;
  font-size: 0.88rem;
  border: 1.5px solid var(--teal);
}
.btn--outline:hover { background: var(--teal-pale); }

.btn--navy {
  background: var(--navy);
  color: #fff;
  padding: 11px 20px;
  font-size: 0.85rem;
}
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn--wa {
  background: #25D366;
  color: #fff;
  padding: 13px 26px;
  font-size: 0.92rem;
}
.btn--wa:hover { background: #1FB855; transform: translateY(-2px); }

.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--block { width: 100%; justify-content: center; }

/* ════════════════════════════════════
   CARDS / SHARED COMPONENTS
   ════════════════════════════════════ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.badge--teal  { background: var(--teal-lt);  color: var(--teal-dark); }
.badge--gold  { background: var(--gold-lt);  color: #7A5000; }
.badge--red   { background: var(--red-lt);   color: var(--red); }
.badge--navy  { background: var(--navy);     color: #fff; }
.badge--gray  { background: var(--gray-100); color: var(--gray-600); }

/* Price display */
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-from    { font-size: 0.75rem; color: var(--gray-500); }
.price-val     { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--teal); }
.price-old     { font-size: 0.82rem; color: var(--gray-400); text-decoration: line-through; }
.price-save    { font-size: 0.7rem; font-weight: 700; background: var(--teal-lt); color: var(--teal-dark); padding: 2px 8px; border-radius: 100px; }

/* ════════════════════════════════════
   SERVICE GRID (homepage)
   ════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card__img {
  height: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card__img svg { width: 78px; height: 78px; opacity: 0.88; }
.service-card__img--teal   { background: linear-gradient(145deg, #0A3828 0%, #0D9E75 100%); }
.service-card__img--navy   { background: linear-gradient(145deg, #091629 0%, #1A5FAF 100%); }
.service-card__img--gold   { background: linear-gradient(145deg, #2E1800 0%, #B87010 100%); }
.service-card__img--purple { background: linear-gradient(145deg, #160830 0%, #5A28A8 100%); }
.service-card__img--coral  { background: linear-gradient(145deg, #300E00 0%, #B83010 100%); }
.service-card__img--slate  { background: linear-gradient(145deg, #0A1820 0%, #216A8A 100%); }
.service-card__body { padding: 22px 20px; display: flex; flex-direction: column; flex: 1; }
.service-card__body .badge { margin-bottom: 10px; }
.service-card__body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.service-card__body p  { font-size: 0.83rem; color: var(--text-sub); line-height: 1.65; margin-bottom: 14px; flex: 1; }
.service-card__body .price-row { margin-bottom: 16px; }

/* ════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step-card {
  background: var(--white);
  padding: 32px 24px;
  position: relative;
  transition: background 0.2s;
}
.step-card:hover { background: var(--teal-pale); }
.step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--teal);
  margin-bottom: 18px;
}
.step-icon { width: 44px; height: 44px; color: var(--teal); margin-bottom: 14px; }
.step-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 0.82rem; color: var(--text-sub); line-height: 1.65; }

/* ════════════════════════════════════
   PRICE TABLE
   ════════════════════════════════════ */
.compare-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.compare-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: transparent;
}
.compare-tab:hover, .compare-tab.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.price-table th {
  padding: 13px 20px;
  background: rgba(255,255,255,0.06);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-align: left;
}
.price-table th:last-child, .price-table td:last-child { text-align: center; }
.price-table td {
  padding: 13px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  vertical-align: middle;
}
.price-table tr:hover td { background: rgba(255,255,255,0.03); }
.pt-name   { font-weight: 600; color: #fff; }
.pt-clinic { color: rgba(255,255,255,0.4); text-decoration: line-through; font-size: 0.82rem; }
.pt-price  { font-family: var(--font-head); font-weight: 800; color: var(--teal-mid); font-size: 1rem; }
.pt-save   { display: inline-block; background: rgba(13,158,117,0.2); color: var(--teal-mid); padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; }
.pt-book   { display: inline-block; background: var(--teal); color: #fff; padding: 7px 16px; border-radius: 6px; font-family: var(--font-head); font-weight: 600; font-size: 0.78rem; transition: background 0.2s; }
.pt-book:hover { background: var(--teal-dark); }

/* ════════════════════════════════════
   WHY US
   ════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-visual {
  background: linear-gradient(145deg, var(--navy) 0%, #0A4A38 100%);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23ffffff' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}
.why-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 2; }
.why-metric {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 18px;
}
.why-metric--wide { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; }
.why-metric .num  { font-family: var(--font-head); font-size: 1.85rem; font-weight: 800; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.why-metric .num span { color: var(--teal-mid); }
.why-metric .lbl  { font-size: 0.73rem; color: rgba(255,255,255,0.48); margin-top: 5px; }
.why-metric .stars { display: flex; gap: 3px; }
.why-metric .stars span { color: var(--gold); font-size: 18px; }
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-feature__icon svg { width: 22px; height: 22px; color: var(--teal); }
.why-feature h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.why-feature p  { font-size: 0.83rem; color: var(--text-sub); line-height: 1.65; }

/* ════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-tag  { margin-bottom: 10px; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-star  { color: var(--gold); font-size: 14px; }
.testi-text  { font-size: 0.87rem; color: var(--text-sub); line-height: 1.72; font-style: italic; margin-bottom: 18px; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.testi-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.78rem;
  color: #fff; flex-shrink: 0;
}
.av-teal  { background: var(--teal); }
.av-navy  { background: var(--navy-mid); }
.av-gold  { background: #B87A0A; }
.av-coral { background: #C04520; }
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-loc  { font-size: 0.73rem; color: var(--gray-500); }

/* ════════════════════════════════════
   FAQ
   ════════════════════════════════════ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  padding: 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.faq-q h4 { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.faq-icon svg { width: 11px; height: 11px; color: var(--gray-500); transition: transform 0.3s; }
.faq-item.open .faq-q { border-bottom: 1px solid var(--gray-200); }
.faq-item.open .faq-icon { background: var(--teal-lt); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 16px 20px; font-size: 0.85rem; color: var(--text-sub); line-height: 1.7; }

/* ════════════════════════════════════
   BOOKING WIDGET (hero)
   ════════════════════════════════════ */
.booking-widget {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.booking-widget h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.booking-widget .sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.52);
  margin-bottom: 22px;
}
.form-group { margin-bottom: 13px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 6px;
}
.form-group select,
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"] {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select:focus,
.form-group input:focus {
  border-color: var(--teal-mid);
  background: rgba(255,255,255,0.13);
}
.form-group select option { background: #0F3060; color: #fff; }
.form-group input::placeholder { color: rgba(255,255,255,0.32); }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.38);
  pointer-events: none;
  font-size: 0.78rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.booking-note { text-align: center; font-size: 0.73rem; color: rgba(255,255,255,0.38); margin-top: 10px; }

/* ════════════════════════════════════
   CTA BAND
   ════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0A4A38 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-band__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.cta-band p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 34px; }
.cta-band__btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ════════════════════════════════════
   PARTNERS STRIP
   ════════════════════════════════════ */
.partners-strip {
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 40px;
  background: var(--white);
}
.partners-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.partners-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  white-space: nowrap;
}
.partner-logo {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color 0.2s;
  white-space: nowrap;
}
.partner-logo:hover { color: var(--navy); }

/* ════════════════════════════════════
   FLOATING BUTTONS
   ════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn svg { width: 24px; height: 24px; }
.float-btn--wa {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
}
.float-btn--wa:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
.float-btn--call {
  background: var(--teal);
  box-shadow: 0 4px 18px rgba(13,158,117,0.4);
}
.float-btn--call:hover { transform: scale(1.08); }

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.58);
  padding: 64px 40px 32px;
}
.footer__inner { max-width: 1280px; margin: 0 auto; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 0.83rem;
  line-height: 1.7;
  margin: 12px 0 18px;
  max-width: 280px;
}
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.footer__contact-row svg { width: 14px; height: 14px; color: var(--teal-mid); flex-shrink: 0; }
.footer__col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col li a { font-size: 0.82rem; transition: color 0.2s; }
.footer__col li a:hover { color: var(--teal-mid); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer__bottom p { font-size: 0.75rem; }
.footer__badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.48);
}
.social-row { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.social-btn:hover { background: rgba(255,255,255,0.15); }
.social-btn svg { width: 14px; height: 14px; }

/* ════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.35); }
}
.fade-up { animation: fadeUp 0.65s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav__links a { padding: 7px 10px; font-size: 0.82rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav__links, .nav__phone { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 0 20px; gap: 12px; }
  .section { padding: 64px 20px; }
  .trust-bar { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .testi-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .partners-strip { padding: 24px 20px; gap: 20px; }
  .partners-strip__inner { gap: 20px; }
  .cta-band { padding: 60px 20px; }
  .footer { padding: 48px 20px 28px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar__inner { display: grid; grid-template-columns: 1fr 1fr; height: auto; padding: 14px 0; }
  .trust-bar__divider { display: none; }
  .trust-item { justify-content: flex-start !important; }
  .cta-band__btns { flex-direction: column; align-items: center; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .why-metrics { grid-template-columns: 1fr 1fr; }
}
