/* ============================================================
   HOPEBRIDGE — HOME.CSS
   Hero, stats bar, sections specific to index.html
   ============================================================ */

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--announce-height) + var(--nav-height));
}

/* Background layers */
.hero-bg-layer { position: absolute; inset: 0; }
.hero-bg-img {
  background: url('https://hopebridgewellnesscenter.com/assets/images/office.jpeg?w=1920&q=85')
    center/cover no-repeat;
  z-index: 0;
}
.hero-bg-gradient {
  background: linear-gradient(
    115deg,
    rgba(13,31,60,0.97) 0%,
    rgba(13,31,60,0.92) 45%,
    rgba(27,94,59,0.55) 70%,
    rgba(13,31,60,0.4) 100%
  );
  z-index: 1;
}
.hero-bg-pattern {
  z-index: 2;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Ambient orbs */
.hero-orb {
  position: absolute; z-index: 2;
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(27,94,59,0.25);
  top: -100px; left: 30%;
  animation: orbDrift 12s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(201,168,76,0.12);
  bottom: 0; left: 20%;
  animation: orbDrift 9s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -40px) scale(1.15); }
}

/* ── HERO CONTENT (left) ── */
.hero-content {
  position: relative; z-index: 3;
  padding: 80px 60px 80px 80px;
  display: flex; align-items: center;
}
.hero-content-inner { max-width: 640px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 18px;
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
  margin-bottom: 32px;
  animation: fadeInDown 0.9s var(--ease) 0.3s both;
}
.eyebrow-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; flex-shrink: 0;
  animation: pulse 2.5s ease infinite;
}

.hero-heading {
  font-size: clamp(3rem, 5.5vw, 5.8rem);
  font-weight: 300; color: var(--white);
  line-height: 1.04; margin-bottom: 28px;
  animation: fadeInUp 1s var(--ease) 0.5s both;
}
.hero-heading-light  { font-weight: 300; color: rgba(255,255,255,0.85); }
.hero-heading-em     { font-style: italic; font-weight: 700; color: var(--gold); display: inline; }
.hero-heading-strong { font-weight: 700; display: block; }
.hero-heading-sub    {
  font-weight: 300; display: block; font-size: 0.6em;
  color: rgba(255,255,255,0.55); letter-spacing: 1px;
  margin-top: 4px;
}

.hero-desc {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 500px; font-weight: 300; line-height: 1.85;
  margin-bottom: 40px;
  animation: fadeInUp 1s var(--ease) 0.7s both;
}

/* Hero CTA buttons */
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px;
  animation: fadeInUp 1s var(--ease) 0.9s both;
}
.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  box-shadow: 0 8px 28px rgba(27,94,59,0.5);
  letter-spacing: 0.3px;
}
.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27,94,59,0.6);
}
.hero-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 38px;
  background: rgba(37,211,102,0.15);
  border: 1.5px solid rgba(37,211,102,0.4);
  color: #5ce88a; font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
}
.hero-btn-whatsapp:hover {
  background: rgba(37,211,102,0.25);
  border-color: rgba(37,211,102,0.65);
  transform: translateY(-3px);
}
.hero-btn-whatsapp i { font-size: 1.1rem; }

/* Trust strip */
.hero-trust {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 1s var(--ease) 1.1s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.8rem;
  font-weight: 500; padding: 6px 20px 6px 0;
}
.hero-trust-item:first-child { padding-left: 0; }
.hero-trust-item i { color: var(--gold); font-size: 0.85rem; }
.hero-trust-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,0.15); margin-right: 20px;
}

/* ── HERO CARDS (right) ── */
.hero-cards {
  position: relative; z-index: 3;
  padding: 80px 80px 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  align-items: center;
  animation: fadeIn 1.2s var(--ease) 0.8s both;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 24px;
  transition: all 0.4s var(--ease);
}
.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-4px);
}

