/* ============================================================
   BREEZE ACUPUNCTURE — Main Stylesheet
   ============================================================ */

/* ── Design Tokens ── */
/* ============================================================
   SETTINGS — edit brand colours and fonts here.
   Most routine changes only require editing this block.
   ============================================================ */
:root {
  /* --- Main brand colours --- */
  --forest:         #1a2e1a; /* dark green — main text, header, footer background */
  --forest-dark:    #0f2017; /* darker green — button and link hover states */
  --btn-green:      #4a5e44; /* medium green — buttons, links */
  --dark-panel:     #5f8c52; /* bright green — contact sidebar, mobile nav */
  --sage-light:     #dde8d6; /* light green — alternating section backgrounds */
  --off-white:      #f9f7f4; /* warm white — used for card and form backgrounds */
  --cream:          #f5e6e0; /* warm pink-cream — about section photo background */
  --white:          #ffffff;

  /* --- Accent colours --- */
  --badge-red:      #b5451b; /* terracotta — form error messages */
  --star-gold:      #c7a54b; /* gold — star rating colour */
  --whatsapp:       #25D366; /* WhatsApp button */
  --whatsapp-hover: #1ebe5d; /* WhatsApp button hover */

  /* --- Card / testimonial / FAQ colours --- */
  --card-bg:      #f8fbf9; /* accordion and card background */
  --card-border:  #dde7e2; /* accordion and card border */
  --card-heading: #2f4f46; /* headings inside cards */
  --card-body:    #52655f; /* body text inside cards */
  --card-muted:   #5f6f69; /* muted / intro text */
  --section-alt:  #f7f9f8; /* light green-tinted white — main page background, Why Us and testimonials sections */

  /* --- Fonts --- */
  --font-serif:   'Playfair Display', Georgia, serif; /* headings */
  --font-sans:    'DM Sans', system-ui, sans-serif;   /* body text */

  /* --- Layout --- */
  --max-w:              1200px; /* max content width on large screens */
  --header-h:           150px;
  --header-h-scrolled:  105px;
  --ease:               cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; background: var(--section-alt); }

body {
  font-family: var(--font-sans);
  color: var(--forest);
  background: var(--section-alt);
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Utilities ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--off-white);
  z-index: 100;
  transition: box-shadow 0.3s var(--ease);
}
#header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.08); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.logo img {
  height: 95px;
  width: auto;
  display: block;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  justify-self: center;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header contact */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  font-size: 13px;
  color: var(--forest);
  justify-self: end;
}
.header-contact a { transition: opacity 0.2s; }
.header-contact a:hover { opacity: 0.65; }

.header-social-links {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.header-social-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(26,46,26,0.18);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  transition: all 0.25s var(--ease);
  opacity: 0.8;
}

.header-social-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
}

.header-social-btn:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
  opacity: 1;
  transform: translateY(-1px);
}

/* ============================================================
   NAV OVERLAY
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-panel);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.nav-overlay ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.nav-link {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  opacity: 0.85;
  padding: 8px 0;
  transition: opacity 0.2s;
  display: block;
  letter-spacing: -0.01em;
}

.nav-link:hover { opacity: 1; }

.nav-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 36px;
  color: var(--white);
  opacity: 0.7;
  line-height: 1;
  transition: opacity 0.2s;
}

.nav-close:hover { opacity: 1; }

.nav-contact {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--white);
  opacity: 0.6;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  margin-top: 0;
  background: var(--sage-light);
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 80vh;
  min-height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 45% 55%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s var(--ease);
}

.slide.active {
  opacity: 1;
  pointer-events: all;
}

.slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 56px 80px 64px;
  gap: 24px;
  text-align: left;
}

.slide-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  font-style: normal;
  color: var(--forest);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.slide-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 360px;
}

.slide-image {
  position: relative;
  overflow: hidden;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Slider controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 48px;
  color: var(--forest);
  opacity: 0.45;
  padding: 8px 12px;
  line-height: 1;
  transition: opacity 0.2s;
  user-select: none;
}

.slider-prev { left: 8px; }
.slider-next { right: 8px; }

.slider-prev:hover,
.slider-next:hover { opacity: 0.85; }

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--forest);
  opacity: 0.3;
  transition: opacity 0.3s;
  padding: 0;
}

.dot.active { opacity: 1; }

.cta-note {
  font-size: 13px;
  color: var(--forest);
  opacity: 0.7;
  margin-top: -10px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #f3f6f1;
  border-top: 1px solid rgba(26,46,26,0.08);
  border-bottom: 1px solid rgba(26,46,26,0.08);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.trust-item {
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  opacity: 0.85;
}

/* ============================================================
   WHAT IS MEDICAL ACUPUNCTURE
   ============================================================ */
