﻿@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800;900&display=swap");

/* ================= SINGLE ROOT (all variables consolidated here) ================= */
:root {
  /* Layout */
  --section-x: clamp(16px, 5vw, 120px);
  --section-y: clamp(48px, 8vw, 88px);
  --content-max: 1200px;
  --navbar-height: 76px;
  --font-sans: "Nunito Sans", sans-serif;
  --fs-body: clamp(0.96rem, 0.22vw + 0.9rem, 1.05rem);
  --fs-small: clamp(0.84rem, 0.14vw + 0.8rem, 0.92rem);
  --fs-h1: clamp(2rem, 4vw, 3.35rem);
  --fs-h2: clamp(1.6rem, 2.6vw, 2.45rem);
  --fs-h3: clamp(1.2rem, 1.6vw, 1.45rem);
  --lh-body: 1.72;
  --lh-tight: 1.14;

  /* Core palette */
  --bg:         #F2F1EC;
  --bg-soft:    #F2F1EC;
  --bg-panel:   #F2F1EC;
  --bg-main:    #F2F1EC;
  --nav-bg:     #DFDBCE;

  /* Text */
  --text:       #1A1A1A;
  --text-main:  #2F3B2D;
  --text-dark:  #1A1A1A;
  --text-light: #666666;
  --muted:      #6B6B6B;

  /* Accent / Brand */
  --accent:     #FF9A4D;
  --accent-2:   #FF7A2F;
  --gold:       #B58E5A;
  --primary:    #FF9A4D;
  --primary-dark: #FF7A2F;

  /* Shared component system */
  --radius-card: 24px;
  --radius-inner: 16px;
  --card-pad: clamp(24px, 3vw, 40px);
  --card-bg: linear-gradient(180deg, #FFFDF8 0%, #F5EFE3 100%);
  --card-border: 1px solid rgba(181, 142, 90, 0.24);
  --shadow-soft: 0 14px 30px rgba(78, 67, 49, 0.1);
  --shadow-card: 0 18px 32px rgba(78, 67, 49, 0.12);
  --button-height: 50px;
  --button-radius: 999px;
  --button-pad: 0 26px;
  --button-font: 15px;

  /* Misc */
  --white:      #FFFFFF;
  --forest:     #1A1A1A;
  --forest-dark: #111111;
  --sage:       #F2F1EC;
  --sage-deep:  #F2F1EC;
  --paper:      #F2F1EC;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ================= BASE ================= */
/* Body loaded state - prevents flash of unstyled content */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  background: var(--bg);
  color: var(--text-main);
  line-height: var(--lh-body);
  letter-spacing: 0.002em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  line-height: var(--lh-tight);
  letter-spacing: -0.012em;
}

p {
  line-height: var(--lh-body);
}

.hero-subtext,
.about-text p,
.pcod-content p,
.doctor-desc,
.services-subtitle,
.treatments-sub,
.showcase-subtitle,
.showcase-card p,
.showcase-personalized p,
.clinic-tagline,
.clinic-info,
.faq .faq-answer {
  font-size: clamp(0.95rem, 0.2vw + 0.9rem, 1.03rem);
}

.hero-heading,
.about-title,
.doctor-name,
.services-title,
.treatments-title,
.showcase-title,
.connect-title,
.faq-title,
.faq .services-title {
  letter-spacing: -0.015em;
}

body.loaded {
  visibility: visible;
}

.has-navbar {
  padding-top: var(--navbar-height);
}

/* ================= NAVBAR ================= */
.navbar,
.home-refined .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 2vw, 24px);
  padding: 0 clamp(16px, 4vw, 100px);
  min-height: var(--navbar-height);
  background: var(--nav-bg);
  box-shadow: 0 6px 16px rgba(78, 67, 49, 0.1);
  border-bottom: 1px solid rgba(181, 142, 90, 0.18);
}

/* Subtle bottom line accent */
.navbar::after,
.home-refined .navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

/* ================= LOGO ================= */
.logo,
.home-refined .logo {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.1vw, 12px);
}

.logo a {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img,
.home-refined .logo img {
  height: 52px;
  width: auto;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name,
.home-refined .brand-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.2rem, 1.45vw, 1.62rem);
  font-weight: 700;
  line-height: 1.08;
  color: #2E3B2B;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tagline,
.home-refined .tagline {
  font-size: clamp(0.66rem, 0.72vw, 0.82rem);
  line-height: 1.25;
  color: #6D716D;
  letter-spacing: 0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================= NAV LINKS ================= */
nav ul,
.home-refined nav ul {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.8vw, 32px);
  list-style: none;
}

nav li,
.home-refined nav li {
  display: flex;
  align-items: center;
}

nav a,
.home-refined nav a {
  text-decoration: none;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  font-weight: 600;
  color: var(--text-main);
  padding: 10px 2px;
  border-radius: var(--button-radius);
  background: transparent;
  box-shadow: none;
  transition: color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Remove underline pseudo-element — using pill hover instead */
nav a::after,
.home-refined nav a::after {
  display: none;
}

.navbar > nav > ul > li > a:not(.contact-btn),
.home-refined .navbar > nav > ul > li > a:not(.contact-btn) {
  color: #2F3B2D;
  min-height: var(--button-height);
  padding: 0 8px;
}

.navbar > nav > ul > li > a:not(.contact-btn)::before,
.home-refined .navbar > nav > ul > li > a:not(.contact-btn)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(181, 142, 90, 0.78), rgba(181, 142, 90, 1));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0.7;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.navbar > nav > ul > li > a:not(.contact-btn):hover,
.navbar > nav > ul > li > a:not(.contact-btn):focus-visible,
.home-refined .navbar > nav > ul > li > a:not(.contact-btn):hover,
.home-refined .navbar > nav > ul > li > a:not(.contact-btn):focus-visible {
  color: #1F4A3A;
  background: transparent;
}

.navbar > nav > ul > li > a:not(.contact-btn):hover::before,
.navbar > nav > ul > li > a:not(.contact-btn):focus-visible::before,
.home-refined .navbar > nav > ul > li > a:not(.contact-btn):hover::before,
.home-refined .navbar > nav > ul > li > a:not(.contact-btn):focus-visible::before {
  transform: scaleX(1);
  opacity: 1;
}

/* Contact button */
nav a.contact-btn,
.home-refined nav a.contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--button-height);
  font-size: var(--button-font);
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid transparent;
  box-shadow: 0 8px 18px rgba(123, 95, 60, 0.28);
  border-radius: var(--button-radius);
  font-weight: 700;
  padding: var(--button-pad);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

