/* =====================================================
   Diya Fertility Centre (DFC) — styles.css
   Plain CSS, no build step. Fonts: Baloo 2 / Quicksand / Pacifico
   ===================================================== */

:root {
  --pink: #ee387b;
  --pink-dark: #d42464;
  --pink-soft: #fbd3e8;
  --pink-tint: #fdeff6;
  --pink-card: #fbe0eb;
  --pink-border: #f6cfe2;

  --blue: #3f96e0;
  --blue-strong: #2f80d6;
  --blue-soft: #bfe0fb;
  --blue-light: #e7f1fb;

  --mint: #e7f3f0;
  --mint-border: #dceeea;

  --yellow: #f7b819;
  --green: #1fa45b;

  --ink: #33333e;
  --ink-2: #4a4a55;
  --grey: #75757f;
  --grey-2: #9a9aa3;

  --radius-lg: 30px;
  --shadow: 0 10px 30px rgba(51, 51, 62, 0.08);
  --shadow-soft: 0 4px 16px rgba(51, 51, 62, 0.06);

  --font-head: "Baloo 2", "Quicksand", system-ui, sans-serif;
  --font-body: "Quicksand", "Segoe UI", system-ui, sans-serif;
  --font-script: "Playfair Display", Georgia, serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

ul {
  list-style: none;
}

section[id],
footer[id] {
  scroll-margin-top: 90px;
}

.ic {
  width: 20px;
  height: 20px;
  flex: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 54px 0;
}

.center {
  text-align: center;
}

.h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ink);
}

.h2.pink {
  color: var(--pink);
}

.h2.blue {
  color: var(--blue);
}

.script-accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
  font-size: 20px;
  margin: 4px 0 16px;
  letter-spacing: 0.3px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  padding: 11px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  white-space: nowrap;
}

.btn-pink {
  background: linear-gradient(180deg, #f7478b, #e92c70);
  color: #fff;
  box-shadow: 0 6px 16px rgba(238, 56, 123, 0.32);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(238, 56, 123, 0.4);
  filter: brightness(1.03);
}

.btn-lg {
  padding: 13px 30px;
  font-size: 15.5px;
}

/* ---------------- Reveal & float animations ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .float {
    animation: none;
  }
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #fbe3ee 0%, #fffdfd 30%, #fffdfd 70%, #f9e7f1 100%);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(51, 51, 62, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  height: 48px;
  width: auto;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12.5px;
  line-height: 1.2;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--pink);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 14.5px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  color: var(--pink);
}

/* Treatment/Services pill */
.nav-dd {
  position: relative;
}

.nav-dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--pink) !important;
  border: 1.6px solid var(--pink);
  background: #fff;
}

.nav-dd-btn .ic-search {
  width: 17px;
  height: 17px;
}

.nav-dd-btn:hover {
  background: var(--pink-tint);
}

.nav-dd-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 44px rgba(51, 51, 62, 0.16);
  padding: 14px;
  z-index: 60;
}

.nav-dd-panel[hidden] {
  display: none;
}

.nav-dd-search {
  position: relative;
  margin-bottom: 10px;
}

.nav-dd-search input {
  width: 100%;
  padding: 10px 38px 10px 14px;
  border: 1.4px solid var(--pink-border);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
}

.nav-dd-search input:focus {
  border-color: var(--pink);
}

.nav-dd-search .ic {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--pink);
}

.nav-dd-list {
  max-height: 300px;
  overflow-y: auto;
}

.nav-dd-list button {
  width: 100%;
  display: block;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 12px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
}

.nav-dd-list button:hover {
  background: var(--pink-tint);
  color: var(--pink);
}

