 /* ═══════════════════════════════════════════════════════════════
   THE PRACTICE — style.css
   ═══════════════════════════════════════════════════════════════ */
:root {
  --cream: #f5f0e8;
  --cream-dark: #ede8dd;
  --sage-blue: #99ad7a;
  --sage-bg: #99ad7a;
  --sage-light: rgba(153, 173, 122, 0.12);
  --green-card: #191a19;
  --olive-ticker: #546b41;
  --dark: #1c1c1a;
  --mid: #546b41;
  --mid-text: #4a3f29;
  --text-light: #6b5f4c;
  --border: rgba(28, 28, 26, 0.15);

  /* NEW: Our Approach dark section colour */
  --crimson: #7a1a2e;
  --crimson-card: rgba(255, 255, 255, 0.08);
  --crimson-card-hover: rgba(255, 255, 255, 0.14);
  --blue: #aabfd5;
  --white: #fff;
  --gray: #cccccc;
  --black: #000;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--cream);
  color: var(--dark);
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

h1, h2, h3, h4{
  font-family: "Cormorant Garamond", sans-serif;
  font-weight: 600;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--gray);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  padding: 0 40px;
}
#navbar.scrolled {
  border-color: var(--border);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 90px;
}
.nav-left {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-right {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1001;
}
.nav-link {

  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--dark);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img {
  display: block;
  width: clamp(150px, 22vw, 280px);
  height: auto;
}
.btn-nav {

  font-weight: bold;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  padding: 7px 18px;
  color: var(--dark);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-nav:hover {
  background: var(--dark);
  color: var(--cream);
}

/* ── HERO ── */
#hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 100vh;
  padding-top: 100px;
  background: var(--cream);
}
.hero-photo-container {
  padding: 40px 20px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 32px;
  background: url("../images/home/hero-image1.webp") center top/cover no-repeat;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  animation: floatImage 6s ease-in-out infinite;
  overflow: hidden;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/home/hero-image2.webp") center top/cover no-repeat;
  opacity: 0;
  animation: swapHeroImage 8s ease-in-out infinite;
}
@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes swapHeroImage {
  0%,
  40% {
    opacity: 0;
  }
  50%,
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.hero-text {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 70px;
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--dark);
}
.hero-sub {
  
  line-height: 1.8;
  color: var(--mid-text);
  max-width: 440px;
  margin-bottom: 32px;
}
.underline-blue,
.underline-yellow,
.underline-green {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.underline-blue::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(100, 149, 237, 0.45);
  z-index: -1;
  border-radius: 4px;
}
.underline-yellow::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(244, 164, 96, 0.45);
  z-index: -1;
  border-radius: 4px;
}
.underline-green::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(153, 173, 122, 0.6);
  z-index: -1;
  border-radius: 4px;
}
.link-arrow {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 2px;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 15px;
  transition: opacity 0.2s;
}
.link-arrow:hover {
  opacity: 0.5;
  color: var(--dark);
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--olive-ticker);
  overflow: hidden;
  padding: 15px 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-item {
  font-size: 15 px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 18px;
  flex-shrink: 0;
}
.ticker-dot {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 6px;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ── ABOUT ── */
#about {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  padding: 100px 80px;
  gap: 80px;
  background: #fff;
}
.about-text .eyebrow {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 30px;
}
.about-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 4.8vw, 68px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--dark);
}
.about-underline {
  position: relative;
  display: inline-block;
}
.about-underline::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(100, 149, 237, 0.45);
  z-index: -1;
  border-radius: 4px;
}
.about-img-box {
  width: 100%;
  aspect-ratio: 0.95;
  background: url("../images/home/about.jpg") center/cover no-repeat;
  border-radius: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: transform 0.6s ease;
}
.about-img-box:hover {
  transform: scale(1.03);
}

/* ── THERAPISTS ── */
#therapists {
  background: var(--cream);
  padding: 80px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.therapists-container {
  display: grid;
  grid-template-columns: 58% 42%;
  width: 100%;
  max-width: 1400px;
  background: var(--cream);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border);
}
.therapists-photo-box {
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
.therapists-photo {
  width: 100%;
  height: 100%;
  background: url("../images/home/therapists.jpg") center/cover no-repeat;
  transition: transform 0.6s ease;
}
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.therapists-photo-box:hover .therapists-photo {
  animation: breathe 4s ease-in-out infinite;
}
.therapists-card {
  background: var(--sage-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px;
}
.therapists-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  color: var(--dark);
}
.therapists-card .link-arrow {
  font-weight: 700;
  font-size: 20px;
  border-bottom: 2.5px solid var(--dark);
}

/* ── OUR SERVICES ── */
#our-services {
  background: var(--sage-bg);
  padding: 100px 80px;
  margin: 60px 80px;
  border-radius: 40px;
  border: 1px solid rgba(84, 107, 65, 0.2);
  box-shadow: 0 15px 40px rgba(84, 107, 65, 0.1);
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  margin-bottom: 60px;
  text-align: center;
}
.services-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green-card);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.services-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green-card);
  border-radius: 50%;
  margin-right: 8px;
}
.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.8vw, 68px);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
.services-card {
  background: #fff;
  border-radius: 28px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(84, 107, 65, 0.15);
  box-shadow: 0 10px 25px rgba(84, 107, 65, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(84, 107, 65, 0.12);
  border-color: var(--green-card);
}
.card-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(153, 173, 122, 0.2);
  color: var(--green-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition:
    background 0.3s,
    color 0.3s;
}
.services-card:hover .card-icon-circle {
  background: #95af7d;
  color: #fff;
}
.approach-card:hover .approach-card-icon img{filter: brightness(0)}
.services-card h3 {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-card);
  margin-bottom: 16px;
}
.services-card p {
 
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  flex-grow: 1;
}
.card-link {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-card);
  text-decoration: none;
  border-bottom: 2px solid var(--green-card);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: opacity 0.2s;
}
.card-link:hover {
  opacity: 0.7;
}
.doctor-card {
  background: var(--green-card);
  border: none;
  padding: 40px 30px 0;
  overflow: hidden;
  justify-content: space-between;
}
.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(84, 107, 65, 0.2);
  border-color: transparent;
}
.doctor-card h3 {
  color: #fff;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.doctor-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 200px;
}
.doctor-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.services-footer {
  margin-top: 40px;
}
.services-footer-text-1 {
 
  color: var(--dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.services-footer-text-2 {

  color: var(--dark);
  font-weight: 700;
}
.stars {
  color: #ffee00;
  margin: 0 4px;
  padding-left:7px;
}

/* ── CONDITIONS ── */
#conditions-treated {
  background: var(--cream);
  padding: 80px 80px;
  margin: 0;
  border-radius: 0;
}
.conditions-container {
  max-width: 1200px;
  margin: 0 auto;
}
.conditions-header {
  text-align: center;
  margin-bottom: 60px;
}
.conditions-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green-card);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.conditions-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green-card);
  border-radius: 50%;
  margin-right: 8px;
}
.conditions-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.8vw, 68px);
  color: var(--green-card);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}
