/* ============================================================
   Happy Drip IV & Wellness — Main Stylesheet
   ============================================================ */

:root {
  --navy: #0d1b3e;
  --navy-mid: #1a2f5e;
  --teal: #5dd9e8;
  --teal-dark: #3ab8cb;
  --teal-light: #e0f7fa;
  --gold: #c9a227;
  --gold-light: #f5e09a;
  --white: #ffffff;
  --off-white: #f8fbfd;
  --light-blue: #eaf6f9;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --dark-text: #0d1b3e;
  --body-text: #374151;
  --border: #d1e8ed;
  --shadow: 0 4px 24px rgba(13, 27, 62, 0.10);
  --shadow-lg: 0 8px 40px rgba(13, 27, 62, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', Arial, sans-serif;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { line-height: 1.75; }

/* ---- Utility ---- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-teal { color: var(--teal-dark); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }
.bg-light { background: var(--light-blue); }
.bg-off-white { background: var(--off-white); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(58, 184, 203, 0.35);
}
.btn-primary:hover { background: var(--navy); box-shadow: 0 6px 20px rgba(13,27,62,0.25); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn-gold:hover { background: #a8841b; }
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover { background: var(--teal); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ============================================================
   COOKIE NOTICE
   ============================================================ */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 0.85rem;
  border-top: 3px solid var(--teal);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-notice.show { transform: translateY(0); }
.cookie-notice p { flex: 1; }
.cookie-notice a { color: var(--teal); text-decoration: underline; }
.cookie-btn { background: var(--teal-dark); color: var(--white); padding: 8px 20px; border-radius: 50px; font-weight: 700; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }
.cookie-btn:hover { background: var(--white); color: var(--navy); }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  z-index: 900;
  border-top: 3px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 44px;
  font-size: 0.82rem;
  gap: 24px;
}
.bottom-bar .vip-text { display: flex; align-items: center; gap: 8px; }
.bottom-bar .vip-badge {
  background: var(--gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 9px;
  border-radius: 40px;
  text-transform: uppercase;
}
.bottom-bar a { color: var(--teal); font-weight: 600; }
.bottom-bar a:hover { color: var(--gold-light); }
.bottom-bar .tip { color: rgba(255,255,255,0.65); font-size: 0.78rem; }

/* ============================================================
   TOP ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--teal-dark);
  color: var(--white);
  text-align: center;
  padding: 9px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 800;
  box-shadow: 0 2px 16px rgba(13,27,62,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-logo .logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.site-logo .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.site-logo .logo-text span:first-child {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.site-logo .logo-text span:last-child {
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.88);
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.18s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: rgba(93,217,232,0.1); }
.nav-link .arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s;
}
.nav-item:hover .nav-link .arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  border-top: 3px solid var(--teal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 8px;
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--light-blue); color: var(--teal-dark); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-phone svg { width: 16px; height: 16px; }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 16px 0;
  border-top: 1px solid rgba(93,217,232,0.2);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 11px 24px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:hover { color: var(--teal); background: rgba(93,217,232,0.08); }
.mobile-nav .mobile-section-title {
  display: block;
  padding: 10px 24px 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--teal);
  text-transform: uppercase;
}
.mobile-nav .sub-link { padding-left: 36px; font-size: 0.85rem; opacity: 0.85; }

/* ============================================================
   HERO
   ============================================================ */
/* ---- HERO — full-width image with text overlay ---- */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  min-height: 520px;
}
.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 740px;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero-content {
  position: absolute;
  top: 50%;
  left: 32px;
  transform: translateY(-50%);
  width: 36%;
  max-width: 420px;
}
.hero-eyebrow-box {
  display: inline-block;
  background: rgba(0,0,0,0.82);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 18px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.hero-content h1 {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  color: var(--navy);
  background: rgba(255,255,255,0.88);
  display: inline;
  padding: 4px 6px;
  line-height: 1.2;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn-book-hero {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-book-hero:hover { background: #000; }
.btn-phone-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 12px 22px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-phone-hero:hover { background: var(--teal-dark); color: var(--white); }
.btn-calltext-hero {
  display: inline-block;
  margin-top: 14px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 50px;
  transition: background 0.2s;
}
.btn-calltext-hero:hover { background: var(--navy); }

.btn-combined-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--navy);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  width: 100%;
  white-space: nowrap;
  text-align: center;
  flex-direction: column;
  line-height: 1.3;
}
.btn-combined-mobile .phone-num { font-size: 1.15rem; font-weight: 900; }
.btn-combined-mobile .phone-sub { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }
.btn-combined-mobile:hover { background: var(--teal-dark); color: var(--white); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--navy);
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-icon { color: var(--teal); width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--off-white); padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  border-radius: 2px;
  margin: 16px auto 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--teal); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal-dark);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-card .learn-more:hover { color: var(--navy); }
.service-card .learn-more svg { width: 14px; height: 14px; }

/* ============================================================
   ABOUT INTRO
   ============================================================ */
.about-intro {
  background: var(--white);
  padding: 80px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}
.about-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.about-big-logo {
  width: 200px;
  height: 200px;
}
.about-tagline {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  max-width: 260px;
  line-height: 1.4;
}
.about-content p { color: var(--body-text); margin-bottom: 18px; font-size: 1.02rem; }
.about-content strong { color: var(--navy); }
.about-features { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--body-text);
}
.about-feature .check {
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-dark);
  margin-top: 1px;
}
.about-feature .check svg { width: 13px; height: 13px; }

