/* =========================================================
   ReGlow Skin Hair & Laser — style.css
   Mobile-first premium aesthetics clinic styling
   ========================================================= */

:root {
  --purple: #7B2CBF;
  --purple-dark: #3E1660;
  --magenta: #D6336C;
  --magenta-soft: #F0668F;
  --teal: #0D9488;
  --teal-light: #2DD4BF;
  --white: #FFFFFF;
  --off-white: #FBF7FC;
  --cream: #FDFBF9;
  --ink: #2A2036;
  --gray: #746C81;
  --gray-light: #EBE4F0;

  --gradient-brand: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  --gradient-brand-soft: linear-gradient(135deg, rgba(123,44,191,0.10) 0%, rgba(214,51,108,0.10) 100%);
  --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #FBF6FB 55%, #F7F1FA 100%);
  --gradient-teal: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  --gradient-dusk: linear-gradient(120deg, #4C1D75 0%, #7B2CBF 45%, #B23368 100%);

  --shadow-sm: 0 4px 16px rgba(62, 22, 96, 0.06);
  --shadow-md: 0 14px 36px rgba(62, 22, 96, 0.10);
  --shadow-lg: 0 24px 60px rgba(62, 22, 96, 0.16);
  --shadow-glow: 0 12px 30px rgba(214, 51, 108, 0.22);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 40px;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  color: var(--purple-dark);
  letter-spacing: -0.01em;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gradient-teal);
  display: inline-block;
}
.eyebrow-light { color: var(--teal-light); }
.eyebrow-light::before { background: var(--teal-light); opacity: 0.8; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 { position: relative; padding-bottom: 20px; }
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 3px;
  border-radius: 10px;
  background: var(--gradient-brand);
}
.section-sub { color: var(--gray); margin-top: 8px; font-size: 1rem; font-weight: 300; }

section { padding: 88px 0; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-whatsapp { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.94rem;
  letter-spacing: 0.2px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-primary {
  background: var(--gradient-brand);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background-position: 100% 50%; box-shadow: var(--shadow-lg); }

.btn-outline {
  background: transparent;
  color: var(--purple-dark);
  border: 1.5px solid var(--gray-light);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--purple); background: rgba(123, 44, 191, 0.05); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.16); border-color: var(--white); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}
.btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 16px 38px rgba(37, 211, 102, 0.38); }

.btn-lg { padding: 17px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.icon-wa { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Header ---------- */
body { padding-top: 104px; }

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 24px), 1320px);
  max-width: 1320px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  border-radius: 22px;
  border: 1px solid rgba(123, 44, 191, 0.08);
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.35s ease, background 0.35s ease, top 0.35s ease;
  isolation: isolate;
}
.site-header.scrolled {
  top: 10px;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  height: 46px;
  flex-shrink: 0;
}
.logo-img {
  height: 100%;
  width: auto;
  max-width: 170px;
  display: block;
  object-fit: contain;
}

.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 78%;
  max-width: 340px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 100px 30px 30px;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
  z-index: 1050;
}
.main-nav.open { right: 0; }
.main-nav ul { display: flex; flex-direction: column; gap: 4px; }
.main-nav .nav-link {
  display: block;
  padding: 13px 0;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-light);
}
.main-nav .nav-link:hover { color: var(--purple); }
.main-nav .nav-link.active { color: var(--purple); font-weight: 600; border-bottom-color: var(--purple); }
.has-dropdown.active-section > .nav-link { color: var(--purple); font-weight: 600; }

/* Services dropdown - mobile: inline accordion */
.has-dropdown { position: relative; }
.has-dropdown > .nav-link { padding-right: 34px; }
.dropdown-toggle {
  position: absolute;
  right: 0;
  top: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  cursor: pointer;
}
.dropdown-toggle .chevron {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}
.has-dropdown.open .dropdown-toggle .chevron { transform: rotate(180deg); }
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.has-dropdown.open .dropdown-menu { max-height: 280px; }
.dropdown-menu .nav-link { font-size: 0.92em; padding-left: 16px; }

