/* =================================================================
   Professor Mtasha · Herbal Medicine Expert
   Design tokens: deep forest (#16302a), warm terracotta (#c1763f),
   antique gold (#cfa157), cream paper (#f7f1e7), charcoal ink (#211b16)
================================================================= */

:root {
  --forest-950: #0e2019;
  --forest-900: #16302a;
  --forest-800: #1d3b32;
  --forest-700: #294f43;
  --forest-600: #3a6a59;

  --terracotta: #c1763f;
  --terracotta-dark: #a35f30;
  --gold: #cfa157;
  --gold-light: #e6c389;

  --paper: #f7f1e7;
  --paper-dim: #efe6d6;
  --ink: #221b14;
  --ink-soft: #4a4138;
  --ink-faint: #8a7d6c;

  --white: #fffaf2;

  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-sm: 0 2px 10px rgba(22, 48, 42, 0.08);
  --shadow-md: 0 12px 32px rgba(22, 48, 42, 0.14);
  --shadow-lg: 0 24px 60px rgba(22, 48, 42, 0.22);

  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
}

::selection { background: var(--gold); color: var(--forest-950); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------- Eyebrow / section tag ---------- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-dark);
  margin-bottom: 0.9rem;
}
.section-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--terracotta);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  color: var(--forest-900);
  margin-bottom: 0.9rem;
  letter-spacing: -0.01em;
}

.section-subtitle {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  margin-bottom: 3rem;
}

/* ============== HEADER ============== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33, 27, 20, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo-title h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-900);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo-title .subhead {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta-dark);
  font-weight: 600;
  margin-top: 0.1rem;
}

.main-nav ul {
  display: flex;
  gap: 2.1rem;
  align-items: center;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--forest-900);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* ============== BUTTONS ============== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn-cta:hover {
  transform: translateY(-3px);
  background: var(--terracotta-dark);
  box-shadow: var(--shadow-lg);
}

.btn-cta-dark {
  background: var(--forest-900);
}
.btn-cta-dark:hover { background: var(--forest-950); }

/* ============== HERO ============== */
.hero-scroll {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(207, 161, 87, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(193, 118, 63, 0.22), transparent 50%),
    linear-gradient(160deg, var(--forest-950) 0%, var(--forest-900) 45%, var(--forest-800) 100%);
  overflow: hidden;
}

.hero-scroll::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(247,241,231,0.035) 0 2px, transparent 2px 90px);
  pointer-events: none;
}

.hero-overlay { position: absolute; inset: 0; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 2rem 1.5rem;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(207, 161, 87, 0.14);
  border: 1px solid rgba(207, 161, 87, 0.4);
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.6rem;
}

.hero-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(247, 241, 231, 0.82);
  margin-bottom: 2.4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.6rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-item span:first-child {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-item span:last-child {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 241, 231, 0.65);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.scroll-indicator span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.4;
  animation: pulseDot 1.8s ease-in-out infinite;
}
.scroll-indicator span:nth-child(2) { animation-delay: 0.3s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulseDot {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.15); }
}

/* ============== ABOUT ============== */
.about-section { padding: 6.5rem 0; background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: start; /* video column no longer stretches to match text height */
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  color: var(--forest-900);
  line-height: 1.2;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.about-text .highlight { color: var(--terracotta); font-style: italic; }

.about-text p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-size: 1.02rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--forest-900);
  font-size: 0.96rem;
}

.feature i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-900);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 0.92rem;
}

/* ---- About video column: two videos stacked, each half the block height,
        so the total video block stays shorter than the text column ---- */
.about-image {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 380px;
  width: 100%;
  margin: 0 auto;
}

.about-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 210px; /* half-height slot; tune to taste */
}

.about-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 8px solid var(--paper);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

/* ============== PROCESS ============== */
.process-section { padding: 6rem 0 6.5rem; background: var(--paper); text-align: center; }
.process-section .section-tag,
.process-section .section-title,
.process-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.process-section .section-tag { justify-content: center; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  text-align: left;
  margin-top: 1rem;
}

.process-step {
  background: var(--white);
  border: 1px solid rgba(33, 27, 20, 0.07);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  position: relative;
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.process-step h3 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
}

.process-step p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

/* ============== SERVICES GRID ============== */
.services-grid {
  padding: 6.5rem 0;
  background: var(--paper-dim);
  text-align: center;
}

