/* =============================================
   DMC Healing — Shared Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Lato:wght@300;400;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --green-dark:   #2d6a4f;
  --green-mid:    #40916c;
  --green-light:  #74c69d;
  --green-pale:   #d8f3dc;
  --green-ultra:  #f0faf2;
  --gold:         #c9900c;
  --gold-light:   #f5e8b0;
  --gold-warm:    #d4a017;
  --bg-light:     #f5faf6;
  --bg-white:     #ffffff;
  --text-dark:    #1a2e1e;
  --text-mid:     #4a6b54;
  --text-light:   #7a9a82;
  --border:       #ddeee3;
  --shadow-sm:    0 2px 12px rgba(45,106,79,0.07);
  --shadow:       0 4px 24px rgba(45,106,79,0.10);
  --shadow-lg:    0 8px 40px rgba(45,106,79,0.14);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --ease:         all 0.3s ease;
  --nav-h:        82px;
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--green-mid); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--green-dark); }

ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1.03rem; color: var(--text-mid); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.75rem;
}

/* ── Layout Helpers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }

section { padding: 90px 5%; }

.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--green-light));
  border-radius: 2px;
  margin: 1.2rem auto 2rem;
}
.divider-left { margin: 1.2rem 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.5px;
  transition: var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold-warm);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212,160,23,0.35);
}
.btn-primary:hover {
  background: #a87209;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.45);
}

.btn-green {
  background: var(--green-mid);
  color: #fff;
  box-shadow: 0 4px 18px rgba(64,145,108,0.30);
}
.btn-green:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(45,106,79,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 2px solid var(--green-mid);
}
.btn-outline:hover {
  background: var(--green-mid);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(221,238,227,0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
  box-shadow: 0 2px 20px rgba(45,106,79,0.06);
}

.nav-logo img { height: 58px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 14px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--green-mid); background: var(--green-ultra); }
.nav-links a.active { color: var(--green-mid); }

.nav-cta {
  background: var(--green-mid) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  margin-left: 0.5rem;
  box-shadow: 0 3px 12px rgba(64,145,108,0.28);
}
.nav-cta:hover { background: var(--green-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--ease); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #162b1d 0%, #1f4a35 30%, #2d6a4f 60%, #3d8a66 85%, #52b788 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.035);
}
.hero-circle-1 { width: 600px; height: 600px; top: -150px; right: -100px; }
.hero-circle-2 { width: 400px; height: 400px; bottom: -80px; right: 200px; background: rgba(255,255,255,0.025); }
.hero-circle-3 { width: 200px; height: 200px; top: 40%; left: 45%; }

.hero-leaf {
  position: absolute;
  opacity: 0.07;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.hero h1 { color: #fff; margin-bottom: 1.4rem; line-height: 1.15; }
.hero h1 em { font-style: italic; color: var(--green-light); }

.hero-subtitle {
  color: rgba(255,255,255,0.80);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-top: 4px; letter-spacing: 0.5px; }

/* ── Page Banner (inner pages) ── */
.page-banner {
  background: linear-gradient(135deg, #162b1d 0%, #2d6a4f 60%, #3d8a66 100%);
  padding: calc(var(--nav-h) + 50px) 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 50px;
  background: var(--bg-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-banner h1 { color: #fff; margin-bottom: 0.8rem; }
.page-banner p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.40); margin: 0 0.5rem; }

/* ── Card ── */
.card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--green-pale); }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--green-ultra);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--green-mid);
}
.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 0.75rem; }
.card p  { font-size: 0.97rem; }

/* ── Service Cards ── */
.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-card-header {
  padding: 2.5rem 2.2rem 1.5rem;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.service-card-header .card-icon { margin-bottom: 1.2rem; }
.service-card-header h3 { margin-bottom: 0.4rem; }
.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-mid);
  font-family: 'Playfair Display', serif;
}
.service-card-body { padding: 1.8rem 2.2rem 2.2rem; flex: 1; display: flex; flex-direction: column; }
.service-card-body p { margin-bottom: 1.2rem; }
.service-card-body .btn { margin-top: auto; align-self: flex-start; }