.conditions-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--mid-text);
  max-width: 680px;
  margin: 0 auto;
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.condition-card {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(84, 107, 65, 0.04);
  border: 3.5px solid var(--green-card);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.condition-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(84, 107, 65, 0.15);
  border-color: var(--dark);
}
.condition-img-container {
  height: 270px;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
}
.condition-img-container img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.condition-card:hover .condition-img-container img {
  transform: scale(1.08);
}
.condition-content {
  padding: 30px 28px;
}
.condition-content h3 {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--green-card);
  margin-bottom: 14px;
}
.condition-content p {
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
}
.conditions-footer {
  text-align: center;
  margin-top: 40px;
}
.conditions-footer-text {

  color: var(--green-card);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  padding: 12px 30px;
  border-radius: 40px;
  box-shadow: 0 8px 20px rgba(84, 107, 65, 0.08);
  gap: 12px;
}
.conditions-footer-text a {
  color: var(--green-card);
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.conditions-footer-text a:hover {
  opacity: 0.8;
}

/* ── TESTIMONIALS ── */
#patient-testimonials {
  background: #4c6d47;
  padding: 100px 80px;
  margin: 60px 80px;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(84, 107, 65, 0.15);
  overflow: hidden;
  position: relative;
}
.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-header {
  margin-bottom: 50px;
  text-align: center;
}
.testimonials-badge {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green-card);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.testimonials-badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green-card);
  border-radius: 50%;
  margin-right: 8px;
}
.testimonials-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.8vw, 68px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.testimonials-subtitle {

  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}
.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 10px 0;
}
.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.testimonial-card {
  flex: 0 0 31%;
  margin-right: 3.5%;
  background: #fff;
  border-radius: 28px;
  padding: 40px 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
}
.quote-icon {
  font-size: 64px;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  color: rgb(72 110 73);
  margin-bottom: -10px;
}
.quote-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 24px;
  flex-grow: 1;
}
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.user-name {
  font-family: "DM Sans", sans-serif;

  font-weight: 700;
  color: var(--green-card);
  margin-bottom: 2px;
}
.user-desc {
  font-size: 11px;
  color: var(--text-light);
  margin: 0;
}
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-dot.active {
  background: #fff;
  transform: scale(1.3);
}
.testimonials-footer {
  margin-top: 20px;
}
.testimonials-footer-text {

  color: #fff;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 30px;
  border-radius: 40px;
  gap: 12px;
}
.testimonials-footer-text a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.testimonials-footer-text a:hover {
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════════
   REFERENCE 1: OUR APPROACH 
   ═════════════════════════════════════════════════════════════════ */
#our-approach {
  background: var(--sage-bg);
  padding: 100px 80px;
  margin: 0;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow in top-right corner for depth */
#our-approach::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(252, 0, 0, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.approach-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 80px;
  align-items: center;
}

/* LEFT SIDE */
.approach-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #000000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}

.approach-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.12;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.approach-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  margin-bottom: 40px;
  max-width: 400px;
}

.approach-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #546b41;
  border: 1px solid #546b41;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.approach-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #000000;
}

/* RIGHT SIDE — 2×4 cards grid */
.approach-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.approach-card {
  background: #506c44;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: default;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.approach-card:hover {
  background: var(--blue-card);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.approach-cta-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  color: #000000;
}


.approach-card:hover::before {
  opacity: 1;
}

.approach-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover: icon circle becomes white, gets a glow */
.approach-card:hover .approach-card-icon {
  background: #fff;
  color: var(--sage-bg);
  transform: scale(1.12) rotate(-6deg);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.25);
}

.approach-card span {
  font-family: "DM Sans", sans-serif;
  
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

/* ══════════════════════════════════════════════════════════════════
   REFERENCE 2: HOW IT WORKS — 4-step section
   ══════════════════════════════════════════════════════════════════ */
#how-it-works {
  background: #4c6d47;
  padding: 80px 80px;
  position: relative;
  margin: 80px 80px;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(84, 107, 65, 0.15);
  overflow: hidden;
}

.shapes-see-more {margin:80px 20px;}
.hiw-container {
  max-width: 1200px;
  margin: 0 auto;
}

.hiw-header {
  margin-bottom: 70px;
}

.hiw-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}

.hiw-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hiw-subtitle {

  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

/* 4 step cards in a row */
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.hiw-step {
  background: #fff;
  border-radius: 28px;
  padding: 38px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(84, 107, 65, 0.06);
  border: 1px solid rgba(84, 107, 65, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.hiw-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(84, 107, 65, 0.13);
}

/* Step icon circle — same size/style as reference */
.hiw-step-icon-wrap {
  margin-bottom: 28px;
}

.hiw-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #486e49;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
  position: relative;
}

/* Glow animation on hover */
.hiw-step:hover .hiw-step-icon {
  transform: scale(1.1);
  box-shadow:
    0 0 0 8px rgba(84, 107, 65, 0.12),
    0 0 24px rgba(84, 107, 65, 0.35),
    0 0 48px rgba(84, 107, 65, 0.15);
  animation: iconPulseGlow 1.6s ease-in-out infinite;
}

@keyframes iconPulseGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 8px rgba(84, 107, 65, 0.12),
      0 0 24px rgba(84, 107, 65, 0.35),
      0 0 48px rgba(84, 107, 65, 0.15);
  }
  50% {
    box-shadow:
      0 0 0 12px rgba(84, 107, 65, 0.08),
      0 0 36px rgba(84, 107, 65, 0.5),
      0 0 64px rgba(84, 107, 65, 0.2);
  }
}

.hiw-step-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-card);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hiw-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hiw-step-desc {
  line-height: 1.72;
  color: var(--text-light);
  margin: 0;
}

/* Footer banner */
.hiw-footer {
  text-align: center;
}
.hiw-footer-text {

  color: var(--green-card);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(84, 107, 65, 0.2);
  padding: 12px 30px;
  border-radius: 40px;
  box-shadow: 0 6px 18px rgba(84, 107, 65, 0.08);
}
.hiw-footer-text a {
  color: var(--green-card);
  font-weight: 700;
  text-decoration: underline;
  transition: opacity 0.2s;
}
.hiw-footer-text a:hover {
  opacity: 0.75;
}

/* ══════════════════════════════════════════════════════════════════
   REFERENCE 3 & 4: FAQs — shapes + accordion
   ══════════════════════════════════════════════════════════════════ */
#approach {
  background: var(--blue);
  padding: 90px 80px;
  text-align: center;
}

.approach-section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dark);
  opacity: 0.55;
  text-align: center;
  margin-bottom: 60px;
  display: block;
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

