/* Fairfax Laser Center — shared stylesheet (extracted & cleaned) */

:root {
  /* ============================================================
     Fairfax Laser Center — Design Tokens
     Palette: lavender + pinks over warm neutrals.
     Token names describe ROLE, not a misleading color family.
     ============================================================ */

  /* Brand accents */
  --brand-lavender:      #BF94E4;  /* primary brand / strong accent surfaces */
  --brand-lavender-soft: #f2f2ff;  /* tinted lavender background wash */
  --brand-pink:          #FFB6C1;  /* baby pink — borders, soft accents */
  --brand-pink-soft:     #ffc6cf;  /* light pink — focus rings, dividers */
  --brand-pink-warm:     #f59bab;  /* warm pink — hover states */
  --brand-pink-deep:     #df7f93;  /* deep pink — emphasis, link hover */

  /* Accent role aliases (used throughout components) */
  --accent-surface:  var(--brand-lavender);       /* filled accent backgrounds */
  --accent-wash:     var(--brand-lavender-soft);  /* subtle section washes */
  --accent-border:   var(--brand-pink);           /* hairline accent borders */
  --accent-ring:     var(--brand-pink-soft);      /* focus outlines */
  --accent-hover:    var(--brand-pink-warm);      /* hover color */
  --accent-strong:   var(--brand-pink-deep);      /* strongest accent text */

  /* Neutral scale (warm) — text + UI chrome */
  --neutral-50:  #fffef0;
  --neutral-100: #ffffcf;
  --neutral-200: #f1eeb3;
  --neutral-300: #d8d4a1;
  --neutral-500: #78716c;
  --neutral-600: #57534e;
  --neutral-700: #44403c;
  --neutral-800: #292524;
  --neutral-900: #1c1917;
  --neutral-950: #0c0a09;
  --white: #ffffff;

  /* Layout + effects */
  --max-width: 1180px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 8px 24px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 24px 70px rgba(28, 25, 23, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--neutral-950);
  background: var(--white);
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent-ring);
  outline-offset: 3px;
}

button {
  font: inherit;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--neutral-950);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--neutral-200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.brand span {
  display: block;
  margin-top: 2px;
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--neutral-600);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--accent-hover);
}

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

.phone-link {
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 700;
}

.phone-link:hover {
  color: var(--accent-strong);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: all 180ms ease;
  text-align: center;
}

.btn-primary {
  background: var(--neutral-950);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(12, 10, 9, 0.12);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-light {
  background: var(--white);
  color: var(--neutral-950);
  border-color: var(--neutral-300);
}

.btn-light:hover {
  border-color: var(--accent-border);
  background: var(--accent-surface);
  color: var(--accent-strong);
}

.btn-white {
  background: var(--white);
  color: var(--neutral-950);
}

.mobile-toggle {
  display: none;
  border: 1px solid var(--neutral-300);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--neutral-200);
  padding: 14px 0 18px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #000000;
  font-weight: 700;
}

.hero {
  background: radial-gradient(circle at 20% 15%, #ffe4e6 0%, transparent 34%), linear-gradient(135deg, #fff1f2 0%, #ffffff 45%, #fdf2f8 100%);
  padding: 88px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--accent-border);
  background: rgba(255, 255, 255, 0.85);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 780px;
}

.hero p {
  margin-top: 24px;
  color: var(--neutral-600);
  font-size: 19px;
  line-height: 1.8;
  max-width: 680px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-list {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 700;
}

.hero-card {
  border-radius: 34px;
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-lg);
}

.hero-card-inner {
  border-radius: 28px;
  background: linear-gradient(135deg, var(--accent-surface), var(--white), var(--neutral-100));
  padding: 34px;
}

.hero-card h2 {
  margin-top: 8px;
  font-size: 28px;
  line-height: 1.15;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.process-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
  color: var(--neutral-700);
  font-weight: 700;
}

.number {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-wash);
  color: var(--accent-strong);
  font-weight: 900;
  flex: 0 0 auto;
}

.trust-bar {
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  background: var(--white);
  padding: 22px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 800;
}

section {
  padding: 82px 0;
}

.section-white {
  background: var(--white);
}

.section-soft {
  background: linear-gradient(180deg, var(--white), var(--accent-surface));
}

.section-rose {
  background: var(--accent-surface);
}