/* Stat cards */
.hc-stat {
  text-align: center; padding: 36px 24px;
  border-top: 3px solid var(--jungle);
}
.hc-stat-alt { border-top-color: var(--gold); }
.hc-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700;
  color: var(--white); line-height: 1; margin-bottom: 8px;
}
.hc-stat-num span { font-size: 1.8rem; color: var(--gold); }
.hc-stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* Service cards */
.hc-service {
  display: flex; align-items: center; gap: 16px;
}
.hcs-icon { font-size: 2rem; flex-shrink: 0; }
.hcs-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 4px;
}
.hcs-price { font-size: 0.78rem; color: var(--gold); font-weight: 600; }

/* Scroll cue */
.hero-scroll {
  position: absolute; bottom: 36px; left: 80px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.35); font-size: 0.7rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  animation: fadeIn 1s var(--ease) 1.5s both;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats-bar {
  background: var(--jungle);
  padding: 0;
}
.stats-inner {
  display: flex; align-items: stretch;
  width: 100%; padding: 0;
}
.stats-item {
  flex: 1; text-align: center;
  padding: 36px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.stats-item:last-child { border-right: none; }
.stats-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--white); line-height: 1;
  margin-bottom: 6px;
}
.stats-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.65);
  letter-spacing: 2px; text-transform: uppercase;
}
.stats-divider { width: 1px; background: rgba(255,255,255,0.1); }

/* ══════════════════════════════════════
   WELCOME / ABOUT
══════════════════════════════════════ */
.welcome { background: var(--white); padding: 110px 0; overflow: hidden; }
.welcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}

/* Visual */
.welcome-visual { position: relative; }
.wv-main-wrap {
  position: relative; overflow: hidden;
}
.wv-main-img {
  width: 100%; height: 580px; object-fit: cover;
  display: block;
  box-shadow: var(--shadow-xl);
}
.wv-accent-wrap {
  position: absolute; bottom: -40px; right: -40px;
  width: 220px; height: 220px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.wv-accent-img { width: 100%; height: 100%; object-fit: cover; }
.wv-badge {
  position: absolute; top: 40px; left: -30px;
  background: var(--jungle); color: var(--white);
  padding: 22px 28px; text-align: center;
  box-shadow: var(--shadow-lg);
}
.wv-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.wv-badge-num span { font-size: 1.5rem; }
.wv-badge-text { font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; margin-top: 6px; }
.wv-deco-line {
  position: absolute; top: 60%; right: -60px;
  width: 80px; height: 2px; background: var(--gold);
}
.wv-deco-dot {
  position: absolute; top: calc(60% - 5px); right: -68px;
  width: 12px; height: 12px; background: var(--gold); border-radius: 50%;
}

/* Values */
.welcome-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 36px;
}
.value-chip {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--jungle-pale);
  border-left: 3px solid var(--jungle);
  transition: all var(--transition);
}
.value-chip:hover { transform: translateX(5px); background: #d6edde; }
.vc-icon { font-size: 1.3rem; flex-shrink: 0; }
.vc-body { display: flex; flex-direction: column; gap: 1px; }
.vc-title { font-size: 0.87rem; font-weight: 600; color: var(--navy); }
.vc-sub { font-size: 0.74rem; color: var(--text-light); }

/* ══════════════════════════════════════
   MISSION STRIP
══════════════════════════════════════ */
.mission-strip {
  background: linear-gradient(135deg, var(--jungle) 0%, var(--navy) 100%);
  padding: 80px 0; overflow: hidden; position: relative;
}
.mission-strip::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 36px 36px;
}
.mission-inner {
  width: 100%; padding: 0 60px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 60px; align-items: center; position: relative;
}
.mission-block { color: var(--white); }
.mission-tag {
  display: inline-block; padding: 5px 16px;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); font-size: 0.7rem;
  letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600;
  margin-bottom: 18px;
}
.mission-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; margin-bottom: 16px; color: var(--white);
}
.mission-block p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.85; }
.mission-divider {
  width: 1px; height: 140px; background: rgba(255,255,255,0.15);
  justify-self: center;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px; margin-top: 60px;
}

/* Large card spans 2 rows */
.sc-large { grid-row: span 2; }