.nav-dd-empty {
  font-size: 12.5px;
  color: var(--grey);
  padding: 10px 12px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.6px solid var(--ink);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.lang-btn .ic {
  width: 20px;
  height: 20px;
}

.lang-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.lang-wrap {
  position: relative;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 150px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(51, 51, 62, 0.16);
  padding: 8px;
  z-index: 70;
}

.lang-menu[hidden] {
  display: none;
}

.lang-opt {
  width: 100%;
  display: block;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 12px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  white-space: nowrap;
}

.lang-opt:hover {
  background: var(--pink-tint);
  color: var(--pink);
}

.lang-opt.active {
  background: var(--pink-tint);
  color: var(--pink);
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #fff;
  border: 1.6px solid var(--pink-border);
  border-radius: 12px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2.4px;
  border-radius: 2px;
  background: var(--pink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7.4px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7.4px) rotate(-45deg);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  padding: 46px 0 64px;
  background:
    radial-gradient(620px 320px at 6% -4%, #fce1ee 0%, rgba(252, 225, 238, 0) 62%),
    radial-gradient(520px 300px at 2% 100%, #fff3d2 0%, rgba(255, 243, 210, 0) 58%),
    radial-gradient(720px 420px at 100% 0%, #fff 0%, rgba(255, 255, 255, 0) 55%),
    #fffefd;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: start;
}

.hero-media img {
  width: 100%;
  max-width: 430px;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(51, 51, 62, 0.16);
}

.hero-content h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.25;
  color: var(--ink);
}

.hero-sub {
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
  margin: 6px 0 20px;
}

.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 470px;
}

.pill-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--pink-border);
  border-radius: 999px;
  padding: 11px 12px 11px 22px;
  box-shadow: var(--shadow-soft);
}

.pill-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  color: var(--pink);
  white-space: nowrap;
}

.pill-small {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}

.pill-thumb {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: auto;
}

.quote-card {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--pink-border);
  border-radius: 22px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
}

.quote-text {
  color: var(--pink);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.55;
  padding-right: 44px;
}

.quote-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.quote-foot img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.quote-foot span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey);
}

.offer-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(51, 51, 62, 0.12);
  overflow: hidden;
}

.offer-row {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 10px;
  padding: 13px 18px;
  align-items: center;
}

.offer-head {
  background: var(--pink-card);
}

.offer-label strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-2);
  padding: 3px 0;
}

.tick {
  color: var(--green);
  width: 15px;
  height: 15px;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.price-now {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--pink);
}

.price-old {
  font-size: 14px;
  font-weight: 700;
  color: #b0526b;
  text-decoration: line-through;
}

.offer-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 18px 16px;
}

.offer-tc {
  font-size: 11.5px;
  color: var(--grey);
  font-weight: 600;
  line-height: 1.5;
  max-width: 210px;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-panel {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 44px;
  align-items: center;
}

.about-logo-card {
  background: #fff;
  border-radius: 34px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(51, 51, 62, 0.1);
  max-width: 350px;
  width: 100%;
  justify-self: center;
}

.about-logo-card img {
  width: 88%;
  margin: 0 auto 10px;
}

.about-logo-tag {
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 17.5px;
}

.about-body .h2 {
  font-size: 30px;
}

.about-body .heart {
  font-size: 22px;
}

.about-p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 12px;
}

.about-p strong {
  color: var(--ink);
  font-weight: 700;
}

.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--mint-border);
  border-radius: 999px;
  padding: 6px 16px 6px 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-2);
  line-height: 1.3;
  box-shadow: var(--shadow-soft);
}