.section-dark {
  background: var(--neutral-950);
  color: var(--white);
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-intro .label {
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-intro h1,
.section-intro h2 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-intro p {
  margin-top: 20px;
  color: var(--neutral-600);
  font-size: 18px;
  line-height: 1.8;
}

.section-dark .section-intro p {
  color: var(--neutral-300);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  box-shadow: 0 18px 50px rgba(190, 18, 60, 0.08);
}

.icon-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-surface);
  color: var(--accent-hover);
  font-size: 26px;
  margin-bottom: 22px;
}

.card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.card p {
  color: var(--neutral-600);
  line-height: 1.75;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: var(--neutral-700);
  font-size: 14px;
  font-weight: 700;
}

.doctor-grid,
.locations-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.dark-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #0c0a09 0%, #151110 100%);
  color: var(--white);
  border-left: 7px solid var(--accent-ring);
  border-radius: var(--radius-xl);
  padding: 46px;
  box-shadow: 0 28px 80px rgba(12, 10, 9, 0.24);
}

.dark-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253, 164, 175, 0.13) 0%, rgba(253, 164, 175, 0.05) 35%, rgba(253, 164, 175, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.dark-panel::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  pointer-events: none;
}

.dark-panel > * {
  position: relative;
  z-index: 1;
}

.dark-panel .label {
  color: var(--accent-ring);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dark-panel h2 {
  max-width: 520px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.dark-panel p {
  max-width: 540px;
  margin-top: 16px;
  color: var(--neutral-300);
  line-height: 1.8;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 14px 16px;
  border: 1px solid rgba(253, 164, 175, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.skill-dot {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ring);
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(253, 164, 175, 0.18);
}

.skill-text {
  display: block;
  color: var(--accent-surface);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.panel-note {
  margin-top: 22px;
  max-width: 540px;
  color: rgba(255, 228, 230, 0.86);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.panel-note span {
  display: block;
}

.stack {
  display: grid;
  gap: 16px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.info-card p {
  color: var(--neutral-600);
}

.pill-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  border: 1px solid var(--accent-border);
  background: var(--accent-surface);
  color: var(--neutral-800);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 800;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.pricing-tab {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pricing-tab.active {
  background: var(--white);
  color: var(--neutral-950);
}

.pricing-tab:focus-visible {
  outline-color: var(--white);
}

.pricing-panel {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  color: var(--neutral-950);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  background: var(--accent-surface);
  padding: 28px;
}

.pricing-header h3 {
  font-size: 26px;
}

.pricing-header p {
  margin-top: 8px;
  color: var(--neutral-600);
}

.price-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: center;
  padding: 20px 28px;
  border-top: 1px solid var(--neutral-200);
}

.price-row h4 {
  font-size: 17px;
}

.price-row small {
  display: block;
  color: var(--neutral-500);
  margin-top: 4px;
}

.price-value {
  justify-self: end;
  background: var(--accent-surface);
  color: var(--accent-strong);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 900;
  min-width: 120px;
  text-align: center;
}



.price-header-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: center;
  padding: 16px 28px;
  background: var(--neutral-50);
  border-top: 1px solid var(--neutral-200);
  color: var(--neutral-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-header-row span:last-child {
  justify-self: end;
  text-align: right;
}

.pricing-note {
  max-width: 900px;
  margin: 28px auto 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 30px;
  text-align: center;
}

.pricing-note p {
  color: var(--neutral-300);
  max-width: 720px;
  margin: 12px auto 0;
}

.package-discounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 22px auto 4px;
}

.discount-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 180px;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #BF94E4, #FF5CAD);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.discount-card .discount-amount {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.discount-card .discount-detail {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
}

.location-card h3 {
  font-size: 25px;
  margin-top: 10px;
}

.location-card .label {
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.insurance-wrap {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.insurance {
  border-radius: 999px;
  background: var(--neutral-100);
  color: var(--neutral-700);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 800;
}

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

.stars {
  color: var(--brand-pink);
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 20px 24px;
  color: var(--neutral-950);
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--accent-surface);
  color: var(--accent-hover);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--neutral-600);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-info {
  color: var(--neutral-700);
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-size: 26px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.contact-form .contact-copy {
  color: var(--neutral-600);
  margin-bottom: 22px;
}

.contact-choice {
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 8px;
}

.contact-choice + .contact-choice {
  margin-top: 14px;
}

.contact-choice strong {
  display: block;
  font-size: 18px;
}

.contact-choice p {
  color: var(--neutral-600);
}

.form-note {
  margin-top: 14px;
  color: var(--neutral-600);
  font-size: 14px;
  text-align: center;
}

footer {
  background: var(--neutral-950);
  color: var(--white);
  padding: 38px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-inner p {
  margin-top: 4px;
  color: var(--neutral-300);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--neutral-300);
  font-size: 14px;
}

/* Accessibility: give footer links a comfortable tap target (>=44px) */
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.sticky-mobile-cta {
  display: none;
}


/* Align the Medical Director panel with the cards on its right */
.doctor-grid {
  align-items: stretch;
}

.doctor-grid .dark-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.90) 45%, rgba(255, 241, 242, 0.72) 100%),
    radial-gradient(circle at 20% 15%, rgba(255, 228, 230, 0.9) 0%, transparent 34%),
    url("images/background-hero.webp") center right / cover no-repeat;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.image-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
  margin-top: 34px;
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-200);
  background: var(--white);
}

.image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.feature-copy {
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.feature-copy .label {
  color: var(--brand-pink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.feature-copy h3 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}

.feature-copy p {
  color: var(--neutral-600);
  line-height: 1.8;
}

.experience-media {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.experience-media .image-card img {
  min-height: 360px;
}

@media (max-width: 980px) {
  .image-feature-grid,
  .experience-media {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero-grid,
  .doctor-grid,
  .locations-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .medical-highlights {
    grid-template-columns: 1fr;
  }

  .dark-panel {
    padding: 34px;
  }

  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  body {
    padding-bottom: 84px;
  }

  .hero,
  section {
    padding: 58px 0;
  }

  .image-card img {
    min-height: 260px;
  }

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

  .btn {
    width: 100%;
  }

  .trust-list,
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }

  .price-row,
  .price-header-row {
    grid-template-columns: 1fr;
  }

  .price-value,
  .price-header-row span:last-child {
    justify-self: start;
    text-align: left;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-mobile-cta {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 120;
    background: var(--neutral-950);
    border-radius: 999px;
    padding: 8px;
    box-shadow: 0 16px 40px rgba(12, 10, 9, 0.3);
  }

  .sticky-mobile-cta a {
    display: block;
    background: var(--white);
    color: var(--neutral-950);
    border-radius: 999px;
    padding: 13px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
  }
}

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


/* Three-color refresh: #BF94E4, #FF5CAD, #FFB6C1 */
.hero {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 182, 193, 0.38) 0%, transparent 32%),
    radial-gradient(circle at 88% 18%, rgba(255, 92, 173, 0.34) 0%, transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #BF94E4 44%, rgba(255, 182, 193, 0.24) 100%);
}

.section-soft {
  background: linear-gradient(180deg, var(--white), #BF94E4);
}

.section-rose {
  background: linear-gradient(135deg, #BF94E4, rgba(255, 92, 173, 0.28));
}

.section-intro .label,
.location-card .label,
.dark-panel .label,
.brand span,
.eyebrow {
  color: #BF94E4;
}

.section-white .section-intro .label,
.section-soft .section-intro .label,
.section-rose .section-intro .label,
.location-card .label,
.brand span,
.nav-links a:hover,
.phone-link:hover {
  color: #c58ed8;
}

.hero-card-inner {
  background: linear-gradient(135deg, #BF94E4, #ffffff 48%, rgba(255, 92, 173, 0.35));
}

.card,
.faq-item,
.contact-choice,
.info-card,
.pricing-panel,
.hero-card {
  border-color: rgba(255, 182, 193, 0.55);
}

.icon-mark,
.faq-icon,
.number,
.price-value,
.pill,
.pricing-header {
  background: linear-gradient(135deg, #BF94E4, rgba(255, 92, 173, 0.42));
}

.btn-primary {
  background: var(--neutral-950);
  border-color: var(--neutral-950);
  color: var(--white);
}

.btn-primary:hover {
  background: #FFB6C1;
  border-color: #FFB6C1;
  color: var(--neutral-950);
}

.btn-light:hover,
.btn-white:hover {
  border-color: #FFB6C1;
  background: #BF94E4;
  color: var(--neutral-950);
}

.process-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 182, 193, 0.34);
}

.trust-bar {
  background: linear-gradient(90deg, #ffffff, rgba(191, 148, 228, 0.75), #ffffff);
  border-color: rgba(255, 182, 193, 0.36);
}

.dark-panel {
  border-left-color: #FFB6C1;
  background:
    radial-gradient(circle at 90% 18%, rgba(255, 182, 193, 0.10), transparent 34%),
    linear-gradient(180deg, #0c0a09 0%, #151110 100%);
}

.dark-panel::before {
  background: radial-gradient(circle, rgba(191, 148, 228, 0.16) 0%, rgba(255, 182, 193, 0.08) 38%, rgba(255, 182, 193, 0) 72%);
}

.expertise-item,
.pricing-note {
  border-color: rgba(255, 182, 193, 0.26);
  background: rgba(191, 148, 228, 0.05);
}

.skill-dot,
.stars {
  color: #FFB6C1;
}

.panel-note {
  color: rgba(191, 148, 228, 0.92);
}

.pricing-tab.active {
  background: #FF5CAD;
  color: var(--neutral-950);
}

.topbar {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(255, 182, 193, 0.36);
}

.mobile-toggle {
  border-color: #FFB6C1;
  background: #BF94E4;
}

a:focus-visible,
button:focus-visible {
  outline-color: #FFB6C1;
}

footer {
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 182, 193, 0.16), transparent 32%),
    var(--neutral-950);
}


/* Final refinement: black headings/subheadings, lavender MD panel, solid buttons */
h1,
h2,
h3,
.section-intro h1,
.section-intro h2,
.card h3,
.hero-card h2,
.contact-form h3,
.location-card h3,
.faq-question {
  color: var(--neutral-950);
}

.section-intro .label,
.location-card .label,
.brand span,
.eyebrow {
  color: var(--neutral-950);
}

.dark-panel {
  background: #BF94E4 !important;
  color: var(--neutral-950) !important;
  border-left-color: #FFB6C1;
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.10);
}

.dark-panel::before {
  background: radial-gradient(circle, rgba(255, 182, 193, 0.28) 0%, rgba(255, 182, 193, 0.10) 36%, rgba(255, 182, 193, 0) 72%);
}

.dark-panel::after {
  border-color: rgba(12, 10, 9, 0.08);
}

.dark-panel .label,
.dark-panel h2,
.dark-panel p,
.skill-text,
.panel-note {
  color: var(--neutral-950) !important;
}

.expertise-item {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 182, 193, 0.52);
}

.skill-dot {
  color: #FFB6C1;
  text-shadow: none;
}

.btn,
.btn-primary,
.btn-light,
.btn-white,
.pricing-tab,
.pricing-tab.active {
  background-image: none !important;
}

.btn-primary {
  background-color: var(--neutral-950) !important;
  border-color: var(--neutral-950) !important;
  color: var(--white) !important;
}

.btn-primary:hover {
  background-color: #FFB6C1 !important;
  border-color: #FFB6C1 !important;
  color: var(--neutral-950) !important;
}

.btn-light,
.btn-white {
  background-color: var(--white) !important;
  color: var(--neutral-950) !important;
}

.btn-light:hover,
.btn-white:hover {
  background-color: #BF94E4 !important;
  border-color: #FFB6C1 !important;
  color: var(--neutral-950) !important;
}

.pricing-tab {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.pricing-tab.active {
  background-color: #FF5CAD !important;
  color: var(--neutral-950) !important;
}


/* Neon-pink refinement: stronger #FF5CAD, lavender buttons/chips, white MD panel */
.pricing-tab,
.price-value,
.insurance,
.pill {
  background: #BF94E4 !important;
  background-image: none !important;
  border-color: rgba(191, 148, 228, 0.95) !important;
  color: var(--neutral-950) !important;
}

.pricing-tab.active {
  background: #FF5CAD !important;
  background-image: none !important;
  border-color: #FF5CAD !important;
  color: var(--neutral-950) !important;
}

.pricing-header,
.hero-card-inner,
.icon-mark,
.faq-icon,
.number {
  background: #FF5CAD !important;
  background-image: none !important;
  color: var(--neutral-950) !important;
}

.section-rose {
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 92, 173, 0.72) 0%, transparent 30%),
    linear-gradient(135deg, #ffffff 0%, rgba(255, 92, 173, 0.58) 46%, rgba(191, 148, 228, 0.66) 100%) !important;
}

.section-soft {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 92, 173, 0.58) 0%, transparent 28%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 92, 173, 0.38) 48%, rgba(191, 148, 228, 0.72) 100%) !important;
}

.hero {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 92, 173, 0.70) 0%, transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(255, 92, 173, 0.62) 0%, transparent 30%),
    linear-gradient(135deg, #ffffff 0%, rgba(255, 92, 173, 0.42) 42%, rgba(191, 148, 228, 0.60) 100%) !important;
}

.trust-bar {
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 92, 173, 0.68) 50%, #ffffff 100%) !important;
  border-color: rgba(255, 92, 173, 0.85) !important;
}

.card:hover,
.info-card:hover,
.faq-item:hover,
.contact-choice:hover {
  box-shadow: 0 18px 50px rgba(255, 92, 173, 0.28) !important;
  border-color: #FF5CAD !important;
}

.dark-panel {
  background: var(--white) !important;
  color: var(--neutral-950) !important;
  border-left-color: #FF5CAD !important;
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.10) !important;
}