/* ── SHAPE ICONS with uploaded PNGs ── */
.shapes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  align-items: end;
  justify-items: center;
}

.shape-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Container that holds both the regular and hover state images */
.shape-icon--img {
  width: 100px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.35s ease;
  cursor: default;
}

.shape-icon--img:hover {
  background: var(--dark);
}

/* The actual shape image */
.shape-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: absolute;
}

/* Default state: show the dark version */
.shape-img--dark {
  opacity: 1;
  filter: none;
}

/* Hover state: overlay becomes white */
.shape-img--hover {
  opacity: 0;
  filter: brightness(0) invert(1); /* makes image white */
}

.shape-icon--img:hover .shape-img--dark {
  opacity: 0;
}

.shape-icon--img:hover .shape-img--hover {
  opacity: 1;
  transform: scale(1.1) rotate(-5deg);
}

.shape-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--dark);
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
}

.shapes-see-more {
  grid-column: 1 / -1;
  margin-top: 8px;
  text-align: center;
}
.shapes-see-more a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: var(--dark);
  text-decoration: none;
  font-style: italic;
  font-size: 15px;
  border-bottom: 1px solid var(--dark);
  padding-bottom: 1px;
}

/* ── SERVICES ACCORDION ── */
.services-accordion {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.svc-item {
  border-bottom: 1px solid rgba(28, 28, 26, 0.2);
}
.svc-item:first-child {
  border-top: 1px solid rgba(28, 28, 26, 0.2);
}
.svc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
  cursor: pointer;
}
.svc-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.svc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s;
  opacity: 0.5;
}
.svc-item.open .svc-chevron {
  transform: rotate(180deg);
}
.svc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-body-inner {
  padding-bottom: 22px;
  padding: 0 30px;
 
  line-height: 1.85;
  color: var(--mid);
}
.svc-item.open .svc-body {
  max-height: 300px;
}


/* ── INSTAGRAM ── */
#instagram {
  padding: 10px 0 0;
  background: var(--sage-blue);
}
.ig-eyebrow {
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  padding: 0 0 30px;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
}
.ig-item {
  aspect-ratio: 1;
  overflow: hidden;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    filter 0.4s;
  filter: saturate(0.8);
}
.ig-item:hover img {
  transform: scale(1.07);
  filter: saturate(1);
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 60px 80px 36px;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1;
}
.footer-logo strong {
  font-style: normal;
}
.footer-col-title {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  margin-bottom: 18px;
}
.footer-col p,
.footer-col address {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  font-style: normal;
  line-height: 2.1;
  font-weight: 300;
}
.footer-col a {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.55);
  text-decoration: none;
  display: block;
  line-height: 2.2;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--cream);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 10.5px;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.04em;
}


/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  flex-direction: column;
  gap: 5px;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2000;
  pointer-events: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE MENU OVERLAY ── */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1999;
  background: rgba(28, 28, 26, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--cream-dark);
  padding: 80px 40px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
}
.mobile-menu-overlay.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.mobile-nav-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  transition: opacity 0.2s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.mobile-nav-link:hover {
  opacity: 0.6;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 40px;
}

.mobile-nav-cta {
  display: block;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--dark);
  padding: 12px 24px;
  color: var(--dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-cta:hover {
  background: var(--dark);
  color: var(--cream);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 {
  transition-delay: 0.1s;
}
.reveal-d2 {
  transition-delay: 0.22s;
}
.reveal-d3 {
  transition-delay: 0.34s;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .approach-layout {
    gap: 50px;
  }
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 991px) {
  #hero {
    grid-template-columns: 1fr;
  }
  .hero-photo-container {
    padding: 24px;
  }
  .hero-photo {
    min-height: 360px;
  }
  #about {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 32px;
  }
  .about-img-box {
    min-height: 320px;
  }
  .therapists-container {
    grid-template-columns: 1fr;
  }
  .therapists-photo-box {
    min-height: 320px;
  }
  .hero-text,
  .therapists-card {
    padding: 60px 32px;
  }
  #navbar,
  #therapists,
  #contact,
  #newsletter,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav-inner {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }
  .nav-logo-img {
    width: clamp(170px, 46vw, 260px);
  }
  .nav-right {
    justify-content: flex-end;
  }

  /* Our Approach responsive */
  #our-approach {
    padding: 70px 24px;
  }
  .approach-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .approach-cards-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* How It Works responsive */
  #how-it-works {
    padding: 60px 24px;
    margin: 80px 16px;
    border-radius: 24px;
  }
  .hiw-container {
    max-width: 100%;
  }
  .hiw-header {
    margin-bottom: 50px;
  }
  .hiw-title {
    font-size: clamp(28px, 6vw, 48px);
  }
  .hiw-subtitle {
   
  }
  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
  .hiw-step {
    padding: 28px 20px 24px;
    border-radius: 20px;
  }
  .hiw-step-icon-wrap {
    margin-bottom: 20px;
  }
  .hiw-step-icon {
    width: 56px;
    height: 56px;
  }
  .hiw-step-title {
    font-size: 20px;
  }
  .hiw-step-desc {
    font-size: 15px;
    line-height: 1.6;
  }
  .hiw-footer {
    text-align: center;
  }
  .hiw-footer-text {
    font-size: 12px;
    padding: 10px 20px;
  }

  /* What We Practice responsive */
  #approach {
    padding: 70px 24px;
  }
  .approach-inner {
    grid-template-columns: 1fr;
  }

  /* Services & conditions */
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  #our-services {
    padding: 60px 24px;
    margin: 30px 16px;
    border-radius: 24px;
  }
  #conditions-treated {
    padding: 60px 24px;
  }
  .conditions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .condition-img-container {
    height: 240px;
    border-radius: 100px 100px 16px 16px;
  }

  #patient-testimonials {
    padding: 80px 24px;
    margin: 30px 16px;
    border-radius: 24px;
  }
  .testimonial-card {
    flex: 0 0 100%;
    margin-right: 0;
    min-height: auto;
  }

  .ig-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  #newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-h2 {
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-left {
    display: none;
  }
  .btn-nav {
    display: none;
  }
  .hamburger {
    display: flex;
    margin-left: 0;
    padding: 8px 4px;
  }
  .nav-right {
    gap: 0;
  }
  #navbar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .nav-logo-img {
    width: clamp(150px, 60vw, 220px);
  }
}

@media (max-width: 640px) {
  .approach-cards-grid {
    grid-template-columns: 1fr;
  }
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  #how-it-works {
    padding: 50px 16px;
    margin: 80px 8px;
    border-radius: 16px;
  }
  .hiw-step {
    padding: 24px 18px 20px;
    border-radius: 16px;
  }
  .hiw-step-icon {
    width: 48px;
    height: 48px;
  }
  .hiw-title {
    font-size: clamp(24px, 5.5vw, 36px);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .doctor-image-container {
    height: 180px;
  }
}