nav a.contact-btn:hover,
.home-refined nav a.contact-btn:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
  filter: none;
}

nav a.contact-btn:active,
.home-refined nav a.contact-btn:active {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
  filter: none;
}

/* Mobile hamburger */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
  order: 3;
}

/* Dropdown toggle link - same style as nav links but indicates expandability */
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-toggle::after {
  content: "›";
  font-size: 14px;
  transform: rotate(90deg);
  display: inline-block;
  transition: transform 0.2s ease;
  margin-left: 2px;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.open .dropdown-toggle::after {
  transform: rotate(270deg);
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  padding: 10px var(--section-x);
  font-size: var(--fs-small);
  background: var(--bg);
  border-top: none;
  border-bottom: none;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
  margin-right: 5px;
}

.breadcrumb span {
  color: #2F3B2D;
}

/* ================= HERO ================= */
.hero,
.home-refined .hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  padding: clamp(52px, 9vw, 96px) var(--section-x);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.home-refined .hero {
  min-height: 620px;
}

.home-refined .hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -88px;
  height: 148px;
  background: var(--bg);
  border-top-left-radius: 52% 100%;
  border-top-right-radius: 48% 100%;
  z-index: 1;
  pointer-events: none;
}

.home-refined .hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -102px;
  height: 170px;
  background: var(--bg);
  border-top-left-radius: 52% 100%;
  border-top-right-radius: 48% 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-left,
.home-refined .hero-left {
  max-width: 62ch;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease both;
}

.hero-heading,
.home-refined .hero-heading {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.75rem, 3.8vw, 52px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
  color: #2F3B2D;
  letter-spacing: -0.015em;
  animation: fadeUp 0.8s ease both;
}

.hero-heading::after,
.home-refined .hero-heading::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 12px;
  background: var(--gold);
}

.hero-subtext,
.home-refined .hero-subtext {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  max-width: 50ch;
  margin-bottom: 26px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.hero-right,
.home-refined .hero-right {
  flex: 0 1 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-right img,
.home-refined .hero-right img {
  width: min(100%, 520px);
  height: auto;
  filter: none;
  animation: float 5s ease-in-out infinite;
}

/* ================= CTA BUTTON ================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: var(--button-height);
  padding: var(--button-pad);
  border: 1px solid transparent;
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--button-radius);
  font-size: var(--button-font);
  font-weight: 700;
  font-family: inherit;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 18px rgba(123, 95, 60, 0.28);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -120%;
  width: 250%;
  height: 250%;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(25deg);
  transition: left 0.45s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
  filter: none;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:active {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
  filter: none;
}

.cta-btn:active::before {
  left: 100%;
}

.cta-btn:focus-visible {
  outline: 2px solid rgba(181, 142, 90, 0.7);
  outline-offset: 2px;
}

/* ================= ABOUT ================= */
.about {
  padding: clamp(48px, 8vw, 80px) var(--section-x);
  background: var(--bg);
  border-top: none;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 4.4vw, 64px);
  max-width: var(--content-max);
  margin-inline: auto;
}

.about-image {
  flex: 1 1 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-image::before {
  display: none;
}

.about-image img {
  width: min(100%, 430px);
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.about-text,
.pcod-content {
  flex: 1 1 50%;
  max-width: 620px;
}

.about-title,
.home-refined .about-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.65rem, 2.4vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #1B3427;
  letter-spacing: -0.012em;
  line-height: 1.12;
}

.about-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold);
}

.about-text p,
.pcod-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-tagline {
  color: var(--gold);
  font-weight: 500;
}

/* ================= DOCTOR ================= */
.doctor {
  padding: clamp(56px, 7vw, 92px) var(--section-x);
  background: var(--bg);
  border-top: none;
  display: flex;
  justify-content: center;
  position: relative;
}

.doctor-container {
  max-width: 1060px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(72px, 11vw, 170px);
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.doctor-content {
  flex: 0 1 520px;
  text-align: left;
}

.doctor-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(2rem, 2.8vw, 2.35rem);
  font-weight: 800;
  color: #1E3A33;
  letter-spacing: -0.012em;
  line-height: 1.12;
  margin-bottom: 8px;
}

.doctor-degree {
  display: block;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  color: #C18744;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 14px;
}

.doctor-desc {
  color: #293A42;
  max-width: 520px;
  margin-bottom: 12px;
  line-height: 1.55;
}

.section-subtitle {
  margin-top: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  color: #17352E;
}

.doctor-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 6px;
  padding-left: 0;
}

.doctor .doctor-list li::before {
  content: none;
}

.doctor .doctor-list li {
  color: #102B24;
  line-height: 1.5;
}

.doctor-quote {
  max-width: 520px;
  margin-top: 16px;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 3px solid #C8914C;
  border-radius: 0;
  background: transparent;
  color: #17352E;
  font-style: italic;
  line-height: 1.55;
}

.doctor-image {
  flex: 0 0 320px;
  min-height: 215px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 22px 36px rgba(78, 67, 49, 0.08);
}

.doctor-image::before {
  content: none;
}

.doctor-image img {
  width: min(62%, 205px);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  mix-blend-mode: normal;
  filter: none;
}

/* ================= SERVICES (HOME GRID) ================= */
.services-premium {
  padding: clamp(48px, 8vw, 80px) var(--section-x);
  text-align: center;
  background: var(--bg);
  border-top: none;
  position: relative;
  overflow: hidden;
}

/* Watermark logo behind services */
.services-premium::before,
.home-refined .services-premium::before {
  content: "";
  position: absolute;
  width: min(48vw, 560px);
  height: min(48vw, 560px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("logo.svg") center / contain no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.services-title,
.home-refined .services-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #17352E;
  letter-spacing: -0.01em;
  line-height: 1.12;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.services-title::after,
.home-refined .services-title::after {
  content: "";
  display: block;
  width: 150px;
  height: 18px;
  margin: 12px auto 0;
  background:
    linear-gradient(var(--gold), var(--gold)) left 50% / 58px 1px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right 50% / 58px 1px no-repeat;
  opacity: 0.85;
}

.services-title::before,
.home-refined .services-title::before {
  content: "♧";
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

.services-subtitle,
.home-refined .services-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-size: 1rem;
}

.services-grid,
.home-refined .services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 18px);
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
}