.dark-panel::before {
  background: radial-gradient(circle, rgba(255, 92, 173, 0.36) 0%, rgba(255, 92, 173, 0.12) 38%, rgba(255, 92, 173, 0) 72%) !important;
}

.dark-panel::after {
  border-color: rgba(191, 148, 228, 0.85) !important;
}

.skill-dot {
  color: #BF94E4 !important;
  text-shadow: 0 0 10px rgba(191, 148, 228, 0.72) !important;
}

.expertise-item {
  background: rgba(191, 148, 228, 0.34) !important;
  border-color: rgba(191, 148, 228, 0.92) !important;
}

.btn-primary:hover {
  background-color: #FF5CAD !important;
  border-color: #FF5CAD !important;
  color: var(--neutral-950) !important;
}

.btn-light:hover,
.btn-white:hover {
  background-color: #FF5CAD !important;
  border-color: #FFB6C1 !important;
  color: var(--neutral-950) !important;
}

.stars,
.nav-links a:hover,
.phone-link:hover {
  color: #c9b900 !important;
}

a:focus-visible,
button:focus-visible {
  outline-color: #FF5CAD !important;
}


/* Hero refinement: restore soft reference-style background, not all yellow */
.hero {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 182, 193, 0.48) 0%, rgba(255, 182, 193, 0.22) 18%, transparent 38%),
    radial-gradient(circle at 52% 22%, rgba(191, 148, 228, 0.82) 0%, rgba(191, 148, 228, 0.48) 35%, transparent 64%),
    radial-gradient(circle at 94% 12%, rgba(255, 92, 173, 0.38) 0%, rgba(255, 92, 173, 0.16) 20%, transparent 42%),
    linear-gradient(110deg, #fff7fb 0%, #f7f5ff 48%, #fffef0 100%) !important;
}

