/* ═══════════════════════════════════════════════
   Yomed Wellness Center — styles.css
   All content visible by default.
   Responsive: Desktop · Tablet · Mobile
═══════════════════════════════════════════════ */

/* ── VARIABLES ── */
:root {
  --g-primary : #2E7D52;
  --g-deep    : #1A4A31;
  --g-darker  : #0D2C1C;
  --g-bright  : #3DB870;
  --g-light   : #C0E8CE;
  --g-mid     : #7CB88B;
  --cream     : #F0F7F1;
  --off-white : #F5FCF6;
  --earth     : #1C3828;
  --text-mid  : #3A5C47;
  --text-soft : #5A7A65;
  --gray      : #607870;
  --white     : #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; background: var(--off-white); color: var(--earth); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--g-primary); }

/* ── SHARED BUTTONS ── */
.btn-green {
  display: inline-block;
  background: var(--g-primary); color: var(--white);
  padding: 14px 36px;
  font-family: 'Jost', sans-serif; font-size: 0.76rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
}
.btn-green:hover { background: var(--g-bright); transform: translateY(-2px); }

.btn-white-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.65);
  font-family: 'Jost', sans-serif; font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-green-outline {
  display: inline-block;
  background: transparent; color: var(--g-primary);
  padding: 14px 36px;
  border: 1.5px solid var(--g-primary);
  font-family: 'Jost', sans-serif; font-size: 0.76rem;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-green-outline:hover { background: var(--g-primary); color: var(--white); }

/* ── SECTION LABELS & HEADINGS ── */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--g-primary); margin-bottom: 14px;
}
.sec-label::before { content: ''; width: 26px; height: 1px; background: currentColor; flex-shrink: 0; }
.sec-label.center { display: flex; justify-content: center; }
.sec-label.center::after { content: ''; width: 26px; height: 1px; background: currentColor; flex-shrink: 0; }
.sec-label.light { color: var(--g-mid); }

.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 300; line-height: 1.2; color: var(--earth);
}
.sec-h2.center { text-align: center; }
.sec-h2.light  { color: var(--white); }
.sec-h2 em     { font-style: italic; color: var(--g-primary); }
.sec-h2.light em { color: var(--g-bright); }

.sec-header { margin-bottom: 56px; }

/* ── SCROLL REVEAL (applied to individual items, not containers) ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.d1 { transition-delay: 0.05s; }
.fade-in.d2 { transition-delay: 0.15s; }
.fade-in.d3 { transition-delay: 0.25s; }
.fade-in.d4 { transition-delay: 0.35s; }
.fade-in.d5 { transition-delay: 0.45s; }
.fade-in.d6 { transition-delay: 0.55s; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 60px; height: 80px;
  background: rgba(8,22,14,0.12);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(46,125,82,0.15);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--white); transition: color 0.3s; z-index: 1001; position: relative;
}
nav.scrolled .nav-logo { color: var(--earth); }
.nav-logo span { color: var(--g-bright); }
nav.scrolled .nav-logo span { color: var(--g-primary); }

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.73rem; font-weight: 500; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
nav.scrolled .nav-links a { color: var(--text-mid); }
.nav-links a:hover { color: var(--white); }
nav.scrolled .nav-links a:hover { color: var(--g-primary); }

.nav-cta {
  background: var(--g-primary); color: var(--white);
  padding: 10px 24px;
  font-family: 'Jost', sans-serif; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase; transition: background 0.3s;
}
.nav-cta:hover { background: var(--g-bright); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  z-index: 1001; position: relative; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.3s;
}
nav.scrolled .hamburger span { background: var(--earth); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(8,26,16,0.97);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mobile-drawer a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400; color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em; transition: color 0.2s;
}
.mobile-drawer a:hover { color: var(--g-bright); }
.drawer-cta {
  margin-top: 8px; background: var(--g-primary) !important; color: var(--white) !important;
  padding: 13px 40px !important; font-family: 'Jost', sans-serif !important;
  font-size: 0.8rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
}

/* ══════════════════════════════════════════
   HERO — FULL-SCREEN SLIDER
══════════════════════════════════════════ */
#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom,
    rgba(5,16,10,0.28) 0%,
    rgba(5,16,10,0.52) 50%,
    rgba(5,16,10,0.78) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  width: 100%; max-width: 900px; padding: 100px 32px 0;
  animation: heroIn 1.2s ease both;
}
@keyframes heroIn { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--g-bright); margin-bottom: 20px;
}
.hero-eyebrow::before,
.hero-eyebrow::after { content:''; width:34px; height:1px; background:var(--g-bright); }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 300; line-height: 1.12; color: var(--white);
  margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-h1 em { font-style: italic; color: var(--g-bright); }