.chip-ic {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.chip-ic .ic {
  width: 18px;
  height: 18px;
}

.chip-ic.pink {
  background: var(--pink-soft);
  color: var(--pink);
}

.chip-ic.blue {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.rupee {
  font-weight: 700;
  font-size: 17px;
}

.about-cta {
  text-align: right;
  margin-top: 22px;
}

/* =====================================================
   SERVICES
   ===================================================== */
.svc-search {
  position: relative;
  max-width: 430px;
  margin: 24px auto 30px;
}

.svc-search input {
  width: 100%;
  padding: 13px 50px 13px 24px;
  border: 1.7px solid var(--pink);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  background: #fff;
}

.svc-search input::placeholder {
  color: var(--grey-2);
}

.svc-search .ic {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  height: 19px;
  color: var(--ink);
  pointer-events: none;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}

.svc-card {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fef3f8;
  border: 1px solid #f9dce9;
  border-radius: 14px;
  padding: 12px 14px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(238, 56, 123, 0.14);
  background: #fde9f2;
}

.svc-ic {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 12px;
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--pink);
}

.svc-ic .ic {
  width: 27px;
  height: 27px;
}

.svc-card h3 {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.svc-arrow {
  color: var(--pink);
  width: 22px;
  height: 22px;
}

.svc-empty {
  text-align: center;
  color: var(--grey);
  font-size: 14px;
  font-weight: 600;
  padding: 18px 0;
}

.services .center.btn-wrap {
  margin-top: 28px;
}

/* =====================================================
   WHY DFC
   ===================================================== */
.why-panel {
  background: #fdeff5;
  border-radius: var(--radius-lg);
  padding: 42px 44px 44px;
}

.why-panel .h2 {
  font-size: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  margin: 26px 0 30px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-ic {
  height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}

.why-item:hover .why-ic {
  transform: translateY(-4px);
}

.why-ic.pink {
  background: var(--pink-soft);
  color: var(--pink);
}

.why-ic.blue {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.why-ic .ic {
  width: 32px;
  height: 32px;
}

.why-item p {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-2);
  text-align: center;
  line-height: 1.35;
}

.stats-band {
  background: var(--blue-light);
  border-radius: 22px;
  padding: 24px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 830px;
  margin: 0 auto;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 31px;
  color: var(--blue-strong);
}

.stat-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--grey);
}

.stat-foot {
  width: 36px;
  height: 36px;
  color: var(--blue-strong);
}

/* =====================================================
   DOCTOR
   ===================================================== */
.doctor .h2 {
  margin-bottom: 26px;
}

.doctor-panel {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 295px 1fr;
  gap: 38px;
  align-items: center;
}

.doctor-media img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.doctor-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 27px;
  color: var(--pink);
}

.doctor-creds {
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  margin: 2px 0 16px;
}

.doctor-body p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 13px;
}

.doctor-body p strong {
  color: var(--ink);
  font-weight: 700;
}

.doctor-body .btn {
  margin-top: 6px;
}

/* =====================================================
   BLOGS
   ===================================================== */
.blogs-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.blogs-head .h2 {
  font-size: 42px;
}

.blogs-sub {
  color: var(--pink);
  font-size: 13.5px;
  font-weight: 600;
  max-width: 360px;
  margin-top: 2px;
}

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

.blog-card {
  background: #fff;
  border: 1px solid #eee7ec;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(51, 51, 62, 0.12);
}

.blog-media {
  height: 172px;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.blog-body {
  padding: 14px 16px 20px;
}

.blog-date {
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
}

.blog-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.45;
  margin-top: 6px;
}

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testi-panel {
  background: #eff7f4;
  border-radius: var(--radius-lg);
  padding: 44px;
}

.testi-sub {
  text-align: center;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 600;
  margin: 4px 0 28px;
}

.testi-viewport {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
}

.testi-card {
  flex: 0 0 calc((100% - 36px) / 3);
  background: #fff;
  border: 1px solid #e5eeea;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.testi-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink-soft);
}

.testi-initial {
  display: inline-grid;
  place-items: center;
  flex: none;
  background: var(--pink-tint);
  color: var(--pink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
}

.testi-who h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
}

.testi-who p {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey);
  margin-top: 2px;
}

.testi-who .pin {
  width: 12px;
  height: 12px;
  color: var(--pink);
}

.testi-stars {
  margin-left: auto;
  display: flex;
  gap: 2px;
  color: var(--yellow);
}

.testi-stars .ic {
  width: 13px;
  height: 13px;
}

.testi-quote {
  width: 26px;
  height: 26px;
  color: var(--pink);
  margin: 12px 0 4px;
}