/* ==========================================
   About us
   ========================================== */






























/* ==========================================
   About us —
   ========================================== */

body.about-us-page {
  background-color: var(--primary-color) !important;
  color: #1c1c1a;
}

.about-us-page section {
  padding: 80px 40px;
  background-color: var(--primary-color);
}

.about-badge {
  display: inline-block;
  background-color: var(--third-color);
  color: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 50px;
 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* ── REFERENCE 1: ABOUT HERO ── */
#about-hero {
  padding: 80px 16px;
}
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-hero-left {
  position: relative;
}
.about-hero-img-container {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rating-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 16px;
  right: 16px;
  background: rgba(220,204,172,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.floating-left-right {
  animation: floatLeftRight 4s ease-in-out infinite;
}
@keyframes floatLeftRight {
  0%,100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}
.rating-avatars {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.rating-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #DCCCAC;
  margin-right: -10px;
  object-fit: cover;
}
.rating-avatars img:last-child { margin-right: 0; }
.rating-badge-text h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #546B41;
  margin: 0;
}
.rating-badge-text p {
  font-size: 11px;
  color: #4a3f29;
  margin: 0;
}
.about-main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.15;
  color: #000000;
  margin-bottom: 24px;
}
.about-main-desc {
  line-height: 1.7;
  color: #4a3f29;
  margin-bottom: 30px;
}
.about-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-bullet-item svg { color: #99AD7A; flex-shrink: 0; }
.about-bullet-item span {
  font-weight: 500;
  color: #546B41;
}
.about-hero-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-cta-btn {
  display: inline-block;
  background-color: #546B41;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.about-cta-btn:hover {
  background-color: #99AD7A;
  color: #546B41;
  transform: translateY(-2px);
}
.about-doctor-bio {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bio-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.bio-text h4 { font-size: 20px; font-weight: 600; color: #546B41; margin: 0; }
.bio-text p  { font-size: 14px; color: #6b5f4c; margin: 0; }



/* ── REFERENCE 2: APPROACH CARDS ── */
#our-services {
  background-color: var(--sage-blue);
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}
.approach-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.5vw, 48px);
  color: #000;
  margin-top: 10px;
}
.approach-cards-grid-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.approach-custom-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
}
.approach-custom-card:hover,
.approach-custom-card.dark-card {
  background-color: #546B41;
  color: #fff;
  transform: translateY(-8px);
}
.approach-custom-card:hover .approach-card-title,
.approach-custom-card:hover .approach-card-desc,
.approach-custom-card:hover .rating-text h4,
.approach-custom-card:hover .rating-text p,
.approach-custom-card.dark-card .approach-card-title,
.approach-custom-card.dark-card .approach-card-desc {
  color: #fff !important;
}
.approach-card-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.rating-text h4 { font-size: 17px; font-weight: 700; color: #546B41; margin: 0; }
.rating-text p  { font-size: 11px; color: #6b5f4c; margin: 0; }
.approach-card-desc {

  line-height: 1.6;
  color: #4a3f29;
  margin-bottom: 24px;
}
.card-action-btn {
  display: inline-block;
  background-color: #99AD7A;
  color: #fff;
  padding: 11px 20px;
  border-radius: 30px;
 
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  transition: all 0.3s ease;
}
.card-action-btn:hover { background-color: #546B41; }
.approach-custom-card:hover .card-action-btn { background-color: #DCCCAC; color: #546B41; }
.approach-card-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #99AD7A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.approach-custom-card:hover .approach-card-icon-wrap { background-color: #DCCCAC; color: #546B41; }
.approach-card-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
}
.approach-section-footer {
  margin-top: 48px;
}
.footer-msg-1 { font-size: 15px; color: #ffffff; font-weight: 500; margin-bottom: 8px; }
.footer-msg-2 { font-size: 14px; color: #ffffff; }
.footer-msg-2 .stars { color: #eeff00; margin: 0 5px; }

/* ── REFERENCE 3: COMPASSIONATE SERVICES (HEXAGONS) ── */
#compassionate-services {padding:80px 16px;background-color: rgba(255,255,255,0.95);}
.comp-services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.comp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.8vw, 50px);
  margin-bottom: 20px;
}
.comp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #4a3f29;
  margin-bottom: 28px;
}
.comp-bullets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.comp-bullet-item { display: flex; align-items: center; gap: 10px; }
.comp-bullet-item svg { color: #99AD7A; flex-shrink: 0; }
.comp-bullet-item span { font-size: 14px; font-weight: 500; color: #546B41; }
.comp-footer { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.comp-cta-btn {
  display: inline-block;
  background-color: #506c44;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.comp-cta-btn:hover { background-color: #546B41; }
.comp-phone-box { display: flex; align-items: center; gap: 12px; }
.phone-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-color: #99AD7A;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-text p  { font-size: 11px; color: #6b5f4c; margin: 0; }
.phone-text h4 { font-size: 15px; font-weight: 700; color: #546B41; margin: 0; }

/* Hexagons */
.hex-grid-container {
  position: relative;
  width: 100%;
  height: 480px;
}
.hex-item {
  position: absolute;
  width: 200px;
  height: 228px;
  overflow: hidden;
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  transition: transform 0.5s ease;
}
.hex-inner {
  width: 100%; height: 100%;
  position: relative;
  background-color: #99AD7A;
}
.hex-inner img {
  width: 100%; height: 1  00%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.hex-item:hover { transform: scale(1.05) translateY(-5px); z-index: 10; }
.hex-item:hover img { transform: scale(1.1); }
.hex-1 { top: 10px; left: 20px; }
.hex-2 { top: 70px; left: 240px; }
.hex-3 { top: 210px; left: 130px; }
.hex-overlay-badge {
  position: absolute; inset: 0;
  background: rgba(92,95,91,0.85);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 20px; color: #fff;
}
.hex-overlay-badge h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px; font-weight: 700; margin: 0; color: #fff;
}
.hex-overlay-badge p {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.05em; margin: 4px 0 0; color: #ede8dd;
}

/* ── REFERENCE 4: MEDICAL EXPERTISE ── */
#medical-expertise {
  background: var(--sage-bg);
  padding: 100px 80px;
  margin: 60px 80px;
  border-radius: 40px;
  border: 1px solid rgba(84,107,65,0.2);
  box-shadow: 0 15px 40px rgba(84,107,65,0.1);
}
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.expertise-left { position: relative; }
.expertise-img-wrap {
  position: relative;
  width: 100%; height: 480px;
}
.expertise-main-img {
  width: 75%; height: 90%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.expertise-inset-img {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%; height: 55%;
  object-fit: cover;
  border-radius: 24px;
  border: 8px solid var(--sage-bg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.circular-spin-badge {
  position: absolute;
  bottom: 180px; right: 160px;
  z-index: 5;
}
.spinning-animation { animation: spinCircle 15s linear infinite; }
@keyframes spinCircle {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.expertise-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3.8vw, 50px);
  color: #546B41; margin-bottom: 20px;
}
.expertise-desc {
  font-size: 15px; line-height: 1.7;
  color: #ffffff; margin-bottom: 32px;
}
.progress-meters-group {
  display: flex; flex-direction: column;
  gap: 24px; margin-bottom: 40px;
}
.progress-meter-item { display: flex; align-items: center; gap: 18px; }
.meter-circle-wrap { width: 70px; height: 70px; flex-shrink: 0; }
.circular-chart { display: block; max-width: 100%; max-height: 100%; }
.circle-bg { fill: none; stroke: rgba(255,255,255,0.45); stroke-width: 2.8; }
.circle {
  fill: none; stroke: #546B41;
  stroke-width: 2.8; stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}
.percentage {
  fill: #546B41;
  font-family: "DM Sans", sans-serif;
  font-size: 8px; font-weight: 700;
  text-anchor: middle;
}
.meter-text h4 { font-size: 20px; font-weight: 600; color: #546B41; margin-bottom: 4px; }
.meter-text p  { color: #ffffff; margin: 0; }
.expertise-footer { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ── REFERENCE 5: FAQs ── */
#about-faqs { background-color: var(--primary-color);margin-bottom:60px;margin-left: 16px;margin-right: 16px; }
.faqs-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}
.faqs-img-card {
  background-color: #ede8dd;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.faqs-card-img { width: 100%; height: 240px; object-fit: cover; }
.faqs-card-body { padding: 26px; }
.faqs-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px; color: #546B41; margin-bottom: 10px;
}
.faqs-card-body p { font-size: 14px; line-height: 1.6; color: #4a3f29; margin-bottom: 20px; }
.faqs-card-btn {
  display: inline-block; background-color: #546B41;
  color: #fff; padding: 12px 22px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
  transition: all 0.3s ease;
}
.faqs-card-btn:hover { background-color: #99AD7A; }
.faqs-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(28px, 3.8vw, 50px);
  color: #546B41; margin-bottom: 28px;
}
.faqs-accordion { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background-color: #ede8dd;
  border-radius: 12px;
  border: 1px solid rgba(84,107,65,0.15);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.faq-header-click {
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; user-select: none;
}
.faq-question-text { font-size: 18px; font-weight: 500; color: #546B41; transition: color 0.3s ease; }
.faq-toggle-icon   { font-size: 18px; font-weight: 600; color: #546B41; transition: color 0.3s ease; }
.faq-body-content  { max-height: 0; overflow: hidden; padding: 0 22px; transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1); }
.faq-body-content p { font-size: 16px; line-height: 1.6; color: #4a3f29; padding-bottom: 18px; margin: 0; transition: color 0.3s ease; text-align:left;}
.faq-item.active {
  background-color: #546B41 !important;
  border-color: #546B41;
}
.faq-item.active .faq-question-text,
.faq-item.active .faq-toggle-icon { color: #fff !important; }
.faq-item.active .faq-body-content p { color: #ede8dd !important; }
.faq-item.active .faq-body-content { max-height: 200px; }

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ══════════════════════════════════════ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .about-us-page section { padding: 70px 32px; }
  #about-hero { padding-top: 100px; }
  #medical-expertise { padding: 70px 40px; margin: 40px 32px; border-radius: 28px; }

  .about-hero-grid,
  .comp-services-grid,
  .expertise-grid,
  .faqs-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .approach-cards-grid-3 { grid-template-columns: repeat(2, 1fr); }

  /* Hexagons: constrain & re-center */
  .comp-right { display: flex; justify-content: center; }
  .hex-grid-container { height: 420px; width: 460px; max-width: 100%; }
  .hex-item { width: 180px; height: 205px; }
  .hex-1 { top: 0;   left: 10px; }
  .hex-2 { top: 50px; left: 210px; }
  .hex-3 { top: 185px; left: 110px; }

  /* Expertise images */
  .expertise-left { display: flex; justify-content: center; }
  .expertise-img-wrap { height: 400px; max-width: 460px; }
  .circular-spin-badge { bottom: 120px; right: 100px; }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  .about-us-page section { padding: 56px 20px; }
  #about-hero { padding-top: 90px; }
  #medical-expertise { padding: 48px 20px; margin: 24px 16px; border-radius: 20px; }

  .approach-cards-grid-3 { grid-template-columns: 1fr; gap: 16px; }

  .about-bullets-grid,
  .comp-bullets-grid { grid-template-columns: 1fr; gap: 12px; }

  .about-hero-footer,
  .comp-footer,
  .expertise-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .about-cta-btn,
  .comp-cta-btn,
  .faqs-card-btn { width: 100%; text-align: center; }

  /* Rating badge: full width inside image */
  .rating-overlay-badge {
    left: 12px; right: 12px; bottom: 12px;
    padding: 10px 14px; gap: 10px; border-radius: 12px;
  }
  .rating-badge-text h4 { font-size: 17px; }

  /* Hexagons: single column stack */
  .comp-right { display: block; }
  .hex-grid-container { height: 380px; width: 100%; max-width: 360px; margin: 0 auto; }
  .hex-item { width: 155px; height: 177px; }
  .hex-1 { top: 0;   left: 0; }
  .hex-2 { top: 40px; left: 170px; }
  .hex-3 { top: 165px; left: 90px; }
  .hex-overlay-badge h4 { font-size: 34px; }
  .hex-overlay-badge p  { font-size: 10px; }

  /* Expertise */
  .expertise-img-wrap { height: 320px; max-width: 100%; }
  .expertise-main-img { width: 72%; height: 88%; }
  .expertise-inset-img { width: 46%; height: 50%; border-width: 5px; }
  .circular-spin-badge { bottom: 80px; right: 60px; }
  .circular-spin-badge svg { width: 100px; height: 100px; }

  /* FAQs: stack */
  .faqs-grid { grid-template-columns: 1fr; gap: 36px; }
  .faqs-card-img { height: 200px; }
}

/* Small phones: ≤ 480px */
@media (max-width: 480px) {
  .about-us-page section { padding: 48px 16px; }
  #about-hero { padding-top: 0px; }
  #medical-expertise { padding: 36px 16px; margin: 16px 10px; border-radius: 16px; }

  .about-main-title { font-size: clamp(24px, 7vw, 34px); }
  .comp-title,
  .expertise-title,
  .faqs-title { font-size: clamp(22px, 7vw, 32px); }

  .hex-grid-container { height: 330px; max-width: 300px; }
  .hex-item { width: 130px; height: 148px; }
  .hex-1 { top: 0;   left: 0; }
  .hex-2 { top: 35px; left: 140px; }
  .hex-3 { top: 140px; left: 76px; }

  .expertise-img-wrap { height: 260px; }
  .circular-spin-badge { bottom: 55px; right: 30px; }
  .circular-spin-badge svg { width: 80px; height: 80px; }

  .meter-text h4 { font-size: 14px; }
  .approach-custom-card { padding: 24px 18px; }
  .about-doctor-bio { gap: 10px; }
  .bio-avatar { width: 44px; height: 44px; }
}
















































/* ==========================================
   Contact Us Page
   ========================================== */
body.contact-us-page {
  background-color: var(--primary-color) !important;
  color: #1c1c1a;
  padding-top: 5px;
}

.contact-badge {
  display: inline-block;
  background-color: var(--third-color);
  color: var(--secondary-color);
  padding: 6px 14px;
  border-radius: 50px;
 
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

#contact-hero {
  padding: 80px 20px 80px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  color: #546B41;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #4a3f29;
  max-width: 600px;
  margin: 0 auto;
}

/* ── 2-Column Layout ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: stretch;
}

/* LEFT CARD: Phone + Email */
.contact-left-card {
  background-color: #7a9660;
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.contact-left-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.contact-left-card p {
 
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
}

.contact-left-card .contact-link {

  font-weight: 600;
  color: #f0f7e6;
  text-decoration: none;
  word-break: break-all;
}

.contact-left-card .contact-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
}

.contact-card-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 28px 0;
}

/* RIGHT CARD: Two clinic addresses */
.contact-right-card {
  background-color: #7a9660;
  border-radius: 20px;
  padding: 36px 32px;
  display: grid;
  gap: 32px;
}

.contact-right-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.clinic-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.clinic-info-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.clinic-info-row svg {
  stroke: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  margin-top: 2px;
}

.clinic-timing {
 
  font-weight: 600;
  color: #f0f7e6;
  line-height: 1.5;
}

.clinic-addr {
 
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #cccccc;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {

  font-weight: 600;
  color: #546B41;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(84, 107, 65, 0.2);
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #1c1c1a;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #546B41;
  box-shadow: 0 0 0 4px rgba(84, 107, 65, 0.1);
}

.submit-btn {
  background-color: #546B41;
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #99AD7A;
  transform: translateY(-2px);
}


/* Footer clinic labels */
.footer-clinic-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99ad7a;
  margin: 14px 0 4px;
  display: block;
}

footer address {
 
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
  line-height: 1.7;
}

/* Fix medical expertise background */
#medical-expertise {
  background-color: #99AD7A !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-right-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* Contact Form */
.contact-form-wrapper {
  background-color: #cccccc;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {

  font-weight: 600;
  color: #546B41;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(84, 107, 65, 0.2);
  background-color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #1c1c1a;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #546B41;
  box-shadow: 0 0 0 4px rgba(84, 107, 65, 0.1);
}

.submit-btn {
  background-color: #546B41;
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background-color: #99AD7A;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

/* Fix medical expertise background */
#medical-expertise {
  background-color: #99AD7A !important;
}

/* ==========================================
   Page Banner (About Us, Contact Us)
   ========================================== */
#page-banner {
  padding: 80px 0 0;
}

@media (max-width: 768px) {
  #page-banner {
    padding: 80px 0;
    padding-bottom: 0px;
    margin-bottom: 80px;
  }
}


#page-banner-faq {
  padding: 80px 0 0;
}

#page-banner-sd {
  padding: 80px 0;
  margin-bottom: 20px;
}

.page-banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.page-banner-inner {
  display: flex;
  height: 450px;
  border-radius: 0px 0px 50px 50px; /* Rounded only at the bottom */
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.banner-left {
  flex: 1;
  background-color: #546B41; /* Secondary color: green */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 10%; /* More padding on left/right for alignment */
}

.banner-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.banner-breadcrumbs {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  margin: 0;
}

.banner-right {
  flex: 100%;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center 20%;
}

@media (max-width: 768px) {
  .page-banner-inner {
    flex-direction: column;
    height: auto;
    border-radius: 0 0 24px 24px;
  }
  .banner-left {
    padding: 100px 30px 60px 30px; /* More top padding for mobile navbar overlap */
  }
  .banner-right {
    height: 300px;
  }
}





/* ===== Page Service Section ===== */
.page-service {
  padding: 80px 0 80px 0;}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-item {
  background: #99AD7A;
  border: 1px solid #e8eef5;
  border-radius: 30px;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: #c5d8f0;
  transform: translateY(-4px);
}

.service-item:nth-child(1) {
  animation-delay: 0s;
}

.service-item:nth-child(2) {
  animation-delay: 0.2s;
}

.service-item:nth-child(3) {
  animation-delay: 0.4s;
}

.service-item:nth-child(4) {
  animation-delay: 0.6s;
}

.service-item:nth-child(5) {
  animation-delay: 0.8s;
}

.service-item:nth-child(6) {
  animation-delay: 1.0s;
}

.service-item:nth-child(7) {
  animation-delay: 1.2s;
}

.service-item:nth-child(8) {
  animation-delay: 1.4s;
}

.service-item img{
    filter: brightness(0) saturate(100%) invert(40%) sepia(14%) saturate(1005%) hue-rotate(52deg) brightness(93%) contrast(87%);
}
.service-item:hover img{
    filter: none;
}
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: #edf7ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.icon-box svg {
  width: 32px;
  height: 32px;
  transition: stroke 0.3s ease;
}



.service-item:hover .icon-box svg {
  stroke: #ffffff;
}

.service-item-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.service-item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.service-item-content h2 {
  font-size: 26px;
  color: #fff;
  line-height: 1.4;
  font-family: "Cormorant Garamond", sans-serif;
}

.service-item-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.service-item-content p {

  color: #fff;
  line-height: 1.7;
}

.service-item-btn {
  margin-top: auto;
}

.readmore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s;
}

.readmore-btn::after {
  content: '→';
  transition: transform 0.2s;
}



.readmore-btn:hover::after {
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-service {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .row {
    grid-template-columns: 1fr;
  }

  .page-service {
    padding: 0px 0;
  }
}


/* facts section */


.facts-wrapper {
  padding: 24px;
}

.facts-section {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  padding: 100px 50px 80px;
  background: #546B41;
}

.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255, 255, 255, .08);
  color: #fff;

  font-weight: 600;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.section-title h2 {
  max-width: 750px;
  margin: 22px auto 0;
  color: #fff;
  font-size: 58px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "Cormorant Garamond", sans-serif;
}

.facts-grid {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fact-card {
  background: #f5f0e8;
  border-radius: 30px;
  padding: 34px;
  min-height: 360px;
  position: relative;
  transition: .45s ease;
}

.fact-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
}

.fact-card:hover::after {
  opacity: 1;
}

.fact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.fact-top h3 {
  color: #000;
  font-size: 62px;
  line-height: 1;
  margin-bottom: 12px;
  transition: .4s;
}

.fact-label {
  color: #000;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: .4s;
}

.fact-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #546B41;
  transition: .4s ease;
}

.fact-icon svg {
  width: 42px;
  height: 42px;
  transition: .4s ease;
}

.fact-bottom {
  margin-top: 95px;
  padding-top: 35px;
  border-top: 1px solid rgba(0, 0, 0, .12);
  transition: .4s;
}

.fact-bottom p {
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  transition: .4s;
}

/* Hover */

.fact-card:hover h3,
.fact-card:hover .fact-label,
.fact-card:hover p {
  color: #0d3f47;
}

.fact-card:hover .fact-bottom {
  border-color: #d9d9d9;
}

.fact-card:hover .fact-icon img {
  filter: none;
}

.facts-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 55px;
}

.facts-footer p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  flex-wrap: wrap;
  color: #fff;
}

.stars {
  color: #f8f405;
  letter-spacing: 6px;
}

@media(max-width:991px) {

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 42px;
  }
}

@media(max-width:767px) {

  .facts-section {
    padding: 70px 20px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .fact-card {
    min-height: auto;
  }

  .fact-bottom {
    margin-top: 60px;
  }
}


/* blog section */

.blog-section {
  padding: 80px 0 80px 0;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 3-column grid, 2 rows = 6 cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual blog card */
.blog-card {
  background: #f5f0e8;
  border: 1px solid #e8eef5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  animation: blogFadeUp 0.55s ease forwards;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

/* Staggered animation delays */
.blog-card:nth-child(1) {
  animation-delay: 0.05s;
}

.blog-card:nth-child(2) {
  animation-delay: 0.15s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.25s;
}

.blog-card:nth-child(4) {
  animation-delay: 0.35s;
}

.blog-card:nth-child(5) {
  animation-delay: 0.45s;
}

.blog-card:nth-child(6) {
  animation-delay: 0.55s;
}

@keyframes blogFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image area with category badge overlay */
.blog-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.06);
}

/* Category badge — teal pill on image (top-left) */
.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #546B41;
  /* teal from screenshot */
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Card body */
.blog-card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Title */
.blog-card-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1c1c1a;
  line-height: 1.4;
  margin: 0 0 18px;
}

/* Thin divider — matches screenshot */
.blog-card-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 0 0 16px;
}

/* Read More link */
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "DM Sans", sans-serif;

  font-weight: 500;
  color: #1c1c1a;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  margin-top: auto;
}

.blog-read-more svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(45deg);
  transition: transform 0.25s ease, color 0.2s ease;
}

.blog-read-more:hover {
  color: #546B41;
  gap: 10px;
}

.blog-read-more:hover svg {
  transform: rotate(45deg) scale(1.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-section {
    padding: 0px 0 70px;
    padding-bottom: 0px;
  }

  .blog-card-img-wrap {
    height: 200px;
  }

  .blog-card-title {
    font-size: 16px;
  }
}



/* =====================================================
           BLOG SINGLE PAGE — full content section
           ===================================================== */

/* ── wrapper ── */
.blog-detail-wrap {
  padding: 80px 0 80px 0;
}

.bd-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── featured image ── */
.bd-featured-img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.bd-featured-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.bd-featured-img:hover img {
  transform: scale(1.03);
}

/* ── body text ── */
.bd-body-text {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: #4a3f29;
  margin-bottom: 22px;
}

/* ── blockquote ── */
.bd-blockquote {
  position: relative;
  background: #f5f0e8;
  border-left: 4px solid #546B41;
  border-radius: 0 12px 12px 0;
  padding: 28px 32px 28px 56px;
  margin: 36px 0;
}

.bd-blockquote::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: #546B41;
  opacity: 0.55;
}

.bd-blockquote p {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  color: #1c1c1a;
  margin: 0;
  font-style: normal;
}

/* ── section heading ── */
.bd-heading {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600;
  color: #1c1c1a;
  line-height: 1.2;
  margin: 40px 0 16px;
}

/* ── bullet list ── */
.bd-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bd-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: "DM Sans", sans-serif;

  font-weight: 400;
  color: #4a3f29;
  line-height: 1.6;
}

.bd-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: #546B41;
  margin-top: 7px;
}