.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem); font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.80); max-width: 600px; margin: 0 auto 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 24px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hstat { text-align: center; }
.hstat-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 500; color: var(--white);
}
.hstat-lbl {
  display: block; font-size: 0.6rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.52); margin-top: 2px;
}
.hstat-div { width:1px; height:36px; background:rgba(255,255,255,0.16); }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px; align-items: center;
}
.hdot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.3); border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.35s;
}
.hdot.active { background: var(--white); width: 28px; }

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marquee-wrap { background: var(--g-deep); padding: 16px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 56px; align-items: center;
  animation: marq 22s linear infinite; white-space: nowrap;
}
.mtag {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g-light); flex-shrink: 0;
}
.mtag::after { content: ' ✦'; color: var(--g-mid); font-size: 0.4rem; vertical-align: middle; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 110px 80px; background: var(--white);
}
.about-imgs { position: relative; padding-right: 36px; padding-bottom: 36px; }
.about-main-img  { width: 100%; height: 520px; object-fit: cover; }
.about-accent-img {
  position: absolute; bottom: 0; right: 0;
  width: 190px; height: 250px; object-fit: cover;
  border: 6px solid var(--white); box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.about-body {
  font-size: 0.96rem; line-height: 1.95; color: var(--text-mid);
  font-weight: 300; margin: 22px 0 30px;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
}
.about-card {
  padding: 16px 18px; background: var(--cream);
  border-left: 3px solid var(--g-primary);
}
.about-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500; color: var(--earth); margin-bottom: 4px;
}
.about-card p { font-size: 0.76rem; color: var(--text-soft); line-height: 1.6; }

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
#services { padding: 100px 80px; background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }

.scard {
  background: var(--white); padding: 40px 30px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s;
}
.scard::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--g-deep), #1a5c35);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.4s ease; z-index: 0;
}
.scard:hover::before { transform: scaleY(1); }
.scard:hover { box-shadow: 0 8px 28px rgba(46,125,82,0.18); }

.scard-icon  { font-size: 1.9rem; margin-bottom: 14px; display: block; position: relative; z-index: 1; }
.scard-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500;
  color: var(--g-deep); margin-bottom: 10px; position: relative; z-index: 1;
  transition: color 0.35s;
}
.scard-desc {
  font-size: 0.79rem; line-height: 1.75; color: var(--gray);
  margin-bottom: 18px; position: relative; z-index: 1; transition: color 0.35s;
}
.scard-link {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--g-primary); border-bottom: 1px solid var(--g-primary);
  padding-bottom: 2px; position: relative; z-index: 1;
  display: inline-block; transition: all 0.35s;
}
.scard:hover .scard-title,
.scard:hover .scard-desc { color: var(--white); }
.scard:hover .scard-link { color: var(--g-light); border-color: var(--g-light); }

.scard-cta { background: var(--g-deep); }
.scard-cta .scard-title { color: var(--g-light); }
.scard-cta .scard-desc  { color: rgba(192,232,206,0.65); }
.scard-cta .scard-link  { color: var(--g-bright); border-color: var(--g-bright); }
.scard-cta:hover .scard-title { color: var(--white); }
.scard-cta:hover .scard-desc  { color: rgba(255,255,255,0.75); }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
#how {
  padding: 100px 80px;
  background: linear-gradient(145deg, #0D2C1C 0%, #1A4A31 55%, #133524 100%);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; margin-top: 0; position: relative;
}
.steps-grid::before {
  content:''; position:absolute; top:45px; left:20%; right:20%;
  height:1px; background:rgba(61,184,112,0.2);
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid var(--g-bright);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--g-bright);
  background: rgba(61,184,112,0.07);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 500; color: var(--white); margin-bottom: 10px;
}
.step-desc { font-size: 0.81rem; line-height: 1.8; color: rgba(192,232,206,0.58); }

/* ══════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════ */
#why {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 100px 80px; background: var(--white);
}
.why-img { width: 100%; height: 560px; object-fit: cover; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px;
}
.why-card {
  padding: 20px 18px; background: var(--cream);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(46,125,82,0.1); }