#what-is {
  background: var(--off-white);
}

.what-is-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.what-is-left {
  background: var(--dark-panel);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.what-is-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  line-height: 1.2;
  text-align: left;
  letter-spacing: -0.01em;
}

.what-is-right {
  background: var(--off-white);
  padding: 80px 72px 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.what-is-right h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.4;
  margin-bottom: 4px;
}

.what-is-right p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--forest);
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: 600px;
  max-width: 100%;
}

.about-left {
  background: var(--off-white);
  padding: 80px 80px 80px max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.about-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 600;
  font-style: normal;
  color: var(--forest);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.about-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
}

.about-left p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--forest);
  max-width: 600px;
}

.about-right {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-photo-wrap {
  position: relative;
  height: 100%;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* BMAS badge */
.bmas-badge {
  width: 140px;
  height: auto;
  align-self: flex-end;
}

.bmas-badge svg {
  display: block;
  width: 100%;
  height: auto;
}

.bmas-ring {
  transform-origin: 60px 60px;
  transform-box: fill-box;
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bmas-badge:hover .bmas-ring {
  transform: rotate(30deg);
}

/* ============================================================
   CONDITIONS
   ============================================================ */
#conditions {
  background: var(--sage-light);
}

#conditions h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  color: var(--forest);
  max-width: 640px;
  margin: 0 auto 56px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.condition-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.condition-img-wrap {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sage-light);
}

.condition-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.condition-card h3 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.condition-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.condition-card li {
  font-size: 14px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
}

.condition-card li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--btn-green);
  flex-shrink: 0;
}

/* ============================================================
   BLOG
   ============================================================ */
#blog {
  background: var(--sage-light);
}

#blog h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: var(--forest);
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.blog-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
}

.blog-footer .btn {
  align-self: auto;
  margin: 0 auto;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.14);
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(26,46,26,0.05);
  border-radius: 12px;
}

.blog-card-img {
  overflow: hidden;
  max-height: 320px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 40px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.blog-card-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 600;
  font-style: normal;
  color: var(--forest);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.25s var(--ease);
}

.blog-card:hover .blog-card-body h3 {
  color: var(--btn-green);
}

.blog-card-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--forest);
  opacity: 0.82;
}

.read-more {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--btn-green);
  display: inline-flex;
  align-items: center;
  transition: gap 0.2s;
  gap: 4px;
}

.read-more:hover { gap: 8px; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: 560px;
  max-width: 100%;
}

.contact-left {
  background: var(--dark-panel);
  padding: 80px max(40px, calc((100vw - var(--max-w)) / 2 + 40px));
  padding-right: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  font-style: normal;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.contact-sub {
  font-size: 14px;
  color: var(--white);
  opacity: 0.85;
  margin-top: -8px;
  margin-bottom: 4px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
  opacity: 0.85;
}

.contact-details li svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  flex-shrink: 0;
}

.contact-details a:hover { opacity: 0.7; }

.contact-call-btn,
.contact-whatsapp-btn {
  display: inline-block;
  width: fit-content;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.contact-call-btn {
  background: var(--white);
  color: var(--forest);
}

.contact-call-btn:hover {
  background: #f3f3f3; /* slightly darker white for hover */
  transform: translateY(-2px);
}

.contact-whatsapp-btn {
  background: var(--whatsapp);
  color: var(--white);
  margin-top: -8px;
}

.contact-whatsapp-btn:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.contact-right {
  background: var(--off-white);
  padding: 80px max(40px, calc((100vw - var(--max-w)) / 2 + 40px)) 80px 64px;
  display: flex;
  align-items: center;
}

.contact-right form {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(26,46,26,0.2);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--forest);
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--btn-green);
}