/* ── divider ── */
.bd-divider {
  border: none;
  border-top: 1px solid #000;
  margin: 44px 0 32px;
}

/* ── tags + social row ── */
.bd-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* tags */
.bd-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bd-tags-label {
  font-family: "DM Sans", sans-serif;

  font-weight: 600;
  color: #1c1c1a;
}

.bd-tag {
  display: inline-block;
  background: #f5f0e8;
  color: #000;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
 
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.bd-tag:hover {
  background: #546B41;
  color: #fff;
}

/* social icons */
.bd-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #546B41;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.bd-social-icon:hover {
  background: #546B41;
  transform: translateY(-3px);
}

.bd-social-icon svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .blog-detail-wrap {
    padding: 80px 0 70px;
  }

  .bd-featured-img img {
    height: 280px;
  }

  .bd-blockquote {
    padding: 22px 22px 22px 44px;
  }

  .bd-blockquote::before {
    font-size: 48px;
    left: 12px;
  }

  .bd-meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .bd-featured-img img {
    height: 220px;
    border-radius: 14px;
  }

  .bd-body-text {
  
  }

  .bd-heading {
    font-size: clamp(22px, 7vw, 30px);
  }
}



/* =====================================================
           SERVICE DETAIL PAGE — exact screenshot match
           ===================================================== */