.service-box,
.home-refined .service-box {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.82);
  border: var(--card-border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
  text-align: center;
}

.service-box:hover,
.home-refined .service-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.service-icon-wrap,
.feature-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 142, 90, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #D28700;
  margin-bottom: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.service-icon-wrap i {
  font-size: 42px;
  line-height: 1;
}

.service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.service-content h4 {
  color: #17352E;
  font-size: clamp(1.22rem, 1.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 12px;
}

.service-content p {
  color: #656B66;
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.service-link {
  width: 100%;
  min-height: 40px;
  margin-top: auto;
  padding: 0 18px;
  border: 1px solid rgba(255, 122, 47, 0.58);
  border-radius: var(--button-radius);
  color: #9E5F1B;
  background: rgba(255, 253, 248, 0.76);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.24s ease, background 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.service-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  transform: translateY(-1px);
}

.service-link span {
  font-size: 1.1rem;
}

.services-feature-strip {
  max-width: var(--content-max);
  margin: 28px auto 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) repeat(4, minmax(120px, 1fr));
  gap: 24px;
  align-items: center;
  border-radius: 18px;
  border: var(--card-border);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 1;
}

.services-feature-intro {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  padding-right: 26px;
  border-right: 1px solid rgba(181, 142, 90, 0.22);
  text-align: left;
}

.services-feature-intro .service-icon-wrap {
  margin-bottom: 0;
}

.services-feature-intro h3 {
  color: #17352E;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 10px;
}

.services-feature-intro p {
  color: #656B66;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-feature {
  text-align: center;
}

.feature-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 12px;
}

.feature-icon i {
  font-size: 30px;
}

.service-feature strong {
  display: block;
  color: #17352E;
  font-size: 1rem;
  margin-bottom: 6px;
}

.service-feature span {
  display: block;
  color: #656B66;
  font-size: 0.86rem;
  line-height: 1.45;
}

.view-btn {
  margin-top: 35px;
  min-height: var(--button-height);
  padding: var(--button-pad);
  border-radius: var(--button-radius);
  border: 1px solid transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 700;
  font-size: var(--button-font);
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(123, 95, 60, 0.24);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.view-btn:hover {
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.68);
  box-shadow: 0 10px 18px rgba(123, 95, 60, 0.12);
  transform: translateY(-1px);
}

.view-btn:active {
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.68);
  box-shadow: 0 10px 18px rgba(123, 95, 60, 0.12);
  transform: translateY(-1px);
}

/* ================= TREATMENTS PAGE ================= */
.treatments-section {
  padding: clamp(28px, 6vw, 90px) var(--section-x);
  text-align: center;
  background: var(--bg);
}

.treatments-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(2.4rem, 6vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
  color: #2F3B2D;
}

.treatments-sub {
  color: var(--muted);
  max-width: 30ch;
  margin: 10px auto 24px;
  font-size: 16px;
}

.services {
  position: relative;
  z-index: 1;
  padding: 20px 0 0;
}

.services::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: url("logo.svg") no-repeat center;
  background-size: contain;
  opacity: 0.08;
  z-index: -1;
}

.services-boxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(14px, 2.5vw, 28px);
  max-width: var(--content-max);
  margin-inline: auto;
  padding: 0 0 20px;
}

.service-card,
.home-refined .service-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 18px;
  background: #FFFDF7;
  border: 1px solid rgba(181, 142, 90, 0.18);
  box-shadow: 0 10px 18px rgba(78, 67, 49, 0.12);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(123, 95, 60, 0.22);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  margin-bottom: 8px;
  color: var(--muted);
  padding: 7px 0;
  border-bottom: 1px solid rgba(47, 62, 47, 0.1);
  font-size: 15px;
  line-height: 1.4;
}

.service-card li:last-child {
  border-bottom: none;
}

.service-card a {
  color: #444;
  text-decoration: none;
  display: block;
  width: 100%;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.service-card a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* ================= PREMIUM TREATMENTS SHOWCASE ================= */
.treatments-showcase {
  position: relative;
  padding: clamp(54px, 8vw, 96px) var(--section-x);
  background: var(--bg);
  overflow: hidden;
}

.treatments-showcase-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.treatments-showcase-inner::before {
  content: "";
  position: absolute;
  top: 174px;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 760px);
  height: 680px;
  background: url("logo.svg") no-repeat center;
  background-size: contain;
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
}

.showcase-pill {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 6px 18px;
  border-radius: 999px;
  border: 1px solid rgba(181, 142, 90, 0.45);
  background: rgba(255, 253, 247, 0.92);
  color: #7D6842;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-title {
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: #213B35;
  margin-bottom: 10px;
}

.showcase-subtitle {
  max-width: 30ch;
  margin: 0 auto 30px;
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: #66706A;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.showcase-card {
  position: relative;
  padding: clamp(20px, 2.5vw, 24px);
  border-radius: var(--radius-inner);
  border: var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.showcase-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}

.showcase-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(181, 142, 90, 0.3);
  background: linear-gradient(135deg, rgba(255, 253, 247, 1), rgba(242, 235, 219, 0.8));
  color: #7E6742;
  font-size: 1.3rem;
  font-weight: 700;
}

.showcase-card h3,
.showcase-personalized h3 {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.15;
  margin-bottom: 2px;
  color: #1F3B35;
}

.showcase-card p,
.showcase-personalized p {
  color: #66706A;
  font-size: 1.03rem;
  line-height: 1.45;
}

.showcase-list {
  list-style: none;
}

.showcase-list li {
  border-bottom: 1px solid rgba(47, 62, 47, 0.12);
}

.showcase-list li:last-child {
  border-bottom: none;
}

.showcase-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: #34423D;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.showcase-list a:hover {
  color: #7D6842;
  padding-left: 5px;
}

.showcase-list a span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.showcase-list a span:first-child::before {
  content: "\2713";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(181, 142, 90, 0.5);
  color: #9D8357;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.showcase-list a span:last-child {
  color: #9D8357;
  font-size: 1.45rem;
  line-height: 1;
}