.service-card {
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.sc-img-wrap { overflow: hidden; position: relative; flex-shrink: 0; }
.sc-large .sc-img-wrap { height: 300px; }
.service-card:not(.sc-large):not(.sc-cta) .sc-img-wrap { height: 180px; }

.sc-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .sc-img-wrap img { transform: scale(1.07); }

.sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,0.55), transparent);
}
.sc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--jungle); color: var(--white);
  font-size: 0.68rem; padding: 5px 12px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 600;
}
.sc-tag-gold { background: var(--gold); color: var(--navy); }
.sc-tag-navy { background: var(--navy); }

.sc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.sc-icon {
  width: 48px; height: 48px;
  background: var(--jungle-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
  transition: all var(--transition);
}
.service-card:hover .sc-icon { background: var(--jungle); transform: rotate(-5deg); }
.sc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.sc-desc { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; flex: 1; }

.sc-approaches { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.sc-approach-tag {
  padding: 4px 12px;
  background: var(--jungle-pale); color: var(--jungle);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.5px;
}
.sc-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--jungle); font-size: 0.85rem; font-weight: 600;
  margin-top: auto; padding-top: 16px;
  transition: gap var(--transition);
}
.service-card:hover .sc-link { gap: 14px; }
.sc-link i { font-size: 0.8rem; }

/* CTA card */
.sc-cta {
  background: linear-gradient(135deg, var(--jungle), var(--navy));
  grid-column: span 1;
}
.sc-cta:hover { transform: translateY(-8px); }
.sc-cta-body {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 48px 32px; height: 100%;
  color: var(--white);
}
.sc-cta-icon { font-size: 3rem; margin-bottom: 18px; }
.sc-cta-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600; color: var(--white); margin-bottom: 12px;
  line-height: 1.2;
}
.sc-cta-body p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.7; }
.sc-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: #25D366; color: var(--white);
  font-weight: 600; font-size: 0.9rem;
  transition: all var(--transition);
  margin-bottom: 14px;
}
.sc-cta-btn:hover { background: #1eb954; transform: translateY(-2px); }
.sc-cta-link {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--transition);
}
.sc-cta-link:hover { color: var(--gold); }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing-section {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 40px 40px;
}
.pricing-section .container { position: relative; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 60px;
}
.pricing-card {
  padding: 48px 36px; position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
  transition: all var(--transition);
  overflow: hidden;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.pc-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--jungle);
}
.pc-featured {
  background: linear-gradient(145deg, rgba(27,94,59,0.35), rgba(27,94,59,0.1));
  border-color: rgba(27,94,59,0.5);
}
.pc-featured:hover { transform: translateY(-10px); }
.pc-featured .pc-accent { background: var(--gold); height: 5px; }
.pc-badge {
  display: inline-block; padding: 5px 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px;
}
.pc-type {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 600; margin-bottom: 4px;
}
.pc-sub { font-size: 0.82rem; opacity: 0.55; margin-bottom: 30px; }
.pc-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 700; line-height: 1;
  margin-bottom: 8px;
}
.pc-currency {
  font-size: 1.1rem; font-weight: 400; vertical-align: top;
  margin-top: 10px; display: inline-block; margin-right: 4px; opacity: 0.7;
}
.pc-per { font-size: 0.8rem; opacity: 0.5; margin-bottom: 32px; }
.pc-features {
  list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 0;
}
.pc-features li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pc-features li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; color: var(--gold);
}
.pc-btn {
  width: 100%; padding: 14px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; background: transparent;
  transition: all var(--transition); letter-spacing: 0.3px;
}
.pc-btn:hover { background: var(--white); color: var(--navy); }
.pc-btn-featured {
  background: var(--gold); border-color: var(--gold); color: var(--navy);
}
.pc-btn-featured:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.pricing-note {
  margin-top: 32px; font-size: 0.84rem;
  color: rgba(255,255,255,0.4); text-align: center;
}
.pricing-note i { margin-right: 4px; }
.pricing-note a { color: var(--gold); margin-left: 6px; transition: opacity var(--transition); }
.pricing-note a:hover { opacity: 0.8; }

