/* ============================================
   RESTORE HEALTHCARE — style.css
   Colors: Deep Teal #1B4B5A | Dusty Rose #C97B84
   Background: Warm Off-White #FAF7F4
   Text: Soft Charcoal #2D2D2D
   Blush: #F2E0DC
   ============================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* --- CSS VARIABLES --- */
:root {
  --teal:        #1B4B5A;
  --teal-dark:   #122F38;
  --teal-light:  #2A6275;
  --rose:        #C97B84;
  --rose-light:  #F2E0DC;
  --rose-dark:   #a85f68;
  --bg:          #FAF7F4;
  --bg-card:     #FFFFFF;
  --text:        #2D2D2D;
  --text-muted:  #7A7A7A;
  --text-light:  #B0A9A9;
  --border:      rgba(27,75,90,0.12);
  --shadow-sm:   0 2px 12px rgba(27,75,90,0.08);
  --shadow-md:   0 8px 32px rgba(27,75,90,0.12);
  --shadow-lg:   0 20px 60px rgba(27,75,90,0.16);
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       72px;
}

/* --- 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);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* --- SCROLL PROGRESS BAR --- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--rose));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: all var(--transition);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  height: 60px;
}
#navbar.scrolled .nav-logo-text { color: var(--teal); }
#navbar.scrolled .nav-logo-sub { color: var(--rose); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--rose); }
#navbar.scrolled .nav-cta { background: var(--rose); }

.nav-logo { display: flex; flex-direction: column; gap: 1px; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  transition: color var(--transition);
}
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-weight: 400;
  transition: color var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--rose);
  color: #fff;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,123,132,0.4);
}
.nav-cta svg { width: 14px; height: 14px; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
#navbar.scrolled .nav-hamburger { background: rgba(27,75,90,0.1); }
#navbar.scrolled .nav-hamburger span { background: var(--teal); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--teal-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-mobile-menu.open { opacity: 1; pointer-events: all; }
.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--rose); }
.nav-mobile-menu .mobile-cta {
  background: var(--rose);
  color: #fff;
  padding: 12px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1rem;
}

/* --- HERO SLIDER --- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  width: 100%; height: 100%;
  background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
.hero-slide-bg img { object-position: center top; }
.hero-slide-bg-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.hero-slide-bg-placeholder span {
  color: rgba(201,123,132,0.5);
  font-size: 0.85rem;
  font-weight: 400;
}
.hero-slide-bg-placeholder .img-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18,47,56,0.85) 0%, rgba(18,47,56,0.4) 50%, rgba(201,123,132,0.15) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 8%;
  padding-top: var(--nav-h);
}
.hero-text { max-width: 600px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,123,132,0.2);
  border: 1px solid rgba(201,123,132,0.4);
  color: var(--rose-light);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow span { width: 5px; height: 5px; border-radius: 50%; background: var(--rose); display: inline-block; }
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}
.hero-h1 em {
  font-style: italic;
  color: var(--rose-light);
}
.hero-h1 strong {
  font-weight: 600;
  display: block;
}
.hero-p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,123,132,0.45);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 400;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 8%;
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dot.active {
  background: var(--rose);
  width: 24px;
  border-radius: 4px;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.5); opacity: 0.8; }
}

/* --- SECTIONS COMMON --- */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--rose);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--rose); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-header.center .section-eyebrow { justify-content: center; }
.section-header.center .section-eyebrow::before { display: none; }
.section-header.center .section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--rose);
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* --- STATS STRIP --- */
#stats-strip {
  background: var(--teal);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--rose-light);
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* --- SERVICES --- */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  perspective: 1000px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  min-height: 300px;
}
.service-card:hover .service-card-inner {
  transform: rotateY(180deg);
}
.service-card-front,
.service-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}
.service-card-back { transform: rotateY(180deg); }

.service-card-img {
  height: 160px;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.service-card-img-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.service-card-img-placeholder span {
  color: rgba(201,123,132,0.4);
  font-size: 0.75rem;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(201,123,132,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.service-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 8px;
}
.service-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-card-back {
  background: var(--teal);
  padding: 24px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  inset: 0;
}
.service-back-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 12px;
}
.service-back-list {
  flex: 1;
  margin-bottom: 16px;
}
.service-back-list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-back-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}
.service-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 11px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  width: 100%;
  justify-content: center;
  transition: all var(--transition);
}
.service-wa-btn:hover { background: #1ebe57; }
.service-wa-btn svg { width: 16px; height: 16px; }

/* --- ABOUT STRIP --- */
#about-strip { background: var(--bg); }
.about-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip-img {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 520px;
}
.about-strip-img-placeholder {
  width: 100%; height: 100%;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius-xl);
}
.about-strip-img-placeholder span {
  color: rgba(201,123,132,0.5);
  font-size: 0.85rem;
}
.about-badge {
  position: absolute;
  bottom: 28px;
  right: -16px;
  background: var(--rose);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.7rem;
  opacity: 0.85;
  letter-spacing: 0.05em;
}