.testi-text {
  font-size: 12.8px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.65;
}

.testi-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-tint);
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 6px 12px;
}

.tag .ic {
  width: 12px;
  height: 12px;
}

.testi-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--grey);
}

.testi-date .ic {
  width: 13px;
  height: 13px;
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #f0bdd4;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background: var(--pink);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq .h2 {
  margin-bottom: 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 22px;
  align-items: start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid #f0dce5;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 19px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  text-align: left;
}

.faq-q .plus {
  color: var(--pink);
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p {
  padding: 0 20px 18px 54px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.65;
}

.faq-ask {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border: 1px solid #f0dce5;
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-soft);
  margin-top: auto;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-ask:hover {
  box-shadow: 0 10px 24px rgba(238, 56, 123, 0.14);
  transform: translateY(-2px);
}

.faq-ask p,
.faq-ask-txt {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 25px;
  color: var(--pink);
  text-align: left;
}

.faq-ask img {
  width: 66px;
}

/* =====================================================
   APPOINTMENT
   ===================================================== */
.appoint-panel {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: stretch;
}

.appoint-media,
.appoint-body {
  min-width: 0;
}

.appoint-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  border-radius: 18px;
}

.appoint-body .h2 {
  font-size: 29px;
  max-width: 340px;
}

.appoint-sub {
  display: inline-block;
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2.6px solid var(--pink);
  margin: 8px 0 24px;
}

.field {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.4px solid #e8e0da;
  border-radius: 999px;
  padding: 0 18px;
  height: 50px;
  margin-bottom: 4px;
  transition: border-color 0.2s ease;
}

.field:focus-within {
  border-color: var(--pink);
}

.field input,
.field select {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.field input::placeholder {
  color: var(--grey-2);
  font-weight: 600;
}

.f-ic {
  width: 18px;
  height: 18px;
  color: var(--grey-2);
}

.treatment-field {
  position: relative;
  cursor: pointer;
}

.treatment-field input[readonly] {
  cursor: pointer;
  text-overflow: ellipsis;
}

.f-chev {
  position: absolute;
  right: 18px;
  width: 17px;
  height: 17px;
  color: var(--grey);
  pointer-events: none;
  transition: transform 0.2s ease;
}

.treatment-field.open .f-chev {
  transform: rotate(180deg);
}

.treatment-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1.5px solid var(--pink-border);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(51, 51, 62, 0.16);
  z-index: 100;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.treatment-dropdown[hidden] {
  display: none !important;
}

.treatment-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-tint);
  border: 1px solid var(--pink-border);
  border-radius: 999px;
  padding: 6px 14px;
  height: 38px;
}

.treatment-search-box input {
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  width: 100%;
}

.treatment-search-box .ic {
  width: 15px;
  height: 15px;
  color: var(--pink);
  flex: none;
}

.treatment-list {
  list-style: none;
  max-height: 210px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-right: 4px;
}

.treatment-list li {
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.treatment-list li:hover,
.treatment-list li.selected {
  background: var(--pink-tint);
  color: var(--pink);
}

.f-err {
  display: none;
  color: #e23a6e;
  font-size: 11.5px;
  font-weight: 600;
  margin: 0 0 8px 20px;
}

.f-err.show {
  display: block;
}

.appoint-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.safe-note {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  max-width: 235px;
  line-height: 1.45;
}

.safe-ic {
  color: var(--green);
  width: 19px;
  height: 19px;
}

.form-success {
  margin-top: 16px;
  background: #e5f6ec;
  border: 1px solid #bce5cc;
  color: #1b7a45;
  font-size: 13.5px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 12px;
  line-height: 1.55;
}

.form-success.err-banner {
  background: #fde8e8;
  border-color: #f8b4b4;
  color: #9b1c1c;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: #fff;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.95fr 0.95fr;
  gap: 44px;
  padding-bottom: 40px;
}

.f-logo {
  width: 150px;
}

.f-tag {
  color: var(--blue);
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  margin: 2px 0 10px;
}

.f-desc {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}

.f-script {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
  font-size: 14.5px;
  margin-top: 4px;
}

.f-h {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--pink);
  margin-bottom: 14px;
}