.services-grid .section-tag,
.services-grid .section-title,
.services-grid .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.services-grid .section-tag { justify-content: center; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  text-align: left;
  margin-top: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(33, 27, 20, 0.06);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-img { position: relative; overflow: hidden; aspect-ratio: 3 / 2; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img img { transform: scale(1.07); }

/* ---- Empty image upload slots (index cards + service detail images) ---- */
.img-slot { position: relative; background: #efe8db; }
.img-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-slot.img-empty img { display: none; }
.img-slot.img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border: 2px dashed rgba(33, 27, 20, 0.2);
}
.img-slot.img-empty::after {
  content: "📷  Add Image Source";
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 1rem;
}
.detail-image.img-slot.img-empty { min-height: 320px; border-radius: var(--radius-md); }

.card-body { padding: 1.5rem 1.5rem 1.7rem; }

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--forest-900);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.card-body p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  transition: gap 0.2s ease;
}

/* ============== TESTIMONIALS ============== */
.testimonials-section {
  padding: 6.5rem 0;
  background: var(--forest-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(207,161,87,0.12), transparent 50%);
}

.testimonials-section .section-tag,
.testimonials-section .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.testimonials-section .section-tag { justify-content: center; color: var(--gold-light); }
.testimonials-section .section-tag::before { background: var(--gold-light); }
.testimonials-section .section-title { color: var(--white); margin-bottom: 3rem; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  position: relative;
}

.testimonial-card {
  background: rgba(247, 241, 231, 0.05);
  border: 1px solid rgba(247, 241, 231, 0.12);
  border-radius: var(--radius-md);
  padding: 2.1rem 1.8rem;
  text-align: left;
}

.testimonial-stars { color: var(--gold); letter-spacing: 0.2rem; margin-bottom: 1rem; font-size: 0.95rem; }

.testimonial-card p {
  color: rgba(247, 241, 231, 0.85);
  font-size: 0.96rem;
  margin-bottom: 1.4rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.88rem;
}

/* ============== FAQ SECTION ============== */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.faq-section .section-tag,
.faq-section .section-title,
.faq-section .section-subtitle {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.faq-section .section-tag { justify-content: center; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2.5rem;
  text-align: left;
}

.faq-item {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem 2rem;
  border: 1px solid rgba(33, 27, 20, 0.06);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--terracotta);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.faq-question i {
  color: var(--terracotta);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-question h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest-900);
  margin: 0;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 0 2.4rem;
  line-height: 1.7;
}

/* ============== NEWSLETTER SECTION ============== */
.newsletter-section {
  padding: 5.5rem 0;
  background: var(--paper-dim);
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.newsletter-text {
  text-align: left;
}

.newsletter-text .section-tag {
  margin-bottom: 0.5rem;
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--forest-900);
  margin-bottom: 0.8rem;
}

.newsletter-text p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
}

.newsletter-form {
  background: var(--white);
  padding: 2.5rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.newsletter-form .form-group {
  margin-bottom: 1.2rem;
}

.newsletter-form .form-group input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 2px solid rgba(33, 27, 20, 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--paper);
  transition: border-color 0.3s ease, background 0.3s ease;
  color: var(--ink);
}

.newsletter-form .form-group input:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}

.newsletter-form .form-group input::placeholder {
  color: var(--ink-faint);
  font-weight: 300;
}

.newsletter-form .btn-cta {
  width: 100%;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
}

.newsletter-form .btn-cta i {
  margin: 0;
}

.newsletter-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--ink-faint);
  text-align: center;
}

.newsletter-note i {
  margin-right: 0.4rem;
  color: var(--terracotta);
}