.sd-page {
  background: #fff;
  padding: 0 0 100px;
}

/* ── MAIN LAYOUT: sidebar + content ── */
.sd-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 24px 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* ═══════════════════════════
           LEFT SIDEBAR
        ═══════════════════════════ */
.sd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: sticky;
  top: 110px;
}

/* Services nav box */
.sd-nav-box {
  background: #f5f0e8;
  border-radius: 16px;
  overflow: hidden;
}

.sd-nav-header {
  background: #99ad7a;
  padding: 16px 22px;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
}

.sd-nav-list {
  list-style: none;
  padding: 10px 0;
  margin: 0;
}

.sd-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-family: "DM Sans", sans-serif;

  font-weight: 400;
  color: #4a3f29;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.sd-nav-list li:last-child a {
  border-bottom: none;
}

.sd-nav-list li a:hover,
.sd-nav-list li.active a {
  background: #edf4f4;
  color: #546b41;
  padding-left: 28px;
}

.sd-nav-list li a svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.sd-nav-list li a:hover svg,
.sd-nav-list li.active a svg {
  opacity: 1;
  transform: rotate(45deg);
}

/* Schedule box */
.sd-schedule-box {
  background: #f5f0e8;
  border-radius: 16px;
  padding: 26px 22px;
}

.sd-schedule-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1a;
  margin-bottom: 20px;
}