.hero-card,
.hero-card-inner {
  background: rgba(255, 255, 255, 0.88) !important;
  background-image: none !important;
}

.hero-card-inner .number {
  background: #FF5CAD !important;
  color: var(--neutral-950) !important;
}

.eyebrow {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: #FFB6C1 !important;
  color: var(--neutral-950) !important;
}



/* Requested refinements: enhanced MD stars, lavender hero numbers, MD-style Before Treatment panel, pink pricing background */
.skill-dot {
  color: #BF94E4 !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  transform: translateY(-1px) scale(1.08) !important;
  text-shadow: 0 0 0 rgba(0,0,0,0), 0 0 14px rgba(191, 148, 228, 0.95), 0 1px 0 rgba(255,255,255,0.7) !important;
}

.hero-card-inner .number,
.hero-card .number {
  background: #BF94E4 !important;
  color: var(--neutral-950) !important;
  border: 1px solid rgba(255, 182, 193, 0.5) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45) !important;
}

/* Make Before Treatment panel visually match the MD panel */
.feature-copy {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff !important;
  color: var(--neutral-950) !important;
  border-left: 7px solid #FF5CAD !important;
  border-radius: var(--radius-xl) !important;
  padding: 42px !important;
  box-shadow: 0 24px 70px rgba(28, 25, 23, 0.10) !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left-style: solid !important;
}

