/* ============================================================
   RA LIFECARE SOLUTIONS — MAIN STYLESHEET
   Brand: Deep Navy #1B2A4A · Warm Sage #5B8C7A
          Heritage Gold #C8A96E · Warm Sand #F2EDE4
   Fonts: Cormorant Garamond (display) + Lato (body/UI)
   ============================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
  --navy:        #1B2A4A;
  --navy-dark:   #111C33;
  --navy-light:  #E8EEF7;
  --sage:        #5B8C7A;
  --sage-light:  #E8F0EC;
  --gold:        #C8A96E;
  --gold-dark:   #A8854A;
  --sand:        #F2EDE4;
  --charcoal:    #2C3E50;
  --muted:       #6B7280;
  --muted-light: #9CA3AF;
  --white:       #FFFFFF;
  --pearl:       #FAF9F6;
  --border:      #E5DDD2;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm:  0 1px 3px rgba(27,42,74,0.08);
  --shadow-md:  0 4px 16px rgba(27,42,74,0.12);
  --shadow-lg:  0 8px 32px rgba(27,42,74,0.16);

  --nav-h:      72px;
  --nav-h-mob:  60px;
  --transition: 0.3s ease;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); letter-spacing: 0.05em; text-transform: uppercase; }

p { margin-bottom: 1rem; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }

.lead { font-size: 1.125rem; line-height: 1.8; color: var(--muted); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title { margin-bottom: 1rem; }
.section-title span { color: var(--sage); }

/* ── 4. Layout ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 120px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── 5. Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img { height: 62px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  opacity: 0.9;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--gold);
  opacity: 1;
}

.nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  opacity: 1 !important;
  transition: background var(--transition) !important;
}

.nav__cta:hover { background: var(--gold-dark) !important; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h-mob);
  left: 0; right: 0;
  background: var(--navy);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.nav__mobile a {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav__mobile a:hover, .nav__mobile a.active { color: var(--gold); opacity: 1; }

.nav__mobile .nav__cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  text-align: center;
  margin-top: 8px;
}

/* ── 6. Hero Sections ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(27,42,74,0.72) 60%, rgba(91,140,122,0.50) 100%),
    url('../images/hero-home-desktop.jpg') center/cover no-repeat;
  color: var(--white);
  padding-top: var(--nav-h);
}

.hero--services {
  background:
    linear-gradient(135deg, rgba(27,42,74,0.90) 0%, rgba(91,140,122,0.60) 100%),
    url('../images/hero-services-desktop.jpg') center/cover no-repeat;
  min-height: 480px;
}

.hero--blog {
  background:
    linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(44,62,80,0.85) 100%),
    url('../images/hero-blog-desktop.jpg') center/cover no-repeat;
  min-height: 400px;
}

.hero--clinics {
  background:
    linear-gradient(135deg, rgba(91,140,122,0.85) 0%, rgba(27,42,74,0.90) 100%),
    url('../images/hero-clinics-desktop.jpg') center/cover no-repeat;
  min-height: 420px;
}

.hero--contact {
  background:
    linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(200,169,110,0.40) 100%),
    url('../images/hero-contact-desktop.jpg') center/cover no-repeat;
  min-height: 400px;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,169,110,0.2);
  border: 1px solid rgba(200,169,110,0.5);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title em { color: var(--gold); font-style: normal; }

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__cities {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__city {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__city-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero__city-name {
  font-size: 0.95rem;
  color: var(--white);
  opacity: 0.9;
}

.hero__partner-logo {
  position: absolute;
  top: calc(var(--nav-h) + 20px);
  right: 32px;
  width: 140px;
  max-width: 18vw;
  z-index: 10;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  opacity: 0.95;
  border-radius: 6px;
}

.service-card__tile-wrap {
  position: relative;
  display: block;
  line-height: 0; /* removes inline-block gap under image */
}

.service-card__tile-logo {
  display: none; /* shown only on mobile via media query */
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 76px;
  z-index: 5;
  opacity: 0.93;
  filter: drop-shadow(0 1px 5px rgba(0,0,0,0.40));
  border-radius: 5px;
}