.sd-schedule-title .clock-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #99ad7a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sd-schedule-title .clock-icon svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.sd-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sd-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-family: "DM Sans", sans-serif;
  
}

.sd-hours-list li:last-child {
  border-bottom: none;
}

.sd-hours-list li .day {
  font-weight: 500;
  color: #1c1c1a;
}

.sd-hours-list li .time {
  color: #546B41;
  font-weight: 600;
}

.sd-appt-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #99ad7a;
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: "DM Sans", sans-serif;

  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.sd-appt-btn:hover {
  background: #546B41;
  transform: translateY(-2px);
  color: #fff;
}

/* ═══════════════════════════
           RIGHT CONTENT
        ═══════════════════════════ */
.sd-content {
  min-width: 0;
}

/* Featured image */
.sd-featured-img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sd-featured-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sd-featured-img:hover img {
  transform: scale(1.04);
}

/* Intro text */
.sd-body-text {
  font-family: "DM Sans", sans-serif;

  font-weight: 300;
  line-height: 1.85;
  color: #4a3f29;
  margin-bottom: 18px;
}

/* ── Section heading ── */
.sd-section-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #1c1c1a;
  line-height: 1.2;
  margin: 44px 0 14px;
}

.sd-section-desc {
  font-family: "DM Sans", sans-serif;

  line-height: 1.8;
  color: #4a3f29;
  margin-bottom: 28px;
}