.feature-copy::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 92, 173, 0.34) 0%, rgba(255, 92, 173, 0.12) 38%, rgba(255, 92, 173, 0) 72%);
  z-index: 0;
  pointer-events: none;
}

.feature-copy::after {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 0;
  border: 1px solid rgba(191, 148, 228, 0.85);
  border-radius: 24px;
  pointer-events: none;
}

.feature-copy > * {
  position: relative;
  z-index: 1;
}

.feature-copy .label,
.feature-copy h3,
.feature-copy p {
  color: var(--neutral-950) !important;
}

.feature-copy .label {
  margin-bottom: 18px !important;
}

/* Pricing section background from black to pink */
#pricing.section-dark {
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.32) 0%, transparent 26%),
    linear-gradient(135deg, #ffd2da 0%, #FFB6C1 52%, #ffc8d2 100%) !important;
  color: var(--neutral-950) !important;
}

#pricing .section-intro .label,
#pricing .section-intro h1,
#pricing .section-intro h2,
#pricing .section-intro p,
#pricing .pricing-note h3,
#pricing .pricing-note p {
  color: var(--neutral-950) !important;
}

#pricing .pricing-note {
  background: rgba(255, 255, 255, 0.62) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 18px 50px rgba(28, 25, 23, 0.08) !important;
}