/* ── 7. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn--sage {
  background: var(--sage);
  color: var(--white);
}
.btn--sage:hover { background: #4a7565; transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); }

.btn--wa {
  background: #25D366;
  color: var(--white);
}
.btn--wa:hover { background: #1DA851; transform: translateY(-1px); }

.btn--sm { padding: 10px 20px; font-size: 0.8rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── 8. Cards ─────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}

.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy-light), var(--sage-light));
}

.card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--sage-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 2rem;
}

.card__body { padding: 28px; }
.card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: var(--sage-light);
  padding: 4px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.card__title { margin-bottom: 12px; font-size: 1.3rem; }
.card__text { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }
.card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--muted-light);
  margin-bottom: 16px;
}

/* ── 9. Service Cards ─────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--navy);
  transition: background var(--transition);
}

.service-card:hover .service-card__icon { background: var(--navy); color: var(--white); }
.service-card__title { font-size: 1.25rem; margin-bottom: 12px; }
.service-card__text { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ── Tiled service cards (use brand tile images) ─────────── */
.service-card--tiled {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card--tiled::before {
  display: none; /* tile image already has top accent */
}

.service-card--tiled .service-card__tile {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  flex-shrink: 0;
}

.service-card--tiled .service-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card--tiled .service-card__body .btn {
  margin-top: auto;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.service-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.service-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 10. Clinic Cards ─────────────────────────────────────── */
.clinic-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.clinic-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.clinic-card__header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.clinic-card__badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 99px;
}

.clinic-card__header h3 { color: var(--white); font-size: 1.4rem; margin: 0; }
.clinic-card__state { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin: 0; }

.clinic-card__body { padding: 28px; }

.clinic-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.clinic-info__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.clinic-info__icon {
  width: 32px;
  height: 32px;
  background: var(--navy-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 2px;
}

.clinic-info__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.clinic-info__value {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.5;
}

.clinic-card__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clinic-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.clinic-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  color: var(--navy);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.clinic-social a:hover { background: var(--navy); color: var(--white); }

/* ── 11. Stats / Trust Bar ────────────────────────────────── */
.trust-bar {
  background: var(--navy);
  padding: 32px 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
  color: var(--white);
}

.trust-stat__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.trust-stat__label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

.trust-bar__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}

/* ── 12. Testimonials ─────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -8px;
  left: 24px;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.testimonial-card__loc { font-size: 0.8rem; color: var(--muted); }

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── 13. CTA Section ──────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; }
.cta-section .btn--outline { border-color: rgba(255,255,255,0.5); }
.cta-section .btn--outline:hover { background: rgba(255,255,255,0.1); }

/* ── 14. Attribution Banner ───────────────────────────────── */
.attribution-bar {
  background: var(--sage-light);
  border-top: 3px solid var(--sage);
  padding: 20px 0;
  text-align: center;
}

.attribution-bar p {
  font-size: 0.875rem;
  color: var(--charcoal);
  margin: 0;
}

.attribution-bar strong { color: var(--navy); }
.attribution-bar a { color: var(--sage); font-weight: 600; text-decoration: underline; }

/* ── 15. Contact Form ─────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-control {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}

textarea.form-control { resize: vertical; min-height: 130px; }
select.form-control { cursor: pointer; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-success {
  display: none;
  background: var(--sage-light);
  border: 1px solid var(--sage);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--charcoal);
  font-size: 0.95rem;
  text-align: center;
}

/* ── 16. Page Hero (interior) ─────────────────────────────── */
.page-hero {
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}

.page-hero__breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.7); }
.page-hero__breadcrumb a:hover { color: var(--gold); }

/* ── 17. Blog ─────────────────────────────────────────────── */
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ── 18. Footer ───────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand {}

.footer__logo { height: 40px; width: auto; margin-bottom: 16px; }

.footer__tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  font-style: italic;
}

.footer__franchise {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 16px;
}

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__links a:hover { color: var(--gold); }

.footer__clinic {
  margin-bottom: 24px;
}

.footer__clinic-city {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}

.footer__clinic-addr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 6px;
}

.footer__clinic-wa {
  font-size: 0.8rem;
  color: #25D366;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity var(--transition);
}
.footer__clinic-wa:hover { opacity: 0.8; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--gold); color: var(--navy); }

/* ── 19. WhatsApp Float ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.wa-float__btn {
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float__btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

.wa-float__panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  min-width: 240px;
  border: 1px solid var(--border);
}
.wa-float__panel.open { display: block; }

.wa-float__panel h4 {
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.wa-float__clinics {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wa-float__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--pearl);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--charcoal);
  transition: background var(--transition);
}
.wa-float__link:hover { background: var(--sage-light); }
.wa-float__link span:first-child { font-size: 1.1rem; }

/* ── 20. Sections & Backgrounds ──────────────────────────── */
.bg-sand    { background: var(--sand); }
.bg-pearl   { background: var(--pearl); }
.bg-navy    { background: var(--navy); color: var(--white); }
.bg-sage    { background: var(--sage-light); }

.bg-navy h2, .bg-navy h3, .bg-navy .section-label { color: var(--gold); }
.bg-navy .section-label { color: var(--gold); }
.bg-navy p { color: rgba(255,255,255,0.75); }
.bg-navy .lead { color: rgba(255,255,255,0.7); }

/* Feature list */
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }

.feature-row__icon {
  width: 48px;
  height: 48px;
  background: var(--navy-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
}

.feature-row__title { font-size: 1.1rem; margin-bottom: 6px; }
.feature-row__text { font-size: 0.9rem; color: var(--muted); }

/* Gold divider */
.gold-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

.gold-rule--left { margin-left: 0; }

/* ── 21. Page-specific ────────────────────────────────────── */
/* Services detail section */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-light), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* ── 22. Utilities ────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-sage   { color: var(--sage); }
.text-navy   { color: var(--navy); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }

.mt-0  { margin-top: 0; }
.mt-1  { margin-top: 8px; }
.mt-2  { margin-top: 16px; }
.mt-3  { margin-top: 24px; }
.mt-4  { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 8px; }
.mb-2  { margin-bottom: 16px; }
.mb-3  { margin-bottom: 24px; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* ── 23. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .service-detail { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: var(--nav-h-mob); }

  .nav { height: var(--nav-h-mob); }
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero { min-height: 560px; padding-bottom: 48px; }
  .hero__cities { gap: 12px; }
  .hero__partner-logo { display: none; }
  .service-card__tile-logo { display: block; }

  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }

  .form-row { grid-template-columns: 1fr; }

  .trust-bar__inner { gap: 24px; }
  .trust-bar__divider { display: none; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .btn--lg { padding: 14px 28px; font-size: 0.9rem; }

  .nav__mobile.open { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .clinic-card__actions .btn { font-size: 0.8rem; padding: 10px 16px; }
  .wa-float { bottom: 16px; right: 16px; }
}