/* ── Feature rows (icon + text) ── */
.sd-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 8px;
}

.sd-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.sd-feature-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sd-feature-body h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1a;
  margin: 0 0 6px;
}

.sd-feature-body p {
  font-family: "DM Sans", sans-serif;
  
  line-height: 1.7;
  color: #4a3f29;
  margin: 0;
}

/* ═══════════════════════════
           PROCESS STEPS — 3 col cards
        ═══════════════════════════ */
.sd-process-section {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 24px;
}

.sd-process-header {
  margin-bottom: 36px;
}

.sd-process-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #1c1c1a;
  margin-bottom: 12px;
}

.sd-process-desc {
  font-family: "DM Sans", sans-serif;

  line-height: 1.8;
  color: #4a3f29;
  max-width: 680px;
}

.sd-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.sd-step-card {
  background: #f5f0e8;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sd-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(42, 179, 177, 0.12);
}

.sd-step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #99ad7a;
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 14px rgba(42, 179, 177, 0.3);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sd-step-card:hover .sd-step-number {
  background: #546B41;
  box-shadow: 0 4px 14px rgba(84, 107, 65, 0.3);
}

.sd-step-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1a;
  margin-bottom: 10px;
}

.sd-step-desc {
  font-family: "DM Sans", sans-serif;
 
  line-height: 1.7;
  color: #6b5f4c;
  margin: 0;
}

/* rating strip */
.sd-rating-strip {
  text-align: center;
  padding: 14px 0 0;
}

.sd-rating-strip span {
  font-family: "DM Sans", sans-serif;
  
  color: #4a3f29;
}

.sd-rating-strip .stars {
  color: #cac71d;
  letter-spacing: 4px;
  margin: 0 8px;
}

/* ═══════════════════════════
           WHO CAN BENEFIT
        ═══════════════════════════ */
.sd-benefit-section {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 24px;
}

.sd-benefit-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: #1c1c1a;
  margin-bottom: 12px;
}

.sd-benefit-desc {
  font-family: "DM Sans", sans-serif;

  line-height: 1.8;
  color: #4a3f29;
  max-width: 680px;
  margin-bottom: 32px;
}

/* image with overlay tags */
.sd-benefit-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sd-benefit-img-wrap img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sd-benefit-img-wrap:hover img {
  transform: scale(1.04);
}

/* play button overlay */
.sd-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease;
}

.sd-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.12);
  background: #99ad7a;
}

.sd-play-btn svg {
  width: 22px;
  height: 22px;
  fill: #000;
  margin-left: 3px;
  transition: fill 0.3s ease;
}

.sd-play-btn:hover svg {
  fill: #fff;
}

/* bottom tag strip on image */
.sd-img-tags {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.62);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  gap: 0;
}

.sd-img-tag {
  flex: 1;
  text-align: center;
  padding: 14px 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.sd-img-tag:last-child {
  border-right: none;
}

/* ═══════════════════════════
           FAQ ACCORDION
        ═══════════════════════════ */
.sd-faq-section {
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 24px;
}

.sd-faq-title {
  font-family: "Cormorant Garamond", sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: #1c1c1a;
  margin-bottom: 32px;
}

.sd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sd-faq-item {
  border-radius: 12px;
  border: 1px solid #e0ddd6;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.sd-faq-item.open {
  border-color: #fff;
}

.sd-faq-trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: background 0.25s ease;
}

.sd-faq-item.open .sd-faq-trigger {
  background: #99ad7a;
}

.sd-faq-trigger-text {
  font-family: "DM Sans", sans-serif;

  font-weight: 500;
  color: #1c1c1a;
  transition: color 0.25s ease;
}

.sd-faq-item.open .sd-faq-trigger-text {
  color: #fff;
}

.sd-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: #546B41;
  line-height: 1;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s ease;
}

.sd-faq-item.open .sd-faq-icon {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  transform: rotate(45deg);
}

.sd-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-faq-item.open .sd-faq-body {
  max-height: 200px;
}

.sd-faq-body-inner {
  padding: 18px 22px 20px;
  font-family: "DM Sans", sans-serif;

  line-height: 1.75;
  color: #4a3f29;
  background: #f5f0e8;
}
.service-item:hover .icon-box{
    background-color: #99AD7A !important;
}
/* ═══════════════════════════
           RESPONSIVE
        ═══════════════════════════ */
@media (max-width: 1024px) {
  .sd-layout {
    grid-template-columns: 250px 1fr;
    gap: 28px;
    padding-top: 50px;
  }
}

@media (max-width: 768px) {
  .sd-layout {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .sd-sidebar {
    position: static;
  }

  .sd-featured-img img {
    height: 260px;
  }

  .sd-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sd-benefit-img-wrap img {
    height: 260px;
  }

  .sd-img-tags {
    flex-direction: column;
  }

  .sd-img-tag {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px;
  }

  .sd-img-tag:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {

  .sd-layout,
  .sd-process-section,
  .sd-benefit-section,
  .sd-faq-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sd-featured-img img {
    height: 220px;
    border-radius: 12px;
  }

  .sd-benefit-img-wrap img {
    height: 220px;
  }

  .sd-section-title,
  .sd-process-title,
  .sd-benefit-title,
  .sd-faq-title {
    font-size: clamp(22px, 6.5vw, 30px);
  }
}