/* ── Features / Benefits ── */
.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 12px;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-text h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.feature-text p { font-size: 0.93rem; }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--green-pale);
  line-height: 1;
}
.testimonial-stars { color: var(--gold-warm); font-size: 1rem; margin-bottom: 0.8rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.97rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.4rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.9rem; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-mid);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.testimonial-detail { font-size: 0.80rem; color: var(--text-light); }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, #1f4a35, #2d6a4f);
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(82,183,136,0.15) 0%, transparent 60%);
}
.cta-section h2 { color: #fff; position: relative; }
.cta-section p  { color: rgba(255,255,255,0.75); margin: 1rem auto 2rem; max-width: 520px; position: relative; }
.cta-section .btn { position: relative; }

/* ── Info Band ── */
.info-band {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 5%;
}
.info-band-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.info-band-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 600;
}
.info-band-item svg { color: var(--green-mid); width: 20px; height: 20px; }

/* ── NAET Steps ── */
.step-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.8rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.step-card:hover { box-shadow: var(--shadow); border-color: var(--green-pale); }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-pale);
  line-height: 1;
  min-width: 3rem;
}
.step-content h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.95rem; }

/* ── Herb Card ── */
.herb-benefit {
  background: var(--green-ultra);
  border: 1px solid var(--green-pale);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: var(--ease);
}
.herb-benefit:hover { background: var(--green-pale); }
.herb-benefit h4 { color: var(--green-dark); margin-bottom: 0.4rem; }
.herb-benefit p { font-size: 0.92rem; }

/* ── Team / About ── */
.about-photo-wrap {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-pale), var(--green-ultra));
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
}
.about-photo-icon {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
}
.credential-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0.3rem;
  box-shadow: var(--shadow-sm);
}
.credential-badge svg { width: 16px; height: 16px; color: var(--green-mid); }

/* ── Contact Section ── */
.contact-section { background: var(--bg-light); }
.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 10px;
  background: var(--green-ultra);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-mid);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-value { font-weight: 600; color: var(--text-dark); font-size: 0.97rem; }
.contact-value a { color: var(--text-dark); }
.contact-value a:hover { color: var(--green-mid); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 320px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--green-light); margin: 0 auto 1rem; }

/* ── Footer ── */
footer {
  background: #121f17;
  color: rgba(255,255,255,0.72);
  padding: 70px 5% 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand { }
.footer-brand-logo { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.9rem; opacity: 0.65; line-height: 1.7; max-width: 260px; }
.footer-brand .contact-mini { margin-top: 1.5rem; font-size: 0.88rem; opacity: 0.75; line-height: 2; }
.footer-brand .contact-mini strong { color: rgba(255,255,255,0.9); display: block; }

.footer-col h5 {
  color: rgba(255,255,255,0.9);
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.92rem; }
.footer-col a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); opacity: 1; }

/* ── Scroll-to-top / Floating CTA ── */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--green-mid);
  color: #fff;
  border-radius: 50px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(45,106,79,0.38);
  z-index: 900;
  display: flex; align-items: center; gap: 0.5rem;
  transition: var(--ease);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(45,106,79,0.48); }
.float-cta svg { width: 18px; height: 18px; }

/* ── Accent Strip ── */
.accent-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-mid), var(--green-light), var(--gold-warm));
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 72px; }
  section { padding: 60px 5%; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 5% 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    gap: 0;
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin: 0.8rem 0 0; border-radius: 50px !important; text-align: center; }
  .hamburger { display: flex; }

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

  .hero { padding: calc(var(--nav-h) + 40px) 5% 60px; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .float-cta { bottom: 18px; right: 18px; padding: 11px 18px; font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