/* ══════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════ */
.why-section { background: var(--white); overflow: hidden; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}

.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.why-feat {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.why-feat:last-child { border-bottom: none; }
.why-feat:hover { padding-left: 8px; }
.wf-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--jungle-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--jungle); font-size: 1.2rem;
  transition: all var(--transition);
}
.why-feat:hover .wf-icon { background: var(--jungle); color: var(--white); transform: scale(1.08); }
.wf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 4px;
}
.wf-desc { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; }

/* Mosaic */
.why-visual { position: relative; }
.why-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; position: relative;
}
.wm-img { overflow: hidden; box-shadow: var(--shadow-md); }
.wm-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.wm-img:hover img { transform: scale(1.06); }
.wm-img-1 { height: 260px; }
.wm-img-2 { height: 200px; margin-top: 60px; }
.wm-img-3 { height: 200px; }
.wm-img-4 { height: 260px; margin-top: -60px; }
.wm-overlay {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--jungle); color: var(--white);
  padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow-lg); z-index: 2; min-width: 120px;
}
.wm-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.wm-stat-text { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; margin-top: 4px; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testimonials-section { background: var(--cream); }
.testimonials-wrap { margin-top: 56px; position: relative; }
.testimonials-track {
  display: flex; gap: 24px;
  overflow: hidden;
  transition: none;
}
.tcard {
  min-width: calc((100% - 48px) / 3);
  background: var(--white);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative; flex-shrink: 0;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tcard-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.tcard-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.tcard-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; color: var(--jungle-pale); line-height: 0.7;
  font-weight: 700; user-select: none;
}
.tcard-text {
  font-size: 0.93rem; color: var(--text-mid);
  line-height: 1.82; font-style: italic; margin-bottom: 24px;
}
.tcard-author { display: flex; align-items: center; gap: 14px; }
.tcard-avatar {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--jungle), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 700; color: var(--white);
}
.tcard-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.tcard-role { font-size: 0.76rem; color: var(--text-light); margin-top: 2px; }
.t-nav {
  display: flex; align-items: center; gap: 14px;
  justify-content: center; margin-top: 40px;
}
.t-nav-btn {
  width: 46px; height: 46px;
  border: 1.5px solid var(--jungle);
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--jungle); font-size: 1rem;
  transition: all var(--transition);
}
.t-nav-btn:hover { background: var(--jungle); color: var(--white); }
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px; background: var(--border);
  border-radius: 50%; cursor: pointer;
  transition: all var(--transition);
}
.t-dot.active { background: var(--jungle); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.faq-intro { position: sticky; top: 120px; padding-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--navy);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--jungle); }
.faq-q[aria-expanded="true"] { color: var(--jungle); }
.faq-icon {
  flex-shrink: 0; color: var(--jungle); font-size: 0.9rem;
  transition: transform var(--transition);
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
}
.faq-a.open { max-height: 300px; }
.faq-a p {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.8; padding-bottom: 22px;
}

/* ══════════════════════════════════════
   BOOKING
══════════════════════════════════════ */
.booking-section { background: var(--jungle-pale); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px; align-items: start;
}