.showcase-personalized {
  margin-top: clamp(16px, 2vw, 24px);
  padding: clamp(20px, 2.3vw, 24px);
  border-radius: var(--radius-inner);
  border: var(--card-border);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: minmax(220px, 1.12fr) minmax(220px, 1.1fr) minmax(220px, 0.86fr);
  gap: clamp(12px, 2vw, 24px);
  align-items: center;
}

.showcase-personalized-intro {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.showcase-list-compact a {
  padding: 9px 0;
}

.showcase-cta {
  width: 100%;
  min-height: var(--button-height);
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 12px 18px;
  text-align: center;
  font: inherit;
  font-size: var(--button-font);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 18px rgba(123, 95, 60, 0.24);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.showcase-cta:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
}

.showcase-cta:active {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 20px rgba(123, 95, 60, 0.14);
}

.showcase-cta span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  line-height: 1.2;
}

.showcase-cta:hover span,
.showcase-cta:active span {
  color: #7B6D58;
}

.showcase-cta strong {
  color: #fff;
  font-size: 1.03rem;
}

.showcase-cta:hover strong,
.showcase-cta:active strong {
  color: #5D4E34;
}

.showcase-feature-strip {
  margin-top: clamp(14px, 2vw, 24px);
  border-radius: 14px;
  border: 1px solid rgba(181, 142, 90, 0.22);
  background: #FFFDF7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: 0 10px 18px rgba(78, 67, 49, 0.08);
}

.showcase-feature-item {
  padding: 14px 18px;
  border-right: 1px solid rgba(47, 62, 47, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.showcase-feature-item:last-child {
  border-right: none;
}

.showcase-feature-item strong {
  color: #2A3E37;
  font-size: 1rem;
}

.showcase-feature-item span {
  color: #6A716B;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .showcase-title {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-personalized {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-cta {
    grid-column: 1 / -1;
  }

  .showcase-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-feature-item:nth-child(2n) {
    border-right: none;
  }

  .showcase-feature-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(47, 62, 47, 0.1);
  }
}

@media (max-width: 768px) {
  .treatments-showcase {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .showcase-pill {
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    font-size: 11px;
  }

  .showcase-subtitle {
    margin-bottom: 20px;
    font-size: 0.98rem;
  }

  .showcase-card {
    padding: 16px;
  }

  .showcase-icon {
    width: 58px;
    height: 58px;
    font-size: 1.06rem;
  }

  .showcase-card h3,
  .showcase-personalized h3 {
    font-size: 1.35rem;
  }

  .showcase-card p,
  .showcase-personalized p {
    font-size: 0.93rem;
  }

  .showcase-list a {
    font-size: 0.95rem;
    padding: 8px 0;
  }

  .showcase-personalized {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .showcase-personalized-intro {
    align-items: center;
  }

  .showcase-cta {
    grid-column: auto;
    padding: 14px;
  }

  .showcase-cta strong {
    font-size: 1rem;
  }

  .showcase-feature-strip {
    grid-template-columns: 1fr;
  }

  .showcase-feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(47, 62, 47, 0.1);
    text-align: center;
  }

  .showcase-feature-item:last-child {
    border-bottom: none;
  }
}

/* ================= CONNECT ================= */
.connect {
  padding: clamp(40px, 7vw, 74px) 0 0;
  background: linear-gradient(180deg, #F6F3ED 0%, #F2F1EC 100%);
  text-align: center;
  position: relative;
  border-top: none;
}

.connect-kicker {
  margin-bottom: 8px;
  font-size: clamp(14px, 1.3vw, 16px);
  color: #6F6A5A;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.connect-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.95rem, 3.2vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  color: #223A33;
  line-height: 1.12;
}

.connect-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.connect-container,
.connect-box {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: var(--card-pad);
  border: var(--card-border);
  border-radius: var(--radius-card);
  background: var(--card-bg);
  box-shadow: var(--shadow-soft);
}

.connect-left {
  flex: 1 1 0;
  min-width: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}

.connect-logo {
  height: 48px;
  width: auto;
}

.clinic-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  margin-bottom: 10px;
  line-height: 1.15;
  color: #2D3D31;
  word-break: break-word;
}

.clinic-tagline {
  color: #6A6F67;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(13px, 1.1vw, 15px);
}

.clinic-info {
  line-height: 1.78;
  font-size: clamp(14px, 1.05vw, 15px);
  font-weight: 500;
  color: #2F4339;
}

.clinic-info a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.clinic-info a:hover {
  color: var(--accent);
}

.connect-right {
  flex: 0 0 52%;
  max-width: 52%;
  align-self: center;
  display: flex;
  border-radius: var(--radius-inner);
  overflow: hidden;
  border: 1px solid rgba(181, 142, 90, 0.34);
  box-shadow: var(--shadow-soft);
}

.connect-right iframe,
.connect-right img {
  width: 100%;
  border: none;
  border-radius: 0;
  min-height: 300px;
  height: 300px;
  box-shadow: none;
}

/* ================= FAQ ================= */
.faq {
  padding: clamp(56px, 7vw, 84px) var(--section-x);
  background: var(--bg);
  border-top: none;
}

.faq-title,
.faq .services-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
  margin-bottom: 28px;
  font-weight: 800;
  color: #2F3B2D;
  text-align: left;
  line-height: 1.12;
}

.faq .faq-container {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(18px, 2.5vw, 40px);
  row-gap: 6px;
}

.faq .faq-item {
  background: transparent;
  border-radius: 0;
  margin: 0;
  overflow: visible;
  box-shadow: none;
  border-bottom: 1px solid rgba(47, 62, 47, 0.12);
  transition: border-color 0.2s ease;
  padding: 14px 0;
}

.faq .faq-item:hover {
  border-bottom-color: rgba(47, 62, 47, 0.26);
}

.faq .faq-question {
  padding: 0;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.375rem);
  line-height: 1.35;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #1F322B;
}

.faq .faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
  font-size: 0;
  line-height: 0;
}

.faq .faq-icon::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-right: 2px solid #8A8E8C;
  border-bottom: 2px solid #8A8E8C;
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  margin-top: 0;
  color: #516057;
  font-size: 14px;
  line-height: 1.7;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq .faq-item.active .faq-answer {
  max-height: 240px;
  margin-top: 12px;
}