#pricing .pricing-tab {
  background: #BF94E4 !important;
  color: var(--neutral-950) !important;
  border-color: rgba(191, 148, 228, 0.96) !important;
}

#pricing .pricing-tab.active {
  background: #FF5CAD !important;
  border-color: #FF5CAD !important;
  color: var(--neutral-950) !important;
}

@media (max-width: 640px) {
  .feature-copy {
    padding: 34px !important;
  }
}

/* Premium refinements: service accents, pricing contrast, motion, MD badge, contact trust line */
#services .card {
  position: relative;
  overflow: hidden;
  border-top: 4px solid #FF5CAD !important;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

#services .card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 62px;
  height: 62px;
  background: radial-gradient(circle at 100% 0%, rgba(255, 92, 173, 0.30), rgba(255, 92, 173, 0) 68%);
  pointer-events: none;
}

.card,
.info-card,
.faq-item,
.contact-choice,
.pricing-panel,
.image-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover,
.info-card:hover,
.faq-item:hover,
.contact-choice:hover,
.pricing-panel:hover,
.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(255, 92, 173, 0.16) !important;
  border-color: rgba(255, 92, 173, 0.42) !important;
}

.btn,
.pricing-tab,
.pill {
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.btn:hover,
.pricing-tab:hover,
.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 92, 173, 0.14);
}

#pricing.section-dark {
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.35) 0%, transparent 24%),
    linear-gradient(135deg, #ffcfe3 0%, #FFB6C1 54%, #ffd8e8 100%) !important;
  color: var(--neutral-950) !important;
}

#pricing .pricing-panel {
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.78) !important;
  box-shadow: 0 26px 76px rgba(28, 25, 23, 0.13) !important;
}

#pricing .pricing-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(191, 148, 228, 0.26);
}

#pricing .pricing-tab {
  background: #BF94E4 !important;
  border-color: #BF94E4 !important;
  color: var(--neutral-950) !important;
  box-shadow: 0 10px 24px rgba(191, 148, 228, 0.18);
}

#pricing .pricing-tab.active {
  background: #FF5CAD !important;
  border-color: #FF5CAD !important;
  color: #ffffff !important;
  box-shadow: 0 14px 32px rgba(255, 92, 173, 0.26);
}

#pricing .price-value {
  background: #BF94E4 !important;
  color: var(--neutral-950) !important;
  border: 1px solid rgba(191, 148, 228, 0.8) !important;
}

#pricing .pricing-note {
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.86) !important;
  color: var(--neutral-950) !important;
}

.physician-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 92, 173, 0.34);
  color: var(--neutral-950);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.physician-badge::before {
  content: "✦";
  color: #FF5CAD;
  font-size: 17px;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 92, 173, 0.28);
}

.contact-trust-line {
  margin: -8px 0 22px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(191, 148, 228, 0.16);
  border: 1px solid rgba(191, 148, 228, 0.34);
  color: var(--neutral-800);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.icon-mark,
.stars,
.skill-dot {
  color: #FF5CAD !important;
}

.icon-mark {
  background: rgba(191, 148, 228, 0.18) !important;
  border: 1px solid rgba(191, 148, 228, 0.30);
}

.stars {
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 0 14px rgba(255, 92, 173, 0.18);
}

@media (max-width: 640px) {
  .contact-trust-line {
    border-radius: 18px;
    line-height: 1.5;
  }
}


/* Smoother, faster, slightly stronger hover motion */
.card,
.info-card,
.faq-item,
.contact-choice,
.pricing-panel,
.image-card,
#services .card {
  transition:
    transform 150ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 150ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 150ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform;
}