/* ============== CTA SECTION ============== */
.cta-section {
  padding: 5.5rem 0;
  background: linear-gradient(120deg, var(--terracotta) 0%, var(--terracotta-dark) 100%);
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.cta-content p {
  color: rgba(255, 250, 242, 0.9);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.cta-section .btn-cta-dark {
  background: var(--forest-950);
}
.cta-section .btn-cta-dark:hover { background: #060f0b; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--forest-950);
  color: rgba(247, 241, 231, 0.78);
  padding: 4rem 0 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
}

.footer-address h4,
.footer-social h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.footer-address p {
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-address i { color: var(--gold); width: 16px; }

.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.social-icons a:hover { transform: translateY(-4px); opacity: 0.88; }

.footer-copy {
  font-size: 0.82rem;
  color: rgba(247, 241, 231, 0.45);
}

/* ============== FLOATING WHATSAPP ============== */
.whatsapp-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }

.whatsapp-float .tooltip {
  position: absolute;
  right: 70px;
  background: var(--forest-950);
  color: var(--white);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.whatsapp-float:hover .tooltip { opacity: 1; }

/* ============== SERVICE DETAIL PAGES ============== */
.service-detail { padding: 3rem 0 6rem; background: var(--paper); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--ink-soft); transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb i { font-size: 0.65rem; }
.breadcrumb span { color: var(--forest-900); font-weight: 600; }

.service-detail-header { margin-bottom: 2.6rem; }

.service-detail-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--forest-900);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.service-meta {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.service-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.service-meta i { color: var(--terracotta); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 2.2rem;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-description h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--forest-900);
  margin: 0 0 1rem;
}

.detail-description h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest-900);
  margin: 2rem 0 1rem;
}

.detail-description p {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.detail-description strong { color: var(--terracotta-dark); }

.detail-description ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.detail-description ul li {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 0.4rem;
  list-style: disc;
}

.detail-description .faq-answers {
  margin-top: 1rem;
}

.detail-description .faq-answers p {
  margin-bottom: 0.8rem;
}

.detail-description .faq-answers strong {
  color: var(--forest-900);
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 0 !important;
}

.service-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.96rem;
  list-style: none !important;
}
.service-features-list i { 
  color: var(--forest-700); 
  margin-top: 0.2rem;
  font-size: 1.05rem;
}

.detail-video { 
  margin-top: 2rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-embed {
  width: 100%;
  min-height: 320px;
  display: block;
  background: var(--forest-900);
  border-radius: var(--radius-md);
}

.detail-video p {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 6.5rem;
}

.sidebar-card {
  background: var(--white);
  border: 1px solid rgba(33, 27, 20, 0.08);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.sidebar-card h4 {
  font-family: var(--font-display);
  color: var(--forest-900);
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.sidebar-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.sidebar-card p i { color: var(--terracotta); width: 16px; }

.sidebar-card .btn-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

.related-services {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.related-services a {
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}
.related-services a:hover { color: var(--terracotta); padding-left: 4px; }

/* ============== RESPONSIVE ============== */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image { order: -1; max-width: 420px; }
  .about-video-wrap { height: 240px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .newsletter-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .newsletter-text { text-align: center; }
  .newsletter-text p { max-width: 100%; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
}

@media (max-width: 760px) {
  .header-container { flex-direction: column; gap: 0.9rem; }
  .main-nav ul { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
  .hero-stats { gap: 1.6rem; }
  .card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item { padding: 1.4rem 1.2rem; }
  .faq-answer p { margin-left: 0; }
  .faq-question { gap: 0.8rem; }
  .newsletter-form { padding: 1.5rem 1.2rem; }
  .service-detail-header h1 { font-size: 1.6rem; }
  .service-meta { gap: 0.8rem; }
  .service-meta span { font-size: 0.8rem; }
  .detail-description h2 { font-size: 1.3rem; }
  .video-embed { min-height: 200px; }
  .about-video-wrap { height: 200px; }
}

@media (max-width: 480px) {
  .faq-section { padding: 3rem 0; }
  .faq-item { padding: 1rem 1rem; }
  .faq-question h3 { font-size: 0.95rem; }
  .faq-answer p { font-size: 0.9rem; }
  .newsletter-text h2 { font-size: 1.6rem; }
  .newsletter-text p { font-size: 0.95rem; }
  .newsletter-form .btn-cta { font-size: 0.95rem; padding: 0.8rem 1rem; }
  .newsletter-section { padding: 3rem 0; }
  .service-detail { padding: 1.5rem 0 3rem; }
  .service-detail-header h1 { font-size: 1.3rem; }
  .sidebar-card { padding: 1.2rem; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.3rem; bottom: 1.2rem; right: 1.2rem; }
  .whatsapp-float .tooltip { display: none; }
  .about-video-wrap { height: 170px; }
}


.logo-title{
    display:flex;
    align-items:center;
}

.logo-link{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.site-logo{
    height:70px;
    width:auto;
    display:block;
    object-fit:contain;
    transition:transform .3s ease;
}

.site-logo:hover{
    transform:scale(1.05);
}