.header-cta { display: none; }
.header-cta .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
  gap: 6px;
  box-shadow: none;
}
.header-cta .btn .icon-wa { width: 16px; height: 16px; }
.header-cta .btn:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(37, 211, 102, 0.25); }

.hamburger {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--purple-dark);
  margin: 6px auto;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
  z-index: 900;
  animation: pulse 2.6s infinite;
}
.floating-whatsapp svg { width: 29px; height: 29px; fill: var(--white); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background: var(--gradient-soft);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 8%, rgba(214, 51, 108, 0.12), transparent 42%),
              radial-gradient(circle at 8% 85%, rgba(13, 148, 136, 0.12), transparent 42%),
              radial-gradient(circle at 50% 50%, rgba(123, 44, 191, 0.05), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.eyebrow { animation: none; }
.hero-content h1 {
  font-size: 2.15rem;
  margin-bottom: 20px;
}
.hero-sub {
  color: var(--gray);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}
.hero-tagline {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}
.hero-visual {
  position: relative;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}
.hero-blob-1 {
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--magenta-soft), transparent 70%);
  top: -10%; right: 5%;
}
.hero-blob-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--teal-light), transparent 70%);
  bottom: -12%; left: 2%;
  animation-delay: -4s;
}
@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-18px) scale(1.05); }
}
.hero-visual-photo {
  width: 244px;
  height: 244px;
  border-radius: 50%;
  position: absolute;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    url("assets/gallery-6.webp") center center / cover no-repeat;
  border: 10px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.hero-visual-ring {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-light);
  opacity: 0.4;
  position: absolute;
}
.hero-visual-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
  z-index: 3;
}
.hero-visual-card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gradient-teal);
  flex-shrink: 0;
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.18);
}
.hero-visual-card strong {
  display: block;
  font-size: 0.86rem;
  color: var(--purple-dark);
  font-weight: 600;
  margin-bottom: 3px;
}
.hero-visual-card small { font-size: 0.72rem; color: var(--gray); }

.hero-scroll-cue {
  display: none;
}

/* ---------- Trust / Stats ---------- */
.trust { padding: 0 0 48px; background: var(--white); position: relative; z-index: 1; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: center;
}
.trust-item {
  padding: 30px 16px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.trust-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-light);
}
.trust-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--gradient-brand-soft);
  color: var(--magenta);
  font-size: 1.2rem;
  font-family: "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item p { font-weight: 500; font-size: 0.9rem; color: var(--purple-dark); }