.faq .faq-item.active .faq-icon::before {
  transform: rotate(225deg);
  border-color: #6A6F6D;
}

/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
  isolation: isolate;
}

/* Keep hover state alive while moving cursor from trigger to dropdown panel */
.dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 14px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: auto;
  width: min(372px, calc(100vw - 24px));
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(181, 142, 90, 0.26);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 8px;
  box-shadow: 0 22px 44px rgba(45, 37, 24, 0.14);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transform-origin: top left;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 999;
  overflow: visible;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 24px;
  width: 12px;
  height: 12px;
  background: rgba(255, 253, 248, 0.96);
  border-left: 1px solid rgba(181, 142, 90, 0.28);
  border-top: 1px solid rgba(181, 142, 90, 0.28);
  transform: rotate(45deg);
  pointer-events: none;
}

.dropdown.align-right .dropdown-menu {
  left: auto;
  right: 0;
  transform-origin: top right;
}

.dropdown.align-right .dropdown-menu::before {
  left: auto;
  right: 24px;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1F2F1F;
}

.dropdown-section a,
.dropdown-menu a,
.submenu-content a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 11px;
  font-size: 13.5px;
  color: #2E3D33;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.4;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.dropdown-section a:hover,
.dropdown-menu a:hover,
.submenu-content a:hover {
  color: #1F4A3A;
  background: rgba(181, 142, 90, 0.12);
}

.dropdown-menu a::after,
.submenu-content a::after {
  display: none;
}

/* ================= SUBMENU ================= */
.submenu {
  position: relative;
  border: 1px solid rgba(181, 142, 90, 0.2);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.72);
  transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.submenu:hover,
.submenu.open {
  border-color: rgba(181, 142, 90, 0.34);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 18px rgba(78, 67, 49, 0.08);
}

.submenu::after {
  content: "";
  position: absolute;
  top: 0;
  right: -8px;
  width: 8px;
  height: 100%;
}

.submenu-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 11px 13px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-main);
  border-radius: 12px;
  cursor: pointer;
  transition: color 0.24s ease, background 0.24s ease;
}

.submenu-title:hover,
.submenu:hover .submenu-title,
.submenu.open .submenu-title {
  color: #1F4A3A;
  background: rgba(181, 142, 90, 0.1);
}

.submenu-title span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #8A6F48;
  background: rgba(181, 142, 90, 0.08);
  transition: transform 0.25s ease;
}

.submenu:hover .submenu-title span {
  transform: rotate(90deg);
}

.submenu-content {
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  right: auto;
  width: min(292px, calc(100vw - 24px));
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(181, 142, 90, 0.26);
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 20px 38px rgba(45, 37, 24, 0.13);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(8px);
  transform-origin: left top;
  transition: opacity 0.24s ease, transform 0.24s ease;
  z-index: 999;
}

.submenu-content::before {
  content: "";
  position: absolute;
  top: 16px;
  left: -6px;
  width: 9px;
  height: 9px;
  background: rgba(255, 253, 248, 0.98);
  border-left: 1px solid rgba(181, 142, 90, 0.28);
  border-top: 1px solid rgba(181, 142, 90, 0.28);
  transform: rotate(-45deg);
  pointer-events: none;
}

.submenu-content a + a {
  margin-top: 3px;
}

.submenu-content a:hover {
  transform: translateX(2px);
}

.submenu.left .submenu-content {
  left: auto;
  right: calc(100% + 8px);
  transform: translateX(-8px);
  transform-origin: right top;
}

.submenu.left .submenu-content::before {
  left: auto;
  right: -6px;
  transform: rotate(135deg);
}

.submenu.left::after {
  right: auto;
  left: -8px;
}

.submenu:hover .submenu-content,
.submenu.open .submenu-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

/* ================= MODALS / POPUPS ================= */
.service-modal,
.booking-modal,
#bookingModal,
.service-popup,
#servicePopup,
.success-popup,
#successMessage {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 99999;
}

.service-popup,
#servicePopup {
  background: rgba(47, 62, 47, 0.22);
  backdrop-filter: blur(4px);
}

.service-modal.active,
.booking-modal.active,
#bookingModal.active,
.service-popup.active,
#servicePopup.active,
.success-popup.active,
#successMessage.active {
  opacity: 1;
  visibility: visible;
}

.modal-content,
.booking-content,
.popup-box,
.success-box {
  width: min(600px, 90%);
  background: #F0ECE3;
  border-radius: 18px;
  padding: 28px;
  position: relative;
  border: 1px solid rgba(47, 62, 47, 0.12);
}