.card:hover,
.info-card:hover,
.faq-item:hover,
.contact-choice:hover,
.pricing-panel:hover,
.image-card:hover {
  transform: translateY(-7px) scale(1.01) !important;
  box-shadow: 0 28px 68px rgba(255, 92, 173, 0.20) !important;
  border-color: rgba(255, 92, 173, 0.50) !important;
}

.btn,
.pricing-tab,
.pill {
  transition:
    transform 135ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 135ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 135ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 135ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform;
}

.btn:hover,
.pricing-tab:hover,
.pill:hover {
  transform: translateY(-4px) scale(1.025) !important;
  box-shadow: 0 16px 34px rgba(255, 92, 173, 0.20) !important;
}

.process-item {
  transition:
    transform 145ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 145ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  will-change: transform;
}

.process-item:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 40px rgba(255, 92, 173, 0.16) !important;
}


/* Stronger hover pop: faster lift, subtle scale, deeper glow */
.card,
.info-card,
.faq-item,
.contact-choice,
.pricing-panel,
.image-card,
#services .card,
.process-item {
  transition:
    transform 115ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 115ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 115ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 115ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, box-shadow;
}

.card:hover,
.info-card:hover,
.faq-item:hover,
.contact-choice:hover,
.pricing-panel:hover,
.image-card:hover {
  transform: translateY(-10px) scale(1.018) !important;
  box-shadow:
    0 34px 78px rgba(255, 92, 173, 0.24),
    0 10px 28px rgba(191, 148, 228, 0.14) !important;
  border-color: rgba(255, 92, 173, 0.62) !important;
  filter: saturate(1.04);
}

.process-item:hover {
  transform: translateY(-8px) scale(1.018) !important;
  box-shadow:
    0 24px 52px rgba(255, 92, 173, 0.22),
    0 8px 22px rgba(191, 148, 228, 0.12) !important;
}

.btn,
.pricing-tab,
.pill {
  transition:
    transform 105ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 105ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 105ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 105ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  will-change: transform, box-shadow;
}

.btn:hover,
.pricing-tab:hover,
.pill:hover {
  transform: translateY(-5px) scale(1.045) !important;
  box-shadow:
    0 20px 42px rgba(255, 92, 173, 0.26),
    0 6px 16px rgba(191, 148, 228, 0.16) !important;
}

.icon-mark,
.stars,
.skill-dot {
  transition: transform 115ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 115ms ease !important;
}

.card:hover .icon-mark,
.reviews-grid .card:hover .stars,
.expertise-item:hover .skill-dot {
  transform: scale(1.16) rotate(-3deg);
  text-shadow: 0 0 18px rgba(255, 92, 173, 0.32) !important;
}


/* Interactive upgrade: before/after slider, estimator, booking assistant, animated FAQ, reveal-on-scroll */
.reveal-section,
.card,
.info-card,
.image-card,
.feature-copy,
.pricing-panel,
.pricing-note,
.contact-form {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.ba-slider {
  position: relative;
  max-width: 940px;
  height: min(520px, 58vw);
  min-height: 340px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 92, 173, 0.28);
  background: #ffffff;
}

.ba-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.ba-before {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,182,193,0.10)),
    url("images/background-section-1.webp");
  background-position: center center;
}

.ba-after {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,92,173,0.10)),
    url("images/background-section-2.webp");
  background-position: center center;
  clip-path: inset(0 0 0 52%);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 3px;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(255, 92, 173, 0.25), 0 0 28px rgba(255,92,173,.38);
  pointer-events: none;
}

.ba-divider::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FF5CAD;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(255,92,173,.28);
}

.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.ba-label {
  position: absolute;
  top: 22px;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,92,173,.22);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.ba-label-before { left: 22px; }
.ba-label-after { right: 22px; }

.price-estimator {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 24px 58px rgba(28,25,23,.10);
  color: var(--neutral-950);
}

.estimator-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--neutral-950);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.price-estimator h3 {
  font-size: 28px;
  line-height: 1.15;
}

.price-estimator p {
  margin-top: 8px;
  color: var(--neutral-600);
}

.estimator-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.estimator-options button {
  border: 1px solid rgba(191,148,228,.48);
  border-radius: 999px;
  background: #BF94E4;
  color: var(--neutral-950);
  padding: 11px 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 120ms cubic-bezier(.16,1,.3,1), box-shadow 120ms ease, background-color 120ms ease;
}

.estimator-options button span {
  opacity: .72;
  margin-left: 5px;
}

.estimator-options button:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 28px rgba(255,92,173,.18);
}

.estimator-options button.active {
  background: #FF5CAD;
  color: #ffffff;
  border-color: #FF5CAD;
}