/* ---------- About ---------- */
.about { background: var(--gradient-soft); }
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}
.about-visual { width: 100%; max-width: 380px; }
.about-shape {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--gradient-dusk);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.about-shape::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.35);
}
.about-shape::before {
  content: "✦";
  position: absolute;
  bottom: 28px;
  left: 28px;
  color: rgba(255,255,255,0.75);
  font-size: 1.6rem;
}
.about-content h2 { font-size: 1.75rem; margin-bottom: 18px; }
.about-content p { color: var(--gray); margin-bottom: 24px; font-weight: 300; }
.about-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 32px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 0.95rem;
}
.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-teal);
  color: var(--white);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: var(--gray-light);
}
.service-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--gray-light);
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.service-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-avatar.icon-badge {
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: transparent;
}
.service-avatar.icon-badge svg { width: 36px; height: 36px; color: var(--white); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ---------- Treatment page feature image ---------- */
.treatment-feature {
  padding: 0 0 44px;
  background: var(--white);
}
.treatment-feature .photo-frame {
  max-width: 560px;
  margin: 0 auto;
}
.treatment-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ---------- Category sections (Skin / Hair / Laser) ---------- */
.category-section { background: var(--white); }
.category-section.alt { background: var(--off-white); }
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.category-grid.reverse { flex-direction: column; }
.category-visual {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.category-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.skin-visual { background: linear-gradient(135deg, #F6E1EC 0%, #E8A9C2 100%); }
.hair-visual { background: linear-gradient(135deg, #EAE0F7 0%, #B583E0 100%); }
.laser-visual { background: linear-gradient(135deg, #D9F2ED 0%, #6FC9BB 100%); }
.category-content h2 { font-size: 1.7rem; margin-bottom: 16px; }
.category-content p { color: var(--gray); margin-bottom: 22px; font-weight: 300; }
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.chip-list li {
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--purple-dark);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.chip-list li:hover { border-color: var(--purple); color: var(--purple); }
.chip-list li:has(a) { padding: 0; }
.chip-list li a { display: block; padding: 9px 18px; font-weight: 600; }

/* ---------- Rhinoplasty ---------- */
.rhinoplasty {
  position: relative;
  background: var(--gradient-dusk);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.rhinoplasty-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
}
.rhinoplasty-blob-1 { width: 320px; height: 320px; background: var(--teal-light); top: -15%; left: -8%; }
.rhinoplasty-blob-2 { width: 360px; height: 360px; background: var(--magenta-soft); bottom: -20%; right: -10%; }
.rhinoplasty-inner { position: relative; max-width: 740px; }
.rhinoplasty h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 22px; }
.rhinoplasty-text { font-size: 1.06rem; font-weight: 300; opacity: 0.95; margin-bottom: 18px; }
.rhinoplasty-note { font-size: 0.9rem; font-weight: 300; opacity: 0.8; margin-bottom: 34px; font-style: italic; }
.rhinoplasty .btn-primary {
  background: var(--white);
  background-image: none;
  color: var(--purple-dark);
  box-shadow: var(--shadow-lg);
}
.rhinoplasty .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(0,0,0,0.28); }

/* ---------- Why Choose ---------- */
.why-choose { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.why-card {
  text-align: center;
  padding: 38px 24px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Segoe UI Symbol", sans-serif;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 12px; font-weight: 600; }
.why-card p { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ---------- Doctors ---------- */
.doctors { background: var(--gradient-soft); }
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  max-width: 700px;
  margin: 0 auto;
}
.doctor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.doctor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.doctor-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: var(--shadow-glow);
  overflow: hidden;
}
.doctor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.doctor-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.doctor-qual { color: var(--teal); font-weight: 600; font-size: 0.83rem; margin-bottom: 4px; }
.doctor-role { color: var(--gray); font-size: 0.9rem; font-weight: 300; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #F5EAFA 0%, #E4F6F2 100%);
  border: 1.5px dashed #D9C9E8;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item::after {
  content: "✦";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--purple);
  opacity: 0.35;
  font-size: 1.4rem;
}
.gallery-disclaimer {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin-top: 24px;
  font-style: italic;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--magenta); margin-bottom: 14px; letter-spacing: 2px; font-size: 0.9rem; }
.stars { font-family: "Segoe UI Symbol", "Apple Color Emoji", "Segoe UI Emoji", sans-serif; }
.testimonial-card p { color: var(--ink); font-size: 0.94rem; font-weight: 300; margin-bottom: 16px; }
.testimonial-name { color: var(--gray); font-size: 0.84rem; font-weight: 600; margin-bottom: 0 !important; }

/* ---------- Appointment ---------- */
.appointment { background: var(--white); }
.appointment-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.appointment-info h2 { font-size: 1.7rem; margin-bottom: 16px; }
.appointment-info p { color: var(--gray); margin-bottom: 26px; font-weight: 300; }
.appointment-form {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row label { font-size: 0.83rem; font-weight: 600; color: var(--purple-dark); }
.form-row input,
.form-row select,
.form-row textarea {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.10);
}

/* ---------- FAQs ---------- */
.faqs { background: var(--gradient-soft); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open, .faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--purple-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 14px;
}
.faq-toggle {
  color: var(--white);
  background: var(--gradient-brand);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(135deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-answer { padding-bottom: 20px; }
.faq-answer p { color: var(--gray); font-size: 0.92rem; font-weight: 300; }

/* ---------- Contact ---------- */
.contact { background: var(--white); }
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-info h3 { font-size: 1.35rem; margin-bottom: 14px; }
.contact-address { color: var(--gray); margin-bottom: 26px; font-weight: 300; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.contact-socials { display: flex; gap: 18px; }
.contact-socials a {
  font-weight: 600;
  color: var(--purple);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.contact-socials a:hover { color: var(--magenta); }
.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--gray-light);
}
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 30px;
  background: var(--gradient-soft);
  border: 1.5px dashed var(--gray-light);
}
.map-placeholder svg { width: 40px; height: 40px; fill: var(--purple); opacity: 0.6; margin-bottom: 6px; }
.map-placeholder p { font-weight: 600; color: var(--purple-dark); font-size: 0.95rem; }
.map-placeholder span { color: var(--gray); font-size: 0.82rem; max-width: 260px; }

/* ---------- Final CTA Band ---------- */
.cta-band {
  position: relative;
  background: var(--gradient-brand);
  color: var(--white);
  text-align: center;
  overflow: hidden;
  padding: 96px 0;
}
.cta-band-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
}
.cta-band-blob-1 { width: 300px; height: 300px; background: var(--teal-light); top: -20%; right: 0; }
.cta-band-blob-2 { width: 260px; height: 260px; background: var(--white); bottom: -25%; left: 5%; }
.cta-band-inner { position: relative; max-width: 680px; }
.cta-band h2 { color: var(--white); font-size: 1.9rem; margin-bottom: 18px; }
.cta-band-text { font-weight: 300; opacity: 0.95; margin-bottom: 34px; font-size: 1.02rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: var(--purple-dark);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 44px;
}
.footer-logo-img { height: 52px; width: auto; display: block; }
.footer-tagline { margin-top: 12px; color: var(--teal-light); font-family: var(--font-head); font-style: italic; font-weight: 600; }
.footer-links h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 11px; }
.footer-links a, .footer-links li { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 300; }
.footer-links a:hover { color: var(--teal-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 24px 20px 28px;
  text-align: center;
}
.disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.5); max-width: 720px; margin: 0 auto 10px; font-weight: 300; }
.copyright { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 300; }

/* =========================================================
   SHARED — Inner page header, breadcrumb, sub-tabs,
   photo treatments, hash-highlight, text links
   ========================================================= */
.page-header {
  position: relative;
  padding: 48px 0 40px;
  background: var(--gradient-soft);
  text-align: center;
  overflow: hidden;
}
.page-header::before,
.page-header::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.3;
}
.page-header::before { width: 200px; height: 200px; background: var(--magenta-soft); top: -30%; right: 6%; }
.page-header::after { width: 220px; height: 220px; background: var(--teal-light); bottom: -35%; left: 4%; }
.breadcrumb {
  position: relative;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--purple); font-weight: 500; }
.breadcrumb a:hover { color: var(--magenta); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.6; }
.page-header h1 {
  position: relative;
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.page-header p {
  position: relative;
  color: var(--gray);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto;
}

/* Sub-tabs (treatment category switcher) */
.sub-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-bottom: 1px solid var(--gray-light);
  margin-bottom: 52px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sub-tabs::-webkit-scrollbar { display: none; }
.sub-tabs a {
  padding: 14px 18px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sub-tabs a:hover { color: var(--purple); }
.sub-tabs a.active { color: var(--magenta); border-bottom-color: var(--magenta); }

/* Real photo treatments (About / Home / Gallery) */
.about-photo, .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.gallery-item { overflow: hidden; position: relative; background: var(--gray-light); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(0deg, rgba(30, 10, 45, 0.72), transparent);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Hash-jump highlight for anchor-linked treatment cards */
.hash-highlight { animation: hashGlow 2.2s ease; border-radius: var(--radius-md); }
@keyframes hashGlow {
  0% { box-shadow: 0 0 0 0 rgba(214, 51, 108, 0.5); }
  40% { box-shadow: 0 0 0 12px rgba(214, 51, 108, 0.12); }
  100% { box-shadow: 0 0 0 0 rgba(214, 51, 108, 0); }
}

/* Text link with arrow, for "View all" links to dedicated pages */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--purple);
}
.link-arrow::after { content: "\2192"; transition: transform 0.3s var(--ease); }
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow:hover { color: var(--magenta); }

.section-foot { text-align: center; margin-top: 40px; }

/* =========================================================
   RESPONSIVE — Tablet & Desktop
   ========================================================= */
@media (min-width: 768px) {
  section { padding: 120px 0; }
  .cta-band { padding: 130px 0; }
  .trust { padding-bottom: 64px; }
  .hero-content h1 { font-size: 2.9rem; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .about-list { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { flex-direction: row; }
  .contact-info { flex: 1; }
  .contact-map { flex: 1; aspect-ratio: auto; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { margin-bottom: 72px; }
  .page-header { padding: 68px 0 52px; }
  .page-header h1 { font-size: 2.4rem; }
}

@media (min-width: 1024px) {
  body { padding-top: 112px; }
  .header-cta { display: block; }
  .hamburger { display: none; }
  .logo { height: 48px; }

  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .main-nav ul { flex-direction: row; align-items: center; gap: 18px; flex-wrap: nowrap; }
  .main-nav .nav-link {
    border-bottom: none;
    padding: 6px 0;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
  }
  .main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s var(--ease);
  }
  .main-nav .nav-link:hover::after { width: 100%; }
  .main-nav .nav-link.active::after { width: 100%; }
  .has-dropdown.active-section > .nav-link::after { width: 100%; }

  /* Services dropdown - desktop: hover flyout */
  .has-dropdown > .nav-link { padding-right: 6px; }
  .has-dropdown > .nav-link::before {
    content: "\25BE";
    display: inline-block;
    margin-left: 5px;
    font-size: 0.8em;
  }
  .dropdown-toggle { display: none; }
  .dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    max-height: none;
    overflow: visible;
    min-width: 210px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
  .dropdown-menu .nav-link {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
  .dropdown-menu .nav-link:hover { background: var(--off-white); }
  .dropdown-menu .nav-link::after { display: none; }

  .hero { padding: 90px 0 110px; }
  .hero-inner { flex-direction: row; align-items: center; }
  .hero-content { flex: 1.1; }
  .hero-visual { flex: 0.9; height: 420px; }
  .hero-visual-photo { width: 300px; height: 300px; }
  .hero-visual-ring { width: 340px; height: 340px; }
  .hero-content h1 { font-size: 3.35rem; }
  .hero-scroll-cue {
    display: flex;
    justify-content: center;
    margin-top: 60px;
  }
  .hero-scroll-cue span {
    width: 26px; height: 42px;
    border: 1.5px solid var(--gray);
    border-radius: 20px;
    position: relative;
    opacity: 0.5;
  }
  .hero-scroll-cue span::before {
    content: "";
    position: absolute;
    top: 8px; left: 50%;
    width: 4px; height: 8px;
    background: var(--purple);
    border-radius: 3px;
    transform: translateX(-50%);
    animation: scrollcue 1.8s infinite;
  }
  @keyframes scrollcue {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
  }

  .about-grid { flex-direction: row; align-items: center; gap: 70px; }
  .about-visual { flex: 0.9; max-width: none; }
  .about-content { flex: 1.1; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(4, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); max-width: 800px; }

  .category-grid { flex-direction: row; align-items: center; gap: 70px; }
  .category-grid.reverse { flex-direction: row-reverse; }
  .category-visual, .category-content { flex: 1; }

  .appointment-grid { flex-direction: row; gap: 70px; }
  .appointment-info { flex: 1; }
  .appointment-form { flex: 1.1; }

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

@media (min-width: 1280px) {
  .container { padding: 0 32px; }
}