.booking-info {
  background: var(--navy); color: var(--white);
  padding: 52px 44px; position: sticky; top: 120px;
}
.bi-top { margin-bottom: 36px; }
.bi-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 600; color: var(--white);
  line-height: 1.1; margin-bottom: 16px;
}
.bi-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.8; }
.bi-contact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.bi-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  transition: all var(--transition);
}
.bi-contact-item:hover { background: rgba(255,255,255,0.09); }
.bi-contact-link { text-decoration: none; color: inherit; }
.bi-ci-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.bi-ci-label { display: block; font-size: 0.68rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.bi-ci-value { font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.bi-confidentiality {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: rgba(27,94,59,0.25);
  border-left: 3px solid var(--jungle-light);
  font-size: 0.83rem; color: rgba(255,255,255,0.7);
}
.bi-confidentiality i { color: var(--jungle-light); }

.booking-form-wrap { }
.booking-form-card {
  background: var(--white);
  padding: 52px 44px;
  box-shadow: var(--shadow-lg);
}
.bf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; color: var(--navy); margin-bottom: 6px;
}
.bf-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 32px; }
.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bf-group { margin-bottom: 20px; }
.bf-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); margin-bottom: 8px; letter-spacing: 0.5px;
}
.bf-optional { font-weight: 400; color: var(--text-light); }
.bf-input {
  width: 100%; padding: 13px 18px;
  border: 1.5px solid #E2E8F0;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif; font-size: 0.93rem;
  color: var(--text-dark);
  outline: none; transition: all var(--transition);
}
.bf-input:focus {
  border-color: var(--jungle); background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,94,59,0.08);
}
.bf-select { cursor: pointer; }
.bf-textarea { resize: vertical; min-height: 110px; }
.bf-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--jungle), var(--jungle-light));
  color: var(--white); font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(27,94,59,0.35);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  letter-spacing: 0.3px;
}
.bf-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(27,94,59,0.45); }
.bf-note {
  font-size: 0.76rem; color: var(--text-light); text-align: center; margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.bf-success {
  text-align: center; padding: 48px 32px;
  background: var(--jungle-pale); border: 2px solid var(--jungle);
}
.bf-success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.bf-success h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; color: var(--jungle); margin-bottom: 10px;
}
.bf-success p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 24px; }
.bf-success-btn {
  display: inline-flex; padding: 12px 28px;
  background: var(--jungle); color: var(--white);
  font-weight: 600; font-size: 0.9rem; transition: all var(--transition);
}
.bf-success-btn:hover { background: var(--jungle-light); }

/* ══════════════════════════════════════
   LOCATION
══════════════════════════════════════ */
.location-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-map {
  height: 440px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.location-details { display: flex; flex-direction: column; gap: 20px; }
.ld-item {
  display: flex; gap: 18px;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--jungle);
  transition: all var(--transition);
}
.ld-item-link { color: inherit; text-decoration: none; }
.ld-item:hover { transform: translateX(5px); background: var(--jungle-pale); }
.ld-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--jungle); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
}
.ld-title { font-weight: 600; color: var(--navy); font-size: 0.85rem; margin-bottom: 4px; }
.ld-value { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }
.ld-directions { margin-top: 8px; }
.ld-dir-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  background: var(--jungle); color: var(--white);
  font-weight: 600; font-size: 0.87rem;
  transition: all var(--transition);
}
.ld-dir-btn:hover { background: var(--jungle-light); transform: translateY(-2px); }

/* ══════════════════════════════════════
   RESPONSIVE — HOME
══════════════════════════════════════ */
@media (max-width: 1200px) {
  .hero { grid-template-columns: 1.1fr 0.9fr; }
  .welcome-grid { gap: 60px; }
  .why-grid { gap: 60px; }
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 60px; }
  .hero-cards { display: none; }
  .hero-content { padding: 60px 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .sc-large { grid-row: span 1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .welcome-grid { grid-template-columns: 1fr; }
  .welcome-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-info { position: static; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .location-grid { grid-template-columns: 1fr; }
  .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .mission-divider { display: none; }
}

@media (max-width: 768px) {
  .hero-content { padding: 40px 24px; }
  .hero-actions { flex-direction: column; }
  .hero-btn-primary, .hero-btn-whatsapp { justify-content: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-trust-sep { display: none; }
  .stats-inner { flex-direction: column; }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stats-divider { width: 100%; height: 1px; }
  .services-grid { grid-template-columns: 1fr; }
  .tcard { min-width: 100%; }
  .bf-row { grid-template-columns: 1fr; }
  .booking-form-card { padding: 32px 24px; }
  .booking-info { padding: 32px 24px; }
  .mission-inner { padding: 0 24px; }
}

@media (max-width: 480px) {
  .hero-heading { font-size: 2.5rem; }
  .welcome-values { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
}