.form-group textarea { resize: vertical; }

.required {
  color: var(--badge-red);
  margin-left: 2px;
}

.field-error {
  font-size: 12px;
  color: var(--badge-red);
  min-height: 16px;
}

.form-success {
  padding: 14px 20px;
  background: var(--sage-light);
  color: var(--forest);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border-radius: 2px;
}

.form-success[hidden] { display: none; }

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  background: var(--sage-light);
}

#location h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: var(--forest);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 0;
}

.location-info h3,
.location-hours h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(26,46,26,0.15);
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.location-list strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
}

.location-list span {
  font-size: 14px;
  color: var(--forest);
  opacity: 0.8;
  line-height: 1.7;
}

.location-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.location-label svg {
  width: 16px;
  height: 16px;
  stroke: var(--btn-green);
  flex-shrink: 0;
}

.location-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
  line-height: 1.6;
}

.location-contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest);
  flex-shrink: 0;
}

.contact-item a {
  color: var(--forest);
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.contact-item a:hover {
  opacity: 0.7;
}

.location-cta {
  margin-top: 24px;
  display: inline-block;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--forest);
  padding: 40px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--white);
  font-size: 13px;
  opacity: 0.85;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-contact a:hover { opacity: 0.7; }

/* Social Buttons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.25s var(--ease);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

.social-btn:hover {
  background-color: var(--white);
  color: var(--forest);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.sticky-call-btn,
.floating-whatsapp-btn {
  display: none;
}

/* ============================================================
   RESPONSIVE — MOBILE (≤767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --header-h: 90px;
    --header-h-scrolled: 72px;
  }

  .logo img {
    height: 58px;
  }

  .section-inner {
    padding: 64px 24px;
  }

  /* Header */
  .header-inner {
    padding: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .header-contact {
    display: none;
  }

  /* Trust bar */
  .trust-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 24px;
  }

  .trust-item {
    font-size: 13px;
  }

  /* Hero */
  .slider {
    height: auto;
    min-height: 0;
  }

  .slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    pointer-events: none;
  }

  .slide.active {
    display: block;
    pointer-events: all;
  }

  .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px 32px;
    width: 100%;
    box-sizing: border-box;
  }

  .slide-image {
    width: 100%;
    height: 240px;
  }

  .slide-content p {
    max-width: 100%;
  }

  .slider-prev {
    left: 4px;
    font-size: 36px;
  }

  .slider-next {
    right: 4px;
    font-size: 36px;
  }

  .what-is-inner {
    grid-template-columns: 1fr;
  }

  .what-is-left {
    padding: 56px 24px;
  }

  .what-is-right {
    padding: 48px 24px;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-left {
    padding: 56px 24px;
  }

  .about-right {
    height: 480px;
    overflow: hidden;
  }

  .bmas-badge {
    width: 110px;
    align-self: center;
  }

  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .blog-card {
    grid-template-columns: 1fr;
  }

  .blog-card-img {
    max-height: 240px;
  }

  .blog-card-body {
    padding: 28px 24px 32px;
    align-items: flex-start;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-left {
    padding: 56px 24px;
    gap: 20px;
  }

  .contact-right {
    padding: 48px 24px;
  }

  .contact-call-btn,
  .contact-whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-cta {
    width: 100%;
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-contact {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sticky-call-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--forest);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--ease);
  }

  .sticky-call-btn:hover {
    transform: translateY(-2px);
    background: var(--forest-dark);
  }

  .sticky-call-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }

  .floating-whatsapp-btn {
    position: fixed;
    right: 16px;
    bottom: 74px;
    z-index: 998;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.22);
    font-size: 24px;
    line-height: 1;
    transition: all 0.3s var(--ease);
  }

  .floating-whatsapp-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
}

.btn-dark {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.btn-dark:hover {
  background: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

.btn-small {
  padding: 10px 18px;
  font-size: 13px;
}

.blog-card-body .btn,
.slide-content .btn,
.about-left .btn {
  align-self: flex-start;
}
/* ============================================================
   PRICING — PREMIUM VERSION
   ============================================================ */
#pricing {
  background: var(--off-white);
}

.pricing-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(249,247,244,0.96) 100%);
  border: 1px solid rgba(26,46,26,0.08);
  border-radius: 22px;
  padding: 64px 56px;
  box-shadow: 0 18px 50px rgba(26,46,26,0.06);
}