/* ============================================================
   FEATURED SERVICES DETAIL — IV THERAPY
   ============================================================ */
.feature-section { padding: 80px 0; }
.feature-section.alt { background: var(--light-blue); }
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }
.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-content h2 { margin-bottom: 18px; }
.feature-content > p { color: var(--body-text); margin-bottom: 24px; font-size: 1rem; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--body-text);
}
.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-dark);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ============================================================
   PRICING / IV MENU
   ============================================================ */
.pricing-section { background: var(--navy); padding: 80px 0; color: var(--white); }
.pricing-section .section-header h2 { color: var(--white); }
.pricing-section .section-divider { background: linear-gradient(90deg, var(--teal), var(--teal-dark)); }
.pricing-section .section-header p { color: rgba(255,255,255,0.7); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.price-card {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(93,217,232,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  text-align: center;
}
.price-card:hover { background: rgba(93,217,232,0.12); border-color: var(--teal); transform: translateY(-3px); }
.price-card .level { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; color: var(--teal); text-transform: uppercase; margin-bottom: 8px; }
.price-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.price-card .price { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); font-weight: 700; line-height: 1; margin: 14px 0; }
.price-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.addons-note {
  text-align: center;
  margin-top: 32px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}
.addons-note strong { color: var(--teal); }

/* ============================================================
   WEIGHT LOSS SECTION
   ============================================================ */
.wl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.wl-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.22s;
}
.wl-card:hover { border-color: var(--teal); box-shadow: var(--shadow); transform: translateY(-3px); }
.wl-card .wl-price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--navy); font-weight: 700; }
.wl-card .wl-name { font-weight: 700; font-size: 0.9rem; color: var(--teal-dark); margin-bottom: 6px; }
.wl-card p { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }

/* ============================================================
   AESTHETICS
   ============================================================ */
.aesthetics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.aesthetic-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 18px;
  border: 1.5px solid var(--border);
  transition: all 0.22s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.aesthetic-item:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.aesthetic-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal-dark); flex-shrink: 0; margin-top: 5px; }