.why-icon { font-size: 1.55rem; margin-bottom: 8px; display: block; }
.why-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 500; color: var(--earth); margin-bottom: 4px;
}
.why-card p { font-size: 0.76rem; color: var(--text-soft); line-height: 1.6; }

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
#testimonials { padding: 100px 80px; background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.tcard {
  background: var(--white); padding: 32px 26px;
  border-top: 3px solid transparent; transition: all 0.3s;
}
.tcard:hover {
  border-top-color: var(--g-primary);
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(46,125,82,0.1);
}
.tcard-stars { color: var(--g-primary); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 14px; }
.tcard-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem; line-height: 1.85; font-style: italic;
  color: var(--text-mid); margin-bottom: 22px;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--g-light); display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--g-deep); font-weight: 700;
}
.tcard-name { font-weight: 600; font-size: 0.83rem; color: var(--earth); }
.tcard-loc  { font-size: 0.7rem; color: var(--text-soft); margin-top: 2px; }

/* ══════════════════════════════════════════
   CERTIFICATIONS
══════════════════════════════════════════ */
#certs {
  padding: 80px 80px;
  background: linear-gradient(145deg, #0D2C1C 0%, #1A4A31 55%, #133524 100%);
  text-align: center;
}
.certs-row {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 48px;
}
.cert-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 26px 22px; min-width: 155px;
  border: 1px solid rgba(61,184,112,0.2); background: rgba(61,184,112,0.04);
  transition: all 0.3s;
}
.cert-card:hover { border-color: var(--g-bright); background: rgba(61,184,112,0.1); }
.cert-icon { font-size: 2.2rem; }
.cert-name { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--white); font-weight: 500; }
.cert-sub  { font-size: 0.63rem; letter-spacing: 0.12em; color: var(--g-mid); text-transform: uppercase; }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
#faq {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start; padding: 100px 80px; background: var(--white);
}
.faq-desc {
  font-size: 0.93rem; line-height: 1.85; color: var(--text-mid);
  font-weight: 300; margin: 18px 0 28px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(46,125,82,0.14); overflow: hidden; }

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left;
  font-family: 'Cormorant Garamond', serif; font-size: 1.08rem; font-weight: 500;
  color: var(--earth); gap: 16px; user-select: none; transition: color 0.2s;
}
.faq-q:hover { color: var(--g-primary); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--g-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--g-primary); transition: all 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--g-primary); color: var(--white); }

.faq-a {
  font-size: 0.86rem; line-height: 1.82; color: var(--text-mid); font-weight: 300;
  max-height: 0; overflow: hidden; transition: max-height 0.42s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 18px; }

/* ══════════════════════════════════════════
   CTA
══════════════════════════════════════════ */
#cta {
  position: relative; overflow: hidden; min-height: 500px;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('images/cta-bg.jpg') center/cover no-repeat;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,10,0.50), rgba(5,15,10,0.76));
}
.cta-content { position: relative; z-index: 2; padding: 80px 40px; max-width: 700px; }
.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 300; color: var(--white); margin: 14px 0; line-height: 1.15;
}
.cta-h2 em { font-style: italic; color: var(--g-bright); }
.cta-sub {
  font-size: 0.94rem; color: rgba(255,255,255,0.72); font-weight: 300;
  margin-bottom: 36px; line-height: 1.85;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-urgency {
  margin-top: 24px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(192,232,206,0.75); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.urgency-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; animation: pulse 1.6s ease infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

/* ══════════════════════════════════════════
   FOOTER — Deep Green Gradient
══════════════════════════════════════════ */
footer {
  position: relative; overflow: hidden; padding: 80px 80px 0;
  background: linear-gradient(155deg,
    #061410 0%, #0A2218 15%, #0E2E1E 30%,
    #123828 48%, #0D2E1C 65%, #08200F 82%, #040E07 100%);
}
footer::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 65% 45% at 12%  8%, rgba(46,125,82,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 88% 85%, rgba(30,95,58,0.18)  0%, transparent 50%);
}
footer::after {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(61,184,112,0.5) 35%, rgba(61,184,112,0.5) 65%, transparent);
}
.footer-wrap { position: relative; z-index: 1; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(61,184,112,0.1);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 14px;
}
.footer-logo span { color: var(--g-bright); }
.footer-tagline {
  font-size: 0.79rem; line-height: 1.82; color: rgba(192,232,206,0.42);
  font-weight: 300; max-width: 280px; margin-bottom: 24px;
}
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 37px; height: 37px; border: 1px solid rgba(61,184,112,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--g-mid); font-size: 0.82rem; font-weight: 600; transition: all 0.25s;
}
.social-btn:hover { background: var(--g-primary); color: var(--white); border-color: var(--g-primary); }

.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--g-bright); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.79rem; color: rgba(192,232,206,0.42); font-weight: 300; transition: color 0.2s;
}
.footer-col ul li a:hover { color: rgba(192,232,206,0.88); }