.f-h.mt {
  margin-top: 26px;
}

.f-hours .f-hour-row {
  display: flex;
  gap: 11px;
  margin-bottom: 13px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.65;
}

.f-hours .ic {
  width: 19px;
  height: 19px;
  color: var(--pink);
  flex: none;
  margin-top: 3px;
}

.f-hours strong {
  color: var(--ink);
  font-weight: 700;
}

.f-contact li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 13px;
}

.f-ic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: none;
}

.f-ic .ic {
  width: 14px;
  height: 14px;
}

.f-ic.pink {
  background: var(--pink-soft);
  color: var(--pink);
}

.f-ic.blue {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.f-loc {
  display: flex;
  gap: 11px;
}

.f-loc p {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--grey);
  line-height: 1.75;
}

.f-map-wrap {
  padding-bottom: 44px;
}

.f-map-box {
  position: relative;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #e9eef2;
  box-shadow: 0 10px 26px rgba(51, 51, 62, 0.08);
}

.f-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.f-map {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.f-script-bar {
  background: #fbe3ef;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.f-heart {
  color: var(--pink);
  font-size: 13px;
}

.f-script-line {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
  font-size: 19px;
  letter-spacing: 0.3px;
}

.f-copy {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--grey);
  padding: 15px 20px 18px;
}

/* =====================================================
   SERVICE PAGE (service.html)
   ===================================================== */
.svcpage-hero {
  background: linear-gradient(180deg, var(--pink-tint), #fff);
  padding: 26px 0 0;
}

.svcpage-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--grey);
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.svcpage-back:hover {
  color: var(--pink);
}

.svcpage-back .ic {
  width: 16px;
  height: 16px;
  transform: rotate(180deg);
}

.svcpage-hero-card {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 30px;
  box-shadow: var(--shadow-soft);
  margin-bottom: -46px;
  position: relative;
}

.svcpage-icon {
  flex: none;
  width: 82px;
  height: 82px;
  border-radius: 22px;
  background: var(--pink-card);
  color: var(--pink);
  display: grid;
  place-items: center;
}

.svcpage-icon .ic {
  width: 44px;
  height: 44px;
}

.svcpage-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--grey-2);
  margin-bottom: 4px;
}

.svcpage-hero-card h1 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
}

.svcpage-tag {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
  font-size: 16px;
  margin-top: 5px;
}

.svcpage-body {
  padding-top: 84px;
}

.svcpage-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 34px;
  align-items: start;
}

.svcpage-h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin: 26px 0 12px;
}

.svcpage-h2:first-child {
  margin-top: 0;
}

.pink-txt {
  color: var(--pink);
}

.svcpage-what p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 10px;
}

.svcpage-steps {
  margin: 0 0 6px 22px;
  display: grid;
  gap: 9px;
}

.svcpage-steps li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.65;
  padding-left: 6px;
}

.svcpage-steps li::marker {
  color: var(--pink);
  font-weight: 700;
}

.svcpage-pl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.svcpage-col {
  border-radius: 16px;
  padding: 20px 22px;
}

.svcpage-col.mint {
  background: var(--mint);
}

.svcpage-col.pinkc {
  background: var(--pink-tint);
}

.svcpage-col h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.svcpage-col ul {
  display: grid;
  gap: 8px;
}

.svcpage-col li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.6;
}

.svcpage-col li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
}

.svcpage-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--blue-light);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
  line-height: 1.65;
}

.svcpage-cta {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.svcpage-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
}

.svcpage-all .ic {
  width: 16px;
  height: 16px;
}

.svcpage-side {
  display: grid;
  gap: 20px;
  position: sticky;
  top: 96px;
}

.svcpage-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.svcpage-figure img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.svcpage-sidecard {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}

.svcpage-sidecard h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}