.about-strip-content .section-subtitle { margin-bottom: 1.8rem; }
.about-specialities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2rem;
}
.spec-tag {
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --- HEALING JOURNEY --- */
#healing-journey { background: var(--teal-dark); overflow: hidden; }
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.journey-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,123,132,0.4), var(--rose), rgba(201,123,132,0.4), transparent);
}
.journey-step {
  text-align: center;
  padding: 0 16px 0;
  position: relative;
}
.journey-step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--teal-dark);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}
.journey-step-num span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--rose);
}
.journey-step:hover .journey-step-num {
  background: var(--rose);
}
.journey-step:hover .journey-step-num span { color: #fff; }
.journey-step h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 8px;
}
.journey-step p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* --- SYMPTOM CHECKER --- */
#symptom-checker { background: var(--rose-light); }
.checker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.checker-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.checker-tag {
  background: #fff;
  color: var(--teal);
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition);
}
.checker-tag:hover,
.checker-tag.active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.checker-result {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 240px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.checker-result h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 10px;
}
.checker-result p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.checker-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  color: var(--text-light);
  font-size: 0.88rem;
  text-align: center;
  gap: 12px;
}
.checker-placeholder-icon { font-size: 2.5rem; opacity: 0.4; }

/* --- TESTIMONIALS --- */
#testimonials { background: var(--bg); }
.testimonials-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.testimonials-wrapper {
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  min-width: calc(50% - 10px);
  flex-shrink: 0;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--rose-light);
  position: absolute;
  top: 12px;
  right: 24px;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.testimonial-stars span { color: var(--rose); font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--teal);
}
.testimonial-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.testimonials-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}
.testimonials-nav button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.testimonials-nav button:hover {
  background: var(--teal);
  color: #fff;
}

/* --- LOCATIONS STRIP --- */
#locations-strip { background: var(--teal); padding: 56px 0; }
.locations-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}
.location-strip-item {
  background: var(--teal);
  padding: 32px 28px;
  transition: background var(--transition);
}
.location-strip-item:hover { background: var(--teal-light); }
.location-strip-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,123,132,0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.location-strip-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 500;
}
.location-strip-addr {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 16px;
}
.location-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose-light);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: gap var(--transition);
}
.location-strip-link:hover { gap: 10px; }
.location-strip-link svg { width: 12px; height: 12px; }

/* --- CTA BAND --- */
#cta-band {
  background: var(--rose);
  padding: 64px 0;
  text-align: center;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.cta-band-title em { font-style: italic; font-weight: 400; }
.cta-band-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin-bottom: 2rem;
  font-weight: 300;
}
.cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--rose-dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-outline-white-sm {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.btn-outline-white-sm:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* --- FOOTER --- */
#footer {
  background: var(--teal-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.footer-location-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-location-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.footer-location-name {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-bottom: 3px;
}
.footer-location-addr {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-copy a { color: var(--rose); }
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* --- WHATSAPP FLOATING BUTTON --- */
#wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}
.wa-bubble svg { width: 28px; height: 28px; }
.wa-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2.5s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-tooltip {
  background: var(--teal-dark);
  color: #fff;
  font-size: 0.78rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
#wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* --- BACK TO TOP --- */
#back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 997;
  box-shadow: var(--shadow-sm);
  border: none;
  cursor: pointer;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
#back-to-top:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}

/* --- MOBILE BOTTOM NAV --- */
#mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 990;
  padding: 8px 0 12px;
}
.mobile-nav-items {
  display: flex;
}
.mobile-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 4px 0;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  text-decoration: none;
}
.mobile-nav-item svg { width: 20px; height: 20px; }
.mobile-nav-item.active { color: var(--rose); }
.mobile-nav-item:hover { color: var(--teal); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .journey-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #mobile-bottom-nav { display: block; }

  .hero-content { padding: 0 6%; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-p { font-size: 0.9rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }

  .services-grid { grid-template-columns: 1fr; }
  .about-strip-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-strip-img { height: 320px; }
  .about-badge { right: 16px; }

  .checker-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 90%; }
  .locations-strip-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  body { padding-bottom: 68px; }
  #wa-float { bottom: 88px; }
  #back-to-top { bottom: 88px; }
  .section-pad { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline-white { width: 100%; justify-content: center; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .journey-grid { grid-template-columns: 1fr; }
}

/* --- PRELOADER --- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--teal-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.preloader-logo span { color: var(--rose); }
.preloader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-light), var(--rose));
  animation: preload 1.8s ease forwards;
}
@keyframes preload {
  from { width: 0; }
  to   { width: 100%; }
}

/* --- UTILITY --- */
.wa-green { color: #25D366; }
.text-rose { color: var(--rose); }
.text-teal { color: var(--teal); }
.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--rose));
  margin: 1.2rem 0;
}
.divider.center { margin: 1.2rem auto; }
