:root {
  --rose: #F472A8;
  --rose-lt: #FFE8F3;
  --rose-md: #FCCFE6;
  --gold: #C9883A;
  --gold-lt: #FFF3E4;
  --peach: #FFF7F2;
  --white: #FFFFFF;
  --bg: #FEF9FB;
  --text: #2A2028;
  --muted: #8C7884;
  --divider: #F0E4EC;
  --wa: #25D366;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* STICKY */
.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.sticky-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--rose);
  font-weight: 700;
}

.sticky-logo span {
  color: var(--gold);
}

.sticky-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sbtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.sbtn-wa {
  background: var(--wa);
  color: #fff;
}

.sbtn-call {
  background: var(--rose);
  color: #fff;
}

.sbtn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* FREE BANNER */
.free-banner {
  margin-top: 62px;
  background: linear-gradient(90deg, var(--rose) 0%, #F4A0CB 100%);
  text-align: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.free-banner a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
  font-size: 13px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #FFF0F7 0%, #FEF9FB 50%, #FFF6EE 100%);
  padding: 72px 40px 80px;
  position: relative;
  margin-top: 62px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 114, 168, 0.1) 0%, transparent 70%);
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rose-lt);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--rose);
  font-style: italic;
}

.hero h1 strong {
  color: var(--gold);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
  max-width: 480px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-lt);
  border: 1.5px solid #E8A855;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hbtn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

.hbtn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--rose);
  border: 2px solid var(--rose);
  padding: 14px 26px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.hbtn-wa:hover,