.svcpage-sidecard ul {
  display: grid;
  gap: 9px;
  margin-bottom: 14px;
}

.svcpage-sidecard li a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.svcpage-sidecard li a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}

.svcpage-sidecard li a:hover {
  color: var(--pink);
}

.svcpage-sideall {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
}

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.dfc-wa-btn {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 94;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.38);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.dfc-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.52);
}

.dfc-wa-btn svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.dfc-wa-tip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #128c7e;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(51, 51, 62, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.dfc-wa-btn:hover .dfc-wa-tip {
  opacity: 1;
}

/* GOOGLE REVIEWS EMBED */
.testi-reviews-embed {
  margin-top: 36px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* GOOGLE MAPS QR CARD */
.f-qr-card {
  margin-top: 20px;
  background: #ffffff;
  border: 1.5px solid var(--pink-border);
  border-radius: 18px;
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 6px 18px rgba(51, 51, 62, 0.08);
}

.f-qr-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 12px;
}

.f-qr-txt {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.f-qr-sub {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--pink);
  margin-top: 4px;
}

/* =====================================================
   FLOATING CHAT — "Ask Diya"
   ===================================================== */
.dfc-chat-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  width: 66px;
  height: 66px;
  border: none;
  padding: 0;
  background: none;
  cursor: pointer;
  border-radius: 50%;
}

.dfc-chat-btn img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(51, 51, 62, 0.22));
  animation: float 4s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.dfc-chat-btn:hover img {
  transform: scale(1.07);
}

.dfc-chat-ring {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2.4px solid var(--pink);
  opacity: 0.55;
  animation: dfc-pulse 2.2s ease-out infinite;
}

.dfc-chat-btn.active .dfc-chat-ring {
  display: none;
}

@keyframes dfc-pulse {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.dfc-chat-tip {
  position: absolute;
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--pink-border);
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(51, 51, 62, 0.14);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.dfc-chat-btn:hover .dfc-chat-tip,
.dfc-chat-btn.active .dfc-chat-tip {
  opacity: 1;
}

.dfc-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 96px;
  z-index: 96;
  width: min(372px, calc(100vw - 24px));
  height: min(540px, calc(100vh - 130px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(51, 51, 62, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dfc-chat-panel[hidden] {
  display: none;
}

.dfc-chat-head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  background: linear-gradient(120deg, var(--pink-tint), #fff);
  border-bottom: 1px solid var(--pink-border);
}

.dfc-chat-ava {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.dfc-chat-head-txt {
  flex: 1;
  display: grid;
  line-height: 1.25;
}

.dfc-chat-head-txt strong {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--ink);
}

.dfc-chat-head-txt span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--green);
}

.dfc-chat-x {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: var(--pink-tint);
  color: var(--pink);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dfc-chat-x:hover {
  background: var(--pink-soft);
}

.dfc-chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fdf6fa;
}

.dfc-msg {
  max-width: 86%;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  border-radius: 16px;
  animation: dfc-in 0.25s ease;
}

@keyframes dfc-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.dfc-msg-bot {
  align-self: flex-start;
  background: #fff;
  color: var(--ink-2);
  border: 1px solid #f3e3ec;
  border-bottom-left-radius: 4px;
}

.dfc-msg-user {
  align-self: flex-end;
  background: var(--pink);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.dfc-msg s {
  color: var(--grey-2);
}

.dfc-chat-link {
  display: inline-block;
  margin-top: 7px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--pink);
  text-decoration: none;
  border-bottom: 1.6px solid var(--pink-soft);
}

.dfc-chat-link:hover {
  color: var(--pink-dark);
}

.dfc-chat-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--grey);
}

.dfc-typing {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 13px 16px;
}

.dfc-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grey-2);
  animation: dfc-blink 1s infinite;
}

.dfc-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.dfc-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes dfc-blink {

  0%,
  80%,
  100% {
    opacity: 0.3;
  }

  40% {
    opacity: 1;
  }
}