.contact-list { display: flex; flex-direction: column; gap: 11px; }
.contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 0.79rem; color: rgba(192,232,206,0.42); font-weight: 300; line-height: 1.55;
}
.ci { color: var(--g-bright); flex-shrink: 0; margin-top: 1px; }
.contact-item a { color: rgba(192,232,206,0.42); transition: color 0.2s; }
.contact-item a:hover { color: rgba(192,232,206,0.88); }

.footer-bottom {
  padding: 24px 0 28px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 0.69rem; color: rgba(192,232,206,0.22); font-weight: 300; }
.seo-line {
  font-size: 0.56rem; color: rgba(192,232,206,0.08);
  letter-spacing: 0.04em; padding-bottom: 16px; line-height: 1.7;
}

/* ══════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); }

/* ══════════════════════════════════════════
   DIAGNOSTIC CENTER
══════════════════════════════════════════ */
#diagnostic {
  background: var(--white);
  overflow: hidden;
}

/* ── Intro row (text left, image right) ── */
.diag-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; padding: 100px 80px 72px;
}
.diag-body {
  font-size: 0.96rem; line-height: 1.95; color: var(--text-mid);
  font-weight: 300; margin: 22px 0 36px;
}
.diag-badges {
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(46,125,82,0.15);
}
.diag-badge { text-align: center; }
.diag-badge-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem; font-weight: 500; color: var(--g-primary);
}
.diag-badge-lbl {
  display: block; font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-soft); margin-top: 2px;
}
.diag-badge-div { width: 1px; height: 36px; background: rgba(46,125,82,0.18); }

.diag-intro-img { position: relative; }
.diag-intro-img img {
  width: 100%; height: 440px; object-fit: cover;
  display: block;
}
.diag-img-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--g-deep); padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.diag-img-icon { font-size: 1.8rem; }
.diag-img-text {
  font-size: 0.78rem; font-weight: 500; color: var(--g-light);
  line-height: 1.5; letter-spacing: 0.02em;
}

/* ── Diagnostic services grid ── */
.diag-grid-wrap {
  padding: 0 80px 72px;
}
.diag-grid-eyebrow {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--g-primary);
  margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.diag-grid-eyebrow::before,
.diag-grid-eyebrow::after {
  content: ''; flex: 1; height: 1px; background: rgba(46,125,82,0.2);
}
.diag-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px;
}

/* diagnostic card */
.dcard {
  background: var(--cream); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  border-bottom: 3px solid transparent;
}
.dcard:hover {
  border-bottom-color: var(--g-primary);
  box-shadow: 0 10px 32px rgba(46,125,82,0.14);
  transform: translateY(-4px);
  background: var(--white);
}
.dcard-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--white); border: 1.5px solid rgba(46,125,82,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: all 0.3s;
}
.dcard:hover .dcard-icon-wrap {
  background: var(--g-primary); border-color: var(--g-primary);
}
.dcard-icon { font-size: 1.5rem; }
.dcard-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 500; color: var(--earth);
  margin-bottom: 10px;
}
.dcard-desc {
  font-size: 0.79rem; line-height: 1.75; color: var(--gray);
  margin-bottom: 16px;
}
.dcard-list {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 22px;
}
.dcard-list li {
  font-size: 0.75rem; color: var(--text-mid); font-weight: 400;
  padding-left: 14px; position: relative; line-height: 1.5;
}
.dcard-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--g-primary); font-size: 0.7rem; font-weight: 700;
}
.dcard-btn {
  font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--g-primary); border-bottom: 1px solid var(--g-primary);
  padding-bottom: 2px; display: inline-block; transition: all 0.3s;
}
.dcard:hover .dcard-btn { color: var(--g-deep); border-color: var(--g-deep); }

/* CTA card variant */
.dcard-cta {
  background: var(--g-deep);
  border-bottom-color: transparent !important;
  transform: none !important;
}
.dcard-cta:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.18); }
.dcard-cta .dcard-icon-wrap {
  background: rgba(255,255,255,0.1); border-color: rgba(192,232,206,0.3);
}
.dcard-cta:hover .dcard-icon-wrap {
  background: var(--g-bright); border-color: var(--g-bright);
}
.dcard-cta .dcard-title { color: var(--g-light); }
.dcard-cta .dcard-desc  { color: rgba(192,232,206,0.65); }
.dcard-cta .dcard-list li { color: rgba(192,232,206,0.75); }
.dcard-cta .dcard-list li::before { color: var(--g-bright); }
.dcard-cta .dcard-btn  { color: var(--g-bright); border-color: var(--g-bright); }
.dcard-cta:hover .dcard-btn { color: var(--g-light); border-color: var(--g-light); }