.hbtn-call:hover {
  transform: translateY(-3px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.ht {
  text-align: center;
}

.ht-n {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--rose);
  font-weight: 700;
  display: block;
}

.ht-l {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero card */
.hero-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 16px 56px rgba(244, 114, 168, 0.15);
  overflow: hidden;
  border: 1px solid var(--divider);
}

.hc-hdr {
  background: linear-gradient(90deg, var(--rose-lt), var(--gold-lt));
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.hc-tag {
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* Interactive slider styles for Hero Card */
.hc-imgs {
  display: block;
  height: 240px;
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
}

.hc-b {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/Real Patient · Tan Removal - Before.jpg') center/cover no-repeat;
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.hc-b-content {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  width: 100%;
  max-width: 120px;
}

.hc-a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../Images/Real Patient · Tan Removal - After.jpg') center/cover no-repeat;
  z-index: 1;
}

.hc-a-content {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
  width: 100%;
  max-width: 120px;
}

.hc-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hc-b-content .hc-lbl {
  color: rgba(255, 255, 255, 0.7);
}

.hc-a-content .hc-lbl {
  color: rgba(180, 80, 120, 0.7);
}

.hc-slbl {
  font-size: 10px;
}

.hc-b-content .hc-slbl {
  color: rgba(255, 255, 255, 0.45);
}

.hc-a-content .hc-slbl {
  color: rgba(180, 80, 120, 0.45);
}

.hc-sep {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.hc-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.hc-foot {
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--divider);
}

.hc-result {
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
}

.hc-sesh {
  font-size: 12px;
  color: var(--muted);
}

/* FEATURE STRIP */
.feat-strip {
  background: #fff;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px;
}

.feat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.fi {
  background: #fff;
  padding: 28px 22px;
  text-align: center;
}

.fi-ico {
  font-size: 30px;
  margin-bottom: 10px;
  display: block;
}

.fi-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.fi-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* SHARED */
.section-tag {
  display: inline-block;
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.sec-head {
  text-align: center;
  margin-bottom: 52px;
}

/* DOCTOR */
.doctor-section {
  background: var(--peach);
  padding: 80px 40px;
}

.doctor-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 60px;
  align-items: center;
}

.doc-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(244, 114, 168, 0.2);
  border: 3px solid var(--rose-md);
  position: relative;
  background: url('../Images/Dr Charanya-3.jpg') top center/cover no-repeat;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doc-ph {
  display: none;
  text-align: center;
}

.doc-ph .dn {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--rose);
  font-weight: 700;
}

.doc-ph .dq {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.doc-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 13px 20px;
  text-align: center;
  border-top: 1px solid var(--divider);
}

.dr-n {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--rose);
  font-weight: 700;
}

.dr-q {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.cred-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 13px 18px;
  border-radius: 12px;
  border-left: 3px solid var(--rose);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.cred-ico {
  font-size: 18px;
  flex-shrink: 0;
}

.cred strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.cred span {
  font-size: 12px;
  color: var(--muted);
}

/* SERVICES */
.services-section {
  background: #fff;
  padding: 90px 40px;
}

.sv-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.sv-card {
  border: 1.5px solid var(--divider);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
}

.sv-card:hover {
  border-color: var(--rose-md);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(244, 114, 168, 0.12);
}

.sv-top {
  padding: 28px 26px 20px;
}

.sv-num {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: rgba(244, 114, 168, 0.12);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}

.sv-ico {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.sv-title {
  font-family: 'Playfair Display', serif;
  font-size: 21px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 8px;
}

.sv-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.sv-sep {
  height: 1px;
  background: var(--divider);
  margin: 0 26px;
}

.sv-bot {
  padding: 16px 26px 22px;
}

.sv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sv-list li {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.sv-list li::before {
  content: '✦';
  color: var(--rose);
  font-size: 9px;
  flex-shrink: 0;
  margin-top: 3px;
}

.sv-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  cursor: pointer;
  border-bottom: 1px dashed var(--rose-md);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.sv-cta:hover {
  border-color: var(--rose);
}

/* BEFORE/AFTER */
.ba-section {
  background: var(--peach);
  padding: 90px 40px;
}

.ba-gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ba-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--divider);
  transition: transform 0.3s;
}

.ba-card:hover {
  transform: translateY(-4px);
}

/* Interactive slider styles for Before/After */
.ba-imgs {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
  cursor: ew-resize;
}

.ba-b {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #7A5038;
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-b-content {
  position: absolute;
  left: 25%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.ba-a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.a-tan {
  background: url('../Images/Visible tan reversal + even tone - After.jpg') center/cover no-repeat;
}

.b-tan {
  background: url('../Images/Visible tan reversal + even tone - Before.jpg') center/cover no-repeat;
}

.a-pig {
  background: url('../Images/Melasma & dark spots reduced - After.jpg') center/cover no-repeat;
}

.b-pig {
  background: url('../Images/Melasma & dark spots reduced - Before.jpg') center/cover no-repeat;
}

.a-kor {
  background: url('../Images/Glass skin glow achieved - After.jpg') center/cover no-repeat;
}

.b-kor {
  background: url('../Images/Glass skin glow achieved - Before.jpg') center/cover no-repeat;
}

.ba-a-content {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.a-tan .ba-a-content {
  color: rgba(180, 100, 30, 0.7);
}

.a-pig .ba-a-content {
  color: rgba(200, 80, 120, 0.7);
}

.a-kor .ba-a-content {
  color: rgba(120, 60, 180, 0.7);
}

.ba-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.ba-info {
  padding: 14px 18px;
}

.ba-svc {
  font-size: 11px;
  color: var(--rose);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ba-res {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-top: 3px;
}

.ba-sess {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.ba-note {
  max-width: 560px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  background: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px solid var(--divider);
}

/* WHY */
.why-section {
  background: #fff;
  padding: 80px 40px;
  border-top: 1px solid var(--divider);
}

.why-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  text-align: center;
  padding: 30px 22px;
  border: 1.5px solid var(--divider);
  border-radius: 16px;
  transition: all 0.3s;
}

.why-card:hover {
  border-color: var(--rose-md);
  box-shadow: 0 8px 32px rgba(244, 114, 168, 0.1);
  transform: translateY(-4px);
}

.why-ico {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}

.why-t {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.why-s {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* STATS */
.stats-bar {
  background: linear-gradient(90deg, var(--rose) 0%, #F060A0 100%);
  padding: 48px 40px;
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.sn {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  display: block;
}

.sl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* REVIEWS */
.rev-section {
  background: var(--rose-lt);
  padding: 80px 40px;
}

.rev-grid {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rev-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(244, 114, 168, 0.08);
  border: 1px solid var(--divider);
}

.rev-stars {
  color: #F59E0B;
  font-size: 14px;
  margin-bottom: 10px;
}

.rev-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.rev-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rev-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.av-a {
  background: var(--rose);
}

.av-b {
  background: #F4A460;
}

.av-c {
  background: #9B8DB0;
}

.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.rev-loc {
  font-size: 11px;
  color: var(--muted);
}

/* BOOKING */
.book-section {
  background: var(--bg);
  padding: 90px 40px;
  border-top: 1px solid var(--divider);
}

.book-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.free-box {
  background: linear-gradient(135deg, var(--rose-lt), var(--gold-lt));
  border: 1.5px solid var(--rose-md);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fb-ico {
  font-size: 28px;
  flex-shrink: 0;
}

.fb-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.fb-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.qctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.qbtn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.qbtn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.qbtn-call {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 20px rgba(244, 114, 168, 0.25);
}

.qbtn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.div-or {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 13px;
}

.div-or::before,
.div-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
}

.cli-info {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid var(--divider);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

.cli-info strong {
  color: var(--text);
}

.bf {
  background: #fff;
  border-radius: 20px;
  padding: 34px 30px;
  box-shadow: 0 8px 40px rgba(244, 114, 168, 0.1);
  border: 1.5px solid var(--divider);
}

.bf-title {
  font-family: 'Playfair Display', serif;
  font-size: 23px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.bf-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.fg {
  margin-bottom: 15px;
}

.fg label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.fg label em {
  color: var(--rose);
  font-style: normal;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--divider);
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: #FAFAFA;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--rose);
  background: #fff;
}

.fg textarea {
  resize: vertical;
  min-height: 74px;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sub-btn {
  width: 100%;
  padding: 15px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--rose) 0%, #F060A0 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
  box-shadow: 0 8px 24px rgba(244, 114, 168, 0.3);
}

.sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(244, 114, 168, 0.4);
}

.form-note {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.6;
}

.form-succ {
  display: none;
  text-align: center;
  padding: 48px 20px;
}

.form-succ .si {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
}

.form-succ h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  margin-bottom: 10px;
}

.form-succ p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* MAP */
.map-section {
  background: #fff;
  padding: 80px 40px 90px;
}

.map-wrap {
  max-width: 1100px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--divider);
}

.map-frame {
  height: 420px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-side {
  background: linear-gradient(160deg, var(--rose-lt) 0%, #fff 100%);
  padding: 36px 26px;
  border-left: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.ms-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--rose);
}

.ms-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #F59E0B;
}

.ms-rating span {
  color: var(--muted);
  font-weight: 400;
}

.ms-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.ms-row strong {
  color: var(--text);
  display: block;
  font-size: 13px;
}

.map-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
  margin-top: 4px;
}

.map-btn:hover {
  background: #E05090;
  transform: translateY(-2px);
}

/* LOC BAR */
.loc-bar {
  background: var(--rose);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.loc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* FOOTER */
footer {
  background: #1C0F14;
  padding: 40px 40px 24px;
  text-align: center;
}

.f-logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 6px;
}

.f-tag {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 22px;
}

.f-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.f-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.f-links a:hover {
  color: var(--rose);
}

.f-bot {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
  line-height: 1.7;
}

/* FLOAT WA */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: wap 2.5s infinite;
  transition: transform 0.2s;
}

.float-wa:hover {
  transform: scale(1.1);
}

@keyframes wap {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5)
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.1)
  }
}

/* ANIM */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fu 0.8s ease forwards;
}

@keyframes fu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.d1 {
  animation-delay: 0.1s
}

.d2 {
  animation-delay: 0.25s
}

.d3 {
  animation-delay: 0.4s
}

.d4 {
  animation-delay: 0.55s
}

/* RESPONSIVE */
@media(max-width:960px) {

  .hero-inner,
  .doctor-inner,
  .book-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .ba-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .map-wrap {
    grid-template-columns: 1fr;
  }

  .map-side {
    border-left: none;
    border-top: 1px solid var(--divider);
  }

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

  .loc-bar {
    gap: 20px;
  }

  .hero {
    padding: 56px 24px 64px;
  }

  .sticky {
    padding: 10px 20px;
  }
}

@media(max-width:600px) {

  .ba-gallery,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

  .bf {
    padding: 22px 16px;
  }

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

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

  .hero-trust {
    gap: 14px;
  }
}