.dfc-chat-chips {
  flex: none;
  display: flex;
  gap: 7px;
  padding: 9px 12px;
  overflow-x: auto;
  background: #fff;
  border-top: 1px solid #f6e7ef;
}

.dfc-chip {
  flex: none;
  border: 1.4px solid var(--pink-border);
  background: var(--pink-tint);
  color: var(--pink);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dfc-chip:hover {
  background: var(--pink-soft);
}

.dfc-chat-inrow {
  flex: none;
  display: flex;
  gap: 9px;
  padding: 11px 12px;
  background: #fff;
}

.dfc-chat-in {
  flex: 1;
  min-width: 0;
  border: 1.4px solid #e8d5e0;
  border-radius: 999px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.dfc-chat-in:focus {
  border-color: var(--pink);
}

.dfc-chat-send {
  flex: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dfc-chat-send:hover {
  background: var(--pink-dark);
}

.dfc-chat-send svg {
  width: 19px;
  height: 19px;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1120px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 20px;
  }

  .hero-grid {
    gap: 36px;
  }

  .stats-band {
    padding: 22px 30px;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    margin: 0 auto;
  }

  .hero-content {
    max-width: 560px;
    margin: 0 auto;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .doctor-panel {
    grid-template-columns: 1fr;
  }

  .doctor-media {
    max-width: 330px;
    margin: 0 auto;
  }

  .appoint-panel {
    grid-template-columns: 1fr;
  }

  .appoint-media img {
    min-height: 0;
    max-height: 320px;
  }

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

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

  .svcpage-side {
    position: static;
  }
}

@media (max-width: 880px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 22px;
    gap: 6px;
    box-shadow: 0 18px 30px rgba(51, 51, 62, 0.12);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 14px;
  }

  .nav-dd-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--pink-border);
    margin-top: 6px;
  }

  .btn-book {
    margin-left: auto;
  }

  .about-panel {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

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

  .blogs-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 44px 0;
  }

  .h2 {
    font-size: 27px;
  }

  .blogs-head .h2 {
    font-size: 34px;
  }

  .svcpage-hero-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
  }

  .svcpage-pl {
    grid-template-columns: 1fr;
  }

  .svcpage-body {
    padding-top: 96px;
  }

  .dfc-wa-btn {
    width: 52px;
    height: 52px;
    bottom: 122px;
    right: 14px;
  }

  .dfc-wa-tip {
    display: none;
  }

  .dfc-chat-btn {
    width: 58px;
    height: 58px;
    bottom: 56px;
    right: 14px;
  }

  .dfc-chat-tip {
    display: none;
  }

  .dfc-chat-panel {
    right: 12px;
    bottom: 122px;
    height: min(500px, calc(100vh - 150px));
  }

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

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

  .testi-card {
    flex-basis: 100%;
  }

  .testi-panel {
    padding: 30px 22px;
  }

  .why-panel {
    padding: 30px 24px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-band {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 26px;
  }

  .stat-foot {
    display: none;
  }

  .doctor-panel,
  .appoint-panel {
    padding: 28px 22px;
  }

  .about-panel {
    padding: 28px 22px;
  }

  .about-cta {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .f-map-box {
    height: 260px;
    border-radius: 16px;
  }

  .doctor-panel {
    padding-bottom: 34px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-content h1 {
    font-size: 27px;
  }

  .offer-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .offer-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-name {
    display: none;
  }

  .btn-book {
    padding: 9px 16px;
    font-size: 13.5px;
  }

  .lang-btn {
    width: 38px;
    height: 38px;
  }

  .lang-menu {
    min-width: 132px;
  }

  .appoint-actions {
    justify-content: center;
  }

  .appoint-body .h2 {
    font-size: 24px;
    max-width: none;
  }

  .appoint-sub {
    margin-bottom: 20px;
  }

  .captcha-row {
    gap: 10px;
  }

  .captcha-code {
    min-width: 78px;
    letter-spacing: 2px;
  }

  .faq-ask p {
    font-size: 20px;
  }
}