.pricing-header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(74,94,68,0.08);
  color: var(--btn-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.pricing-header p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--forest);
  opacity: 0.82;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(26,46,26,0.06);
  border-radius: 18px;
  padding: 28px 24px;
  min-height: 220px;
  box-shadow: 0 8px 24px rgba(26,46,26,0.04);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(26,46,26,0.08);
  border-color: rgba(74,94,68,0.16);
}

.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pricing-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  color: var(--btn-green);
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.pricing-card p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--forest);
  opacity: 0.84;
}

.pricing-note-box {
  max-width: 760px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(221,232,214,0.45);
  border: 1px solid rgba(74,94,68,0.08);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest);
  opacity: 0.8;
}

.pricing-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .pricing-wrap {
    padding: 38px 24px;
    border-radius: 18px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-card {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 16px;
  }

  .pricing-note-box {
    padding: 16px 16px;
  }

  .pricing-cta .btn {
    width: 100%;
    text-align: center;
  }
}
#why-us {
  padding: 80px 20px;
  background: var(--section-alt);
  text-align: center;
}

.why-inner {
  max-width: 1100px;
  margin: auto;
}

#why-us h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.why-box {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  transition: 0.3s;
}

.why-box:hover {
  transform: translateY(-5px);
}

.why-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}
/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 90px 20px;
  background: linear-gradient(to bottom, var(--section-alt) 0%, #eef4f1 100%);
}

.testimonials-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.section-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7e9288;
}

#testimonials h2 {
  margin-bottom: 14px;
}

.testimonials-intro {
  margin: 0;
  color: var(--card-muted);
  font-size: 17px;
  line-height: 1.7;
}

.testimonials-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 56px 50px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonial-card {
  min-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(47, 79, 70, 0.08);
  padding: 34px 32px 30px;
  text-align: left;
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.stars {
  color: var(--star-gold);
  letter-spacing: 0.08em;
  font-size: 18px;
}

.testimonial-tag {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e4eee9;
  color: #37564d;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.35;
  color: var(--card-heading);
  font-weight: 500;
}

.testimonial-card p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--card-body);
}

.testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--card-heading);
}

.t-prev,
.t-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: var(--white);
  color: var(--card-heading);
  box-shadow: 0 8px 20px rgba(47, 79, 70, 0.12);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 3;
}

.t-prev:hover,
.t-next:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 24px rgba(47, 79, 70, 0.16);
}

.t-prev {
  left: 0;
}

.t-next {
  right: 0;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.t-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: #bfd0c8; /* inactive dot — muted teal */
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.t-dots button.active {
  background: var(--card-heading);
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .testimonials-slider {
    padding: 10px 12px 42px;
  }

  .testimonial-card {
    padding: 26px 22px 24px;
    border-radius: 22px;
  }

  .testimonial-card blockquote {
    font-size: 22px;
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .t-prev,
  .t-next {
    display: none;
  }
}
/* ===== FAQ ===== */
#faq {
  padding: 90px 20px;
  background: var(--white);
}

.faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.faq-intro {
  margin: 0;
  color: var(--card-muted);
  font-size: 17px;
  line-height: 1.7;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.accordion-item {
  border: 1px solid var(--card-border);
  border-radius: 20px;
  background: var(--card-bg);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(47, 79, 70, 0.05);
}

.accordion-header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: var(--card-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
}

.accordion-icon {
  font-size: 24px;
  line-height: 1;
  color: var(--card-heading);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-content > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
  color: var(--card-body);
  line-height: 1.8;
  font-size: 16px;
}

.accordion-item.active .accordion-content {
  grid-template-rows: 1fr;
}

.accordion-item.active .accordion-content > p {
  padding: 0 24px 22px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  #faq {
    padding: 72px 16px;
  }

  .accordion-header {
    padding: 18px 18px;
    font-size: 16px;
  }

  .accordion-content > p {
    font-size: 15px;
    line-height: 1.7;
  }

  .accordion-item.active .accordion-content > p {
    padding: 0 18px 18px;
  }
}