/* ── Home collection CTA strip ── */
.diag-strip {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--g-deep) 0%, #1a5c35 100%);
  padding: 48px 80px;
}
.diag-strip-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 400; color: var(--white); margin-bottom: 10px;
}
.diag-strip-text p {
  font-size: 0.85rem; line-height: 1.75; color: rgba(192,232,206,0.7);
  font-weight: 300; max-width: 540px;
}
.diag-strip .btn-green {
  flex-shrink: 0;
  background: var(--white); color: var(--g-deep);
}
.diag-strip .btn-green:hover { background: var(--g-light); color: var(--g-deep); }

/* ══════════════════════════════════════════════════
   RESPONSIVE — TABLET  ≤1024px
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 28px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-drawer { display: flex; }

  #about    { padding: 80px 40px; gap: 48px; }
  #services { padding: 80px 40px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }

  /* Diagnostic */
  .diag-intro      { padding: 80px 40px 60px; gap: 48px; }
  .diag-grid-wrap  { padding: 0 40px 60px; }
  .diag-grid       { grid-template-columns: repeat(2,1fr); }
  .diag-strip      { padding: 40px; }

  #how      { padding: 80px 40px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid::before { display: none; }

  #why { padding: 80px 40px; gap: 48px; }
  .why-img { height: 420px; }

  #testimonials { padding: 80px 40px; }
  .testi-grid { grid-template-columns: repeat(2,1fr); }

  #certs    { padding: 70px 40px; }
  #faq      { padding: 80px 40px; gap: 56px; }

  footer          { padding: 60px 40px 0; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — MOBILE  ≤768px
══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; }

  /* Hero */
  #hero { height: 100dvh; min-height: 580px; }
  .hero-content { padding: 80px 20px 0; }
  .hero-eyebrow { font-size: 0.58rem; flex-wrap: wrap; justify-content: center; gap: 8px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }
  .hero-h1 { font-size: clamp(2rem, 8.5vw, 3rem); }
  .hero-sub { font-size: 0.86rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns a { width: 100%; max-width: 280px; text-align: center; }
  .hero-stats { gap: 14px; }
  .hstat-num { font-size: 1.5rem; }
  .hstat-div { height: 26px; }

  /* About */
  #about { grid-template-columns: 1fr; padding: 70px 20px; gap: 40px; }
  .about-imgs { padding-right: 0; padding-bottom: 32px; }
  .about-main-img { height: 280px; }
  .about-accent-img { width: 130px; height: 165px; border-width: 4px; }
  .about-grid { grid-template-columns: 1fr; }

  /* Services */
  #services { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Diagnostic */
  .diag-intro     { grid-template-columns: 1fr; padding: 70px 20px 52px; gap: 40px; }
  .diag-intro-img img { height: 260px; }
  .diag-img-badge { left: 0; bottom: -16px; padding: 14px 16px; }
  .diag-img-text  { font-size: 0.72rem; }
  .diag-badges    { gap: 16px; }
  .diag-badge-div { display: none; }
  .diag-grid-wrap { padding: 0 20px 52px; }
  .diag-grid      { grid-template-columns: 1fr; }
  .diag-strip     { padding: 36px 20px; flex-direction: column; text-align: center; align-items: center; }
  .diag-strip-text p { max-width: 100%; }

  /* How */
  #how { padding: 70px 20px; }
  .step { padding: 0; }

  /* Why */
  #why { grid-template-columns: 1fr; padding: 70px 20px; gap: 40px; }
  .why-img { height: 260px; }
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  #testimonials { padding: 70px 20px; }
  .testi-grid { grid-template-columns: 1fr; }

  /* Certs */
  #certs { padding: 60px 20px; }
  .certs-row { gap: 10px; }
  .cert-card { min-width: calc(50% - 5px); }

  /* FAQ */
  #faq { grid-template-columns: 1fr; padding: 70px 20px; gap: 44px; }

  /* CTA */
  .cta-content { padding: 70px 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns a { width: 100%; max-width: 280px; text-align: center; }

  /* Footer */
  footer { padding: 52px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .wa-fab { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤480px
══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(1.8rem, 7.5vw, 2.4rem); }
  .sec-h2  { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .cert-card { min-width: 100%; }
  .hstat-div { display: none; }
  .hero-stats { gap: 12px 20px; }
}