.aesthetic-item h4 { font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.aesthetic-item p { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--off-white); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1.5px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--teal-light);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; font-size: 1rem; }
.testimonial-text { font-size: 0.92rem; color: var(--body-text); line-height: 1.7; margin-bottom: 16px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.testimonial-type { font-size: 0.75rem; color: var(--teal-dark); font-weight: 600; margin-top: 2px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(93,217,232,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-top: 20px;
  justify-content: center;
}
.cta-phone-link a { color: var(--teal); font-weight: 700; }

/* ============================================================
   PROVIDER SECTION
   ============================================================ */
.provider-section { background: var(--white); padding: 80px 0; }
.provider-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}
.provider-photo-wrap { position: relative; }
.provider-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
}
.provider-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--teal-dark);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.provider-badge .cred { font-weight: 800; font-size: 1.1rem; }
.provider-badge .cred-label { font-size: 0.72rem; opacity: 0.85; margin-top: 2px; }
.provider-content .role { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; color: var(--teal-dark); text-transform: uppercase; margin-bottom: 8px; }
.provider-content h2 { margin-bottom: 20px; }
.provider-content p { color: var(--body-text); margin-bottom: 16px; font-size: 0.98rem; }
.credentials-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.credentials-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--body-text);
  font-weight: 600;
}
.credentials-list li span {
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--teal-light);
  padding: 2px 9px;
  border-radius: 20px;
}

/* ============================================================
   PAYMENT INFO
   ============================================================ */
.payment-section { background: var(--light-blue); padding: 80px 0; }
.payment-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 32px; }
.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  border: 1.5px solid var(--border);
  text-align: center;
}
.payment-card .pay-icon { font-size: 2rem; margin-bottom: 12px; }
.payment-card h4 { color: var(--navy); margin-bottom: 8px; }
.payment-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
  border-top: 3px solid var(--teal-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h5 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-text span:first-child { color: var(--white); font-size: 1rem; }
.footer-logo .logo-text span:last-child { color: var(--teal); font-size: 0.65rem; }
.footer-col p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col a { display: block; font-size: 0.87rem; color: rgba(255,255,255,0.72); margin-bottom: 9px; transition: color 0.18s; }
.footer-col a:hover { color: var(--teal); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(93,217,232,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); }
.social-btn svg { width: 17px; height: 17px; }
.footer-subscribe { display: flex; flex-direction: column; gap: 10px; }
.footer-subscribe p { font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-bottom: 4px; }
.subscribe-form { display: flex; gap: 0; }
.subscribe-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(93,217,232,0.3);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  font-size: 0.85rem;
  font-family: inherit;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form input:focus { outline: none; border-color: var(--teal); }
.subscribe-form button {
  background: var(--teal-dark);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 0 8px 8px 0;
  font-weight: 700;
  font-size: 0.82rem;
}
.subscribe-form button:hover { background: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.footer-bottom-links a:hover { color: var(--teal); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 32px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border); }
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: var(--white);
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.18s, color 0.18s;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.faq-q[aria-expanded="true"] { background: var(--light-blue); color: var(--teal-dark); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-q:hover { background: var(--off-white); }
.faq-a { padding: 0 24px 20px; background: var(--light-blue); }
.faq-a p { font-size: 0.95rem; color: var(--body-text); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .provider-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-logo-wrap { flex-direction: row; align-items: center; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-inner.reverse { direction: ltr; }
  .provider-inner { grid-template-columns: 1fr; }
  .provider-photo { aspect-ratio: 16/9; height: 320px; object-position: top; }
  .provider-badge { right: 10px; bottom: 10px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  /* Hero — stack on mobile */
  .hero { display: flex; flex-direction: column; min-height: unset; }
  .hero-bg-img { max-height: 320px; object-fit: cover; object-position: center top; }
  .hero-overlay { position: static; background: var(--white); }
  .hero-content {
    position: static;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 28px 20px;
  }
  .hero-content h1 { font-size: 2.2rem; background: none; color: var(--navy); padding: 0; }
  .hero-eyebrow-box { font-size: 0.72rem; }
  .hero-btns { flex-direction: column; gap: 12px; }
  .btn-book-hero { width: 100%; text-align: center; }
  .btn-phone-hero { display: none; }
  .btn-calltext-hero { display: none; }
  .btn-combined-mobile { display: flex !important; }

  /* Other mobile fixes */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .bottom-bar { flex-direction: column; height: auto; padding: 10px 16px; gap: 4px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .trust-inner { gap: 16px; justify-content: flex-start; }
  .header-phone { display: none; }
  .header-right .btn { display: none; }
}