.modal-content {
  background-image: url("logo.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 180px;
  animation: popup 0.35s ease;
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.modal-content * {
  position: relative;
  z-index: 1;
}

.popup-box {
  width: min(500px, 90%);
  text-align: center;
  background: linear-gradient(180deg, #F4EFE5 0%, #EEE7DA 100%);
  border: 1px solid rgba(47, 62, 47, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  padding: 22px 24px 20px;
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.popup-box h3,
#popupTitle {
  color: #24362D;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 10px;
}

.popup-box p,
#popupText {
  color: #3D4B42;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.service-popup.active .popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.popup-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.popup-content p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 18px;
}

.modal-grid,
.booking-content form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.booking-content input,
.booking-content select,
.booking-content textarea {
  width: 100%;
  border: 1px solid #C8C2B4;
  border-radius: 8px;
  padding: 10px;
  font: inherit;
  background: #F8F6F2;
  color: #2F3E2F;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-content input:focus,
.booking-content select:focus,
.booking-content textarea:focus {
  border-color: #B58E5A;
  box-shadow: 0 0 0 3px rgba(181, 142, 90, 0.15);
}

.close-btn,
.close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: rgba(47, 62, 47, 0.08);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #34443A;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.close-popup:hover {
  background: rgba(47, 62, 47, 0.15);
}

.success-box {
  width: min(420px, 90%);
  text-align: center;
}

.success-box button {
  margin-top: 14px;
  min-height: var(--button-height);
  padding: var(--button-pad);
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 700;
  font-size: var(--button-font);
  font-family: inherit;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 16px rgba(123, 95, 60, 0.24);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.success-box button:hover {
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 18px rgba(123, 95, 60, 0.14);
  transform: translateY(-1px);
}

.success-box button:active {
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.7);
  box-shadow: 0 10px 18px rgba(123, 95, 60, 0.14);
  transform: translateY(-1px);
}

/* ================= WHATSAPP FLOAT ================= */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 12000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 1px solid rgba(181, 142, 90, 0.35);
  box-shadow: 0 8px 18px rgba(123, 95, 60, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.75);
  box-shadow: 0 12px 22px rgba(123, 95, 60, 0.14);
}

.whatsapp-float:active {
  transform: translateY(-1px);
  background: transparent;
  color: #5D4E34;
  border-color: rgba(181, 142, 90, 0.75);
  box-shadow: 0 12px 22px rgba(123, 95, 60, 0.14);
}

/* ================= WHATSAPP SELECTOR MODAL ================= */
.wa-selector-modal {
  position: fixed;
  inset: 0;
  background: rgba(47, 62, 47, 0.18);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 13000;
  padding: 16px;
}

.wa-selector-modal.active {
  display: flex;
}

.wa-selector-box {
  width: min(420px, 95vw);
  background: #F0ECE3;
  border-radius: 18px;
  padding: 22px;
  position: relative;
  border: 1px solid rgba(47, 62, 47, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 12px;
}

.wa-selector-box h3 {
  font-size: 22px;
  color: #2F3E2F;
}

.wa-selector-box p {
  color: #5F6A61;
  font-size: 14px;
}

.wa-selector-box input,
.wa-selector-box select,
.wa-selector-box textarea {
  width: 100%;
  border: 1px solid #C8C2B4;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
  color: #2F3E2F;
  background: #F8F6F2;
  outline: none;
}

.wa-selector-box input:focus,
.wa-selector-box select:focus,
.wa-selector-box textarea:focus {
  border-color: #B58E5A;
  box-shadow: 0 0 0 3px rgba(181, 142, 90, 0.15);
}

.wa-selector-box textarea {
  min-height: 82px;
  resize: vertical;
}

.wa-selector-box .cta-btn {
  min-width: 0;
  width: 100%;
}

.wa-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #55635A;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.wa-close:hover {
  background: rgba(47, 62, 47, 0.08);
}

/* ================= PCOD ================= */
.premium-pcod {
  position: relative;
  padding: clamp(48px, 8vw, 90px) var(--section-x);
  background: var(--bg);
  border-top: none;
}

.premium-pcod::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: 20%;
  left: 10%;
  border-radius: 50%;
  background: rgba(157, 116, 63, 0.1);
  filter: blur(80px);
}

.premium-pcod .about-container {
  align-items: center;
  justify-content: space-between;
  gap: clamp(34px, 4.4vw, 64px);
}

.pcod-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pcod-image img {
  width: min(100%, 430px);
  border-radius: 0;
  box-shadow: none;
  filter: none;
}

.pcod-content .about-title {
  font-size: clamp(1.65rem, 2.4vw, 32px);
  white-space: normal;
}

.pcod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 8px;
}