.estimator-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(28,25,23,.10);
}

.estimator-result span {
  display: block;
  color: var(--neutral-600);
  font-size: 13px;
  font-weight: 800;
}

.estimator-result strong {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-top: 4px;
}

.estimator-note {
  font-size: 13px;
}

.booking-assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 160;
  display: grid;
  justify-items: end;
  gap: 12px;
}

.assistant-toggle {
  border: 0;
  border-radius: 999px;
  padding: 15px 20px;
  background: #FF5CAD;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 22px 48px rgba(255,92,173,.30);
  cursor: pointer;
  transition: transform 120ms cubic-bezier(.16,1,.3,1), box-shadow 120ms ease;
}

.assistant-toggle:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 28px 58px rgba(255,92,173,.38);
}

.assistant-panel {
  width: min(320px, calc(100vw - 36px));
  border-radius: 24px;
  padding: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,92,173,.24);
  box-shadow: 0 28px 80px rgba(28,25,23,.18);
  backdrop-filter: blur(16px);
  animation: assistantIn 160ms cubic-bezier(.16,1,.3,1);
}

@keyframes assistantIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.assistant-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.assistant-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(28,25,23,.10);
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.assistant-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--neutral-800);
  font-weight: 800;
}

.assistant-panel a:hover {
  background: rgba(191,148,228,.16);
}

.assistant-panel .assistant-book {
  margin-top: 8px;
  background: #FF5CAD;
  color: #fff;
  text-align: center;
}

.faq-answer {
  display: block !important;
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transition: max-height 320ms cubic-bezier(.22,1,.36,1), padding 320ms ease, opacity 220ms ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 22px;
  opacity: 1;
}

.faq-icon {
  transition: transform 180ms cubic-bezier(.22,1,.36,1), background-color 180ms ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg) scale(1.08);
  background: #FF5CAD !important;
  color: #ffffff !important;
}

@media (max-width: 640px) {
  .ba-slider {
    min-height: 300px;
  }

  .estimator-result {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-assistant {
    right: 14px;
    bottom: 92px;
  }
}


/* Before & After photo gallery */
.ba-gallery {
  max-width: 1060px;
  margin: 0 auto;
}

.ba-gallery-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.ba-gallery-tab {
  border: 1px solid rgba(191, 148, 228, 0.42);
  border-radius: 999px;
  background: rgba(191, 148, 228, 0.16);
  color: var(--neutral-950);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 115ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 115ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 115ms ease,
    border-color 115ms ease;
}

.ba-gallery-tab:hover {
  transform: translateY(-4px) scale(1.035);
  box-shadow: 0 16px 32px rgba(255, 92, 173, 0.18);
}

.ba-gallery-tab.active {
  background: #FF5CAD;
  color: #ffffff;
  border-color: #FF5CAD;
  box-shadow: 0 16px 34px rgba(255, 92, 173, 0.22);
}

.ba-gallery-stage {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 92, 173, 0.24);
  background: #ffffff;
  min-height: 320px;
}

.ba-gallery-slide {
  display: none;
  margin: 0;
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ba-gallery-slide.active {
  display: block;
  opacity: 1;
  transform: scale(1);
  animation: baPhotoIn 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes baPhotoIn {
  from { opacity: 0; transform: translateY(8px) scale(0.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.ba-gallery-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.ba-gallery-slide figcaption {
  /* readability bump */
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 92, 173, 0.22);
  color: var(--neutral-950);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.ba-gallery-note {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--neutral-600);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 640px) {
  .ba-gallery-slide img {
    aspect-ratio: 4 / 3;
  }

  .ba-gallery-slide figcaption {
    left: 14px;
    top: 14px;
    font-size: 13px;
  }
}


/* Auto-sliding before & after gallery */
.ba-gallery-stage {
  position: relative;
}

.ba-gallery-slide {
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ba-gallery-slide.active {
  animation: baPhotoSlideIn 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes baPhotoSlideIn {
  from {
    opacity: 0;
    transform: translateX(18px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ============================================================
   Accessibility: reduced-motion + JS-off fallback
   ============================================================ */

/* Respect users who prefer reduced motion:
   reveal elements appear immediately, transitions/animations minimized. */
@media (prefers-reduced-motion: reduce) {
  .reveal-section,
  .card,
  .info-card,
  .image-card,
  .feature-copy,
  .pricing-panel,
  .pricing-note,
  .contact-form {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