/* ================= TRANSITIONS ================= */
.fade-out {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fade-in {
  opacity: 1;
  animation: fadeIn 0.4s ease;
}

/* ================= FOOTER ================= */
.site-footer {
  padding: clamp(42px, 6vw, 56px) var(--section-x);
  background: linear-gradient(180deg, #F4F0E6 0%, #ECE4D2 100%);
  border-top: 1px solid rgba(181, 142, 90, 0.24);
}

.site-footer,
.site-footer a,
.site-footer p,
.site-footer h4 {
  color: #2D4339;
}

.footer-grid {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: clamp(16px, 2.2vw, 24px);
}

.footer-col {
  background: var(--card-bg);
  border: var(--card-border);
  border-radius: var(--radius-inner);
  padding: clamp(16px, 2.1vw, 22px);
  box-shadow: var(--shadow-soft);
}

.footer-col h4 {
  font-size: clamp(15px, 1.2vw, 17px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #1F3B33;
}

.footer-col h5 {
  font-size: clamp(15px, 1.2vw, 17px);
  margin: 16px 0 8px;
  color: #2A4137;
}

.footer-col p,
.footer-links a {
  font-size: clamp(14px, 1.05vw, 15px);
  line-height: 1.7;
  color: #56675F;
  text-decoration: none;
}

.footer-links {
  list-style: none;
}

.footer-links a:hover {
  color: #1F4A3A;
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-social a,
.footer-social-link {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  color: #51635A;
  text-decoration: none;
  border: 1px solid rgba(181, 142, 90, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.92);
  transition: all 0.24s ease;
}

.footer-social a:hover,
.footer-social-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  transform: translateY(-1px);
}

.footer-col strong {
  font-weight: 600;
}

.footer-col p + p {
  margin-top: 2px;
}

/* All .cta-btn share the same filled orange style regardless of .primary class */

/* ================= FAQ HOME VARIANT ================= */
.faq-home {
  padding: clamp(56px, 7vw, 84px) var(--section-x);
}

.faq-home .faq-title {
  text-align: center;
  margin-bottom: 32px;
}

.faq-home .faq-container {
  max-width: var(--content-max);
  margin: 0 auto;
}

/* ================= REVEAL ANIMATION ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= KEYFRAMES ================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes floatCard {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

@keyframes popup {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatMobile {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ================= TABLET (max-width: 1024px) ================= */
@media (max-width: 1024px) {
  .services-grid,
  .home-refined .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-feature-intro {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(181, 142, 90, 0.22);
    padding: 0 0 20px;
  }

  .hero,
  .home-refined .hero {
    padding: clamp(44px, 7vw, 72px) clamp(20px, 5vw, 40px);
  }

  .home-refined .hero {
    min-height: 520px;
  }

  .home-refined .hero-heading {
    font-size: 40px;
  }

  .about-container,
  .doctor-container,
  .connect-container,
  .connect-box,
  .premium-pcod .about-container {
    gap: clamp(20px, 3vw, 36px);
  }

  .connect-right {
    flex-basis: 56%;
    max-width: 56%;
    border-radius: 10px;
  }

  .connect-right iframe,
  .connect-right img {
    min-height: 260px;
    height: 260px;
  }

  .faq .faq-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

/* ================= MOBILE (max-width: 768px) ================= */
@media (max-width: 768px) {
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 16px;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb a,
  .breadcrumb span {
    flex: 0 0 auto;
    font-size: 13px;
    line-height: 1.3;
  }

  nav a.contact-btn:active,
  .home-refined nav a.contact-btn:active {
    background: transparent;
    color: #5D4E34;
    border-color: rgba(181, 142, 90, 0.65);
    box-shadow: 0 10px 18px rgba(123, 95, 60, 0.16);
    transform: translateY(-1px);
  }

  /* Navbar */
  .navbar,
  .home-refined .navbar {
    min-height: 76px;
    padding: 10px 14px;
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    justify-items: center;
    gap: 0;
  }

  .navbar::before,
  .home-refined .navbar::before {
    content: "";
    display: block;
    width: 42px;
    height: 42px;
    grid-column: 1;
    grid-row: 1;
  }

  .logo,
  .home-refined .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: calc(100vw - 120px);
    order: 2;
  }

  .logo img,
  .home-refined .logo img {
    height: 48px;
  }

  .brand-text,
  .home-refined .brand-text {
    display: none;
  }

  .brand-name,
  .home-refined .brand-name {
    font-size: clamp(1.2rem, 5.6vw, 1.85rem);
  }

  .tagline,
  .home-refined .tagline {
    font-size: clamp(0.74rem, 2.9vw, 0.9rem);
  }

  .menu-toggle {
    display: flex;
    order: 3;
    margin-left: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(181, 142, 90, 0.12);
  }

  nav {
    order: 1;
    grid-column: 1 / -1;
    grid-row: 1;
  }

  /* Mobile nav dropdown */
  nav ul,
  .home-refined nav ul {
    position: fixed;
    top: var(--navbar-height);
    right: 8px;
    left: auto;
    width: min(300px, calc(100vw - 20px));
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(181, 142, 90, 0.26);
    box-shadow: 0 22px 44px rgba(45, 37, 24, 0.14);
    backdrop-filter: blur(14px);
    z-index: 1300;
  }

  nav ul.active,
  .home-refined nav ul.active {
    display: flex;
    animation: fadeIn 0.25s ease;
  }

  nav li,
  .home-refined nav li {
    width: 100%;
  }

  nav a,
  .home-refined nav a {
    width: 100%;
    text-align: left;
    justify-content: flex-start;
  }

  /* Nav link hover on mobile */
  .navbar > nav > ul > li > a:not(.contact-btn),
  .home-refined .navbar > nav > ul > li > a:not(.contact-btn) {
    width: 100%;
    border-radius: 10px;
    min-height: 36px;
    padding: 0 10px;
    font-size: 14px;
    color: #2F3B2D;
    background: transparent;
    box-shadow: none;
  }

  .navbar > nav > ul > li > a:not(.contact-btn)::before,
  .home-refined .navbar > nav > ul > li > a:not(.contact-btn)::before {
    display: none;
  }

  .navbar > nav > ul > li > a:not(.contact-btn):hover,
  .home-refined .navbar > nav > ul > li > a:not(.contact-btn):hover {
    color: #2F3B2D;
    background: rgba(181, 142, 90, 0.12);
    box-shadow: none;
  }

  nav a.contact-btn,
  .home-refined nav a.contact-btn {
    width: 100%;
    align-self: stretch;
    justify-content: center;
    margin-top: 4px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  /* Mobile dropdown menus hidden (JS handles them) */
  .navbar .dropdown .dropdown-menu,
  .home-refined .navbar .dropdown .dropdown-menu,
  .navbar .submenu-content,
  .home-refined .navbar .submenu-content {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 253, 248, 0.78);
    border: 1px solid rgba(181, 142, 90, 0.18);
    border-radius: 12px;
    box-shadow: none;
    padding: 6px;
    margin-top: 6px;
  }

  .navbar .dropdown-menu::before,
  .home-refined .navbar .dropdown-menu::before,
  .navbar .submenu-content::before,
  .home-refined .navbar .submenu-content::before {
    display: none;
  }

  .navbar .submenu,
  .home-refined .navbar .submenu {
    border: 1px solid rgba(181, 142, 90, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
  }

  .navbar .submenu-title,
  .home-refined .navbar .submenu-title {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .navbar .submenu-content a,
  .home-refined .navbar .submenu-content a {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12.5px;
  }

  .navbar .dropdown.open .dropdown-menu,
  .home-refined .navbar .dropdown.open .dropdown-menu {
    display: block;
  }

  .navbar .submenu.open .submenu-content,
  .home-refined .navbar .submenu.open .submenu-content {
    display: block;
  }

  .submenu::after {
    display: none;
  }

  .dropdown::after {
    display: none;
  }

  /* Hero on mobile */
  .hero,
  .home-refined .hero {
    flex-direction: column;
    text-align: center;
    padding: clamp(28px, 7vw, 38px) 16px clamp(30px, 6vw, 42px);
    min-height: auto !important;
    gap: 14px;
    overflow-x: clip;
  }

  .home-refined .hero::before,
  .home-refined .hero::after {
    display: none;
  }

  .hero-left,
  .home-refined .hero-left {
    display: contents;
  }

  .hero-heading,
  .home-refined .hero-heading {
    font-size: clamp(1.95rem, 8vw, 2.4rem);
    line-height: 1.05;
    order: 1;
  }

  .hero-heading::after,
  .home-refined .hero-heading::after {
    margin: 10px auto 0;
  }

  .hero-subtext,
  .home-refined .hero-subtext {
    font-size: 14px;
    max-width: 32ch;
    margin: 0 auto 4px;
    order: 2;
  }

  .hero .cta-btn,
  .home-refined .hero .cta-btn {
    margin-inline: auto;
  }

  .hero-left > .cta-btn,
  .home-refined .hero-left > .cta-btn {
    order: 4;
  }

  .hero-right,
  .home-refined .hero-right {
    order: 3;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 0 2px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-right img,
  .home-refined .hero-right img {
    display: block;
    margin-inline: auto;
    width: min(86vw, 430px);
    max-width: 100%;
    transform: none;
    filter: none;
    animation: floatMobile 4s ease-in-out infinite;
  }

  .hero-buttons,
  .home-refined .hero-buttons {
    order: 4;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
  }

  .cta-btn {
    min-width: 145px;
    height: 44px;
    font-size: 14px;
    padding: 0 16px;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid transparent;
  }

  /* Sections */
  .about,
  .doctor,
  .premium-pcod,
  .faq,
  .treatments-section,
  .services-premium,
  .treatments-showcase,
  .connect {
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-x: clip;
  }

  .premium-pcod::before,
  .treatments-showcase-inner::before {
    display: none;
  }

  .about-container,
  .doctor-container,
  .connect-container,
  .connect-box,
  .premium-pcod .about-container,
  .treatments-showcase-inner {
    flex-direction: column;
    gap: 24px;
  }

  .about-container,
  .doctor-container {
    padding: clamp(22px, 5vw, 28px);
    border-radius: 24px;
    border: 1px solid rgba(181, 142, 90, 0.24);
    background: linear-gradient(180deg, #FFFDF8 0%, #F5EFE3 100%);
    box-shadow: 0 18px 32px rgba(78, 67, 49, 0.12);
    align-items: stretch;
  }

  .premium-pcod .about-container,
  .connect-container,
  .connect-box,
  .treatments-showcase-inner {
    padding: clamp(22px, 5vw, 28px);
    border-radius: 24px;
    border: 1px solid rgba(181, 142, 90, 0.24);
    background: linear-gradient(180deg, #FFFDF8 0%, #F5EFE3 100%);
    box-shadow: 0 18px 32px rgba(78, 67, 49, 0.12);
    align-items: stretch;
  }

  .about-text,
  .pcod-content {
    max-width: none;
    text-align: left;
    order: 1;
  }

  .about-title::after {
    margin-left: 0;
  }

  .doctor-content {
    flex: 1 1 auto;
    text-align: left;
  }

  .doctor-name {
    font-size: clamp(1.72rem, 7vw, 2rem);
    margin-bottom: 10px;
  }

  .doctor-degree {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(181, 142, 90, 0.4);
    background: rgba(255, 253, 247, 0.82);
    color: #7E6946;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 14px;
  }

  .doctor-desc {
    color: #55655D;
    line-height: 1.72;
  }

  .doctor .section-subtitle {
    color: #8A6F48;
  }

  .doctor .doctor-list {
    gap: 10px;
  }

  .doctor .doctor-list li::before {
    content: "✓";
    color: #9B7E52;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 142, 90, 0.45);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    margin-right: 8px;
    vertical-align: middle;
  }

  .doctor .doctor-list li {
    color: #34453D;
  }

  .about-image,
  .pcod-image,
  .doctor-image {
    justify-content: center;
  }

  .about-image,
  .pcod-image {
    order: 2;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .about-image::before,
  .pcod-image::before {
    display: none;
  }

  .about-image img,
  .pcod-image img {
    width: min(82vw, 430px);
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    filter: none;
  }

  .doctor-quote {
    max-width: none;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(181, 142, 90, 0.35);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    background: rgba(255, 253, 247, 0.88);
    color: #7B6644;
    line-height: 1.7;
  }

  .doctor-image {
    flex: 1 1 auto;
    min-height: 0;
    background: transparent;
    box-shadow: none;
  }

  .doctor-image img {
    width: min(100%, 330px);
    border-radius: 24px;
    border: 1px solid rgba(181, 142, 90, 0.3);
    background: linear-gradient(180deg, #FFFDF8 0%, #F3ECDF 100%);
    box-shadow: 0 20px 28px rgba(15, 42, 29, 0.14);
    transform: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.06));
  }

  .services-grid,
  .home-refined .services-grid,
  .services-boxes,
  .pcod-grid {
    grid-template-columns: 1fr;
  }

  .services-title,
  .home-refined .services-title {
    font-size: clamp(1.9rem, 8vw, 2.35rem);
  }

  .services-subtitle,
  .home-refined .services-subtitle {
    max-width: 34ch;
    margin: 0 auto 24px;
  }

  .service-box,
  .home-refined .service-box {
    min-height: auto;
    padding: 22px 18px 18px;
  }

  .service-icon-wrap {
    width: 82px;
    height: 82px;
    margin-bottom: 14px;
  }

  .service-icon-wrap i {
    font-size: 36px;
  }

  .service-content h4 {
    font-size: 1.35rem;
  }

  .service-link {
    max-width: 220px;
  }

  .services-feature-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }

  .services-feature-intro {
    grid-template-columns: 76px 1fr;
    gap: 14px;
  }

  .services-feature-intro .service-icon-wrap,
  .feature-icon {
    width: 64px;
    height: 64px;
  }

  .services-feature-intro h3 {
    font-size: 1.45rem;
  }

  .services-boxes {
    padding: 0;
    gap: 12px;
  }

  .service-card {
    width: 100%;
    max-width: 100%;
    animation: none;
    padding: 16px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  /* Connect */
  .connect {
    padding-top: 40px;
  }

  .connect-left {
    text-align: left;
    align-items: flex-start;
    padding: 0;
  }

  .connect-brand {
    justify-content: flex-start;
  }

  .connect-container,
  .connect-box {
    gap: 18px;
  }

  .connect-right {
    max-width: 100%;
    flex-basis: 100%;
    border-radius: 10px;
  }

  .connect-right iframe,
  .connect-right img {
    min-height: 220px;
    height: 220px;
    border-radius: 0;
  }

  /* FAQ */
  .faq-title,
  .faq .services-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .faq .faq-container {
    grid-template-columns: 1fr;
    row-gap: 2px;
  }

  .faq .faq-item {
    padding: 12px 0;
  }

  .faq .faq-question {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .faq .faq-answer {
    font-size: 0.9rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* WhatsApp button */
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-width: 108px;
    height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  /* PCOD hero specifics */
  .pcod-hero {
    padding-top: 34px;
  }

  .pcod-hero .hero-left {
    display: contents;
  }

  .pcod-hero .hero-right {
    order: 2;
    margin-top: 0;
  }

  .pcod-hero .hero-right img {
    width: 52%;
    max-width: 170px;
  }

  .pcod-hero .cta-btn {
    order: 3;
    margin-top: 2px;
    min-width: 190px;
    height: var(--button-height);
  }
}
