@import url("css/tokens.css");

/* =========================================================
   HSR Dental Booth — Custom Styles
   Design tokens: css/tokens.css (#0B1F33, #0D7C8C, #E8F4F6, …)
   Fonts: DM Serif Display + Source Sans 3 (Google Fonts in HTML)
   ========================================================= */

@import url("css/page-service.css");

:root {
  --header-scroll-margin: 120px;
  --sticky-contact-bar-height: 64px;
}

/* Breadcrumb: single header offset for inner pages (hero sections must not repeat it) */
.breadcrumb-nav {
  padding-top: calc(var(--header-scroll-margin, 120px) + 0.5rem);
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .breadcrumb-nav {
    margin-bottom: 1rem;
  }
}

.breadcrumb-nav + .hero-split-section,
.breadcrumb-nav + #service-hero {
  padding-top: 0;
}

.breadcrumb-nav + .scroll-reveal-section,
.breadcrumb-nav + section {
  padding-top: 1.5rem;
}

@media (min-width: 1024px) {
  .breadcrumb-nav + .scroll-reveal-section,
  .breadcrumb-nav + section {
    padding-top: 2rem;
  }
}

/* Hero top clearance: synced with fixed header stack (topbar + nav) */
.hero-split-section,
.hero-carousel-section {
  padding-top: var(--header-scroll-margin, 120px);
}
.hero-carousel-section--fullbleed {
  padding-top: var(--header-scroll-margin, 120px);
  padding-bottom: 0;
  overflow: visible;
}

/* Anchor padding synced with JS --header-scroll-margin; smooth scroll handled in JS only */
html {
  scroll-behavior: auto;
  scroll-padding-top: var(--header-scroll-margin);
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(var(--sticky-contact-bar-height, 64px) + env(safe-area-inset-bottom, 0));
  }
}

/* Native hash jumps + stacking: each section owns its layer so sliders don’t visually overlap the next block */
body > section[id] {
  position: relative;
  isolation: isolate;
  scroll-margin-top: var(--header-scroll-margin);
}

/* In-section anchor: land on treatment cards, not the stats row above */
#treatment-cards {
  scroll-margin-top: var(--header-scroll-margin);
}

/* Scrollbar hide for horizontal scroll tracks */
.hide-scrollbar::-webkit-scrollbar,
[class*="overflow-x-auto"]::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar,
[class*="overflow-x-auto"] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---- Scroll-triggered animations ---- */
/* Safe default: visible. JS-enabled mode applies the hidden start state. */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js-enabled .animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
}
.js-enabled .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Anchor nav: reveal in place without shifting scroll target mid-glide */
html.anchor-navigating .animate-on-scroll {
  transition: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Stagger children in grid layouts */
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.6s; }

/* Staggered grid reveals */
.animate-stagger > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.95s ease-out, transform 0.95s ease-out;
}
.js-enabled .animate-stagger:not(.visible) > * {
  opacity: 0;
  transform: translateY(28px);
}
.js-enabled .animate-stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.js-enabled .animate-stagger.visible > *:nth-child(2) { transition-delay: 0.24s; }
.js-enabled .animate-stagger.visible > *:nth-child(3) { transition-delay: 0.38s; }
.js-enabled .animate-stagger.visible > *:nth-child(4) { transition-delay: 0.52s; }
.js-enabled .animate-stagger.visible > *:nth-child(5) { transition-delay: 0.66s; }
.js-enabled .animate-stagger.visible > *:nth-child(6) { transition-delay: 0.8s; }
.js-enabled .animate-stagger.visible > *:nth-child(7) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(8) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(9) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(10) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(11) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(12) { transition-delay: 0.9s; }
.js-enabled .animate-stagger.visible > *:nth-child(n+13) { transition-delay: 0.9s; }

/* Section wrapper: title reveals first, then nested stagger grids */
.scroll-reveal-section .scroll-reveal-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.js-enabled .scroll-reveal-section:not(.visible) .scroll-reveal-header {
  opacity: 0;
  transform: translateY(32px);
}
.js-enabled .scroll-reveal-section.visible .scroll-reveal-header {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .js-enabled .animate-stagger:not(.visible) > *,
  .js-enabled .animate-stagger.visible > *,
  .js-enabled .scroll-reveal-section:not(.visible) .scroll-reveal-header,
  .js-enabled .scroll-reveal-section.visible .scroll-reveal-header {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---- Site shell: topbar + flat header ---- */
.site-header,
#site-header {
  overflow: visible;
}

.site-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header-inner {
  box-shadow: 0 1px 0 rgba(11, 31, 51, 0.04);
}

#site-header.scrolled .site-header-inner {
  box-shadow: 0 4px 20px rgba(11, 31, 51, 0.08);
}

#site-header.scrolled #nav-inner {
  height: 60px;
}

@media (min-width: 1024px) {
  #site-header.scrolled #nav-inner {
    height: 68px;
  }
}

#site-header.scrolled #site-topbar {
  display: none;
}

/* ---- Sticky contact bar (WhatsApp | Call | Book) — mobile only ---- */
.sticky-contact-bar {
  display: none;
}

@media (max-width: 767px) {
  .sticky-contact-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 0 0.625rem calc(0.625rem + env(safe-area-inset-bottom, 0));
    pointer-events: none;
  }

  .sticky-contact-bar-inner {
    pointer-events: auto;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.625rem 0.5rem;
    border-radius: 0;
    background: #fff;
    border: none;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 -4px 24px rgba(11, 31, 51, 0.12);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.sticky-contact-item {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.5rem 0.625rem;
  border: none;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.sticky-contact-item:active {
  transform: scale(0.98);
}

.sticky-contact-whatsapp {
  background: #25D366;
  color: #fff;
}

.sticky-contact-whatsapp:hover {
  background: #20bd5a;
}

.sticky-contact-call {
  background: #1976d2;
  color: #fff;
}

.sticky-contact-call:hover {
  background: #1565c0;
}

.sticky-contact-book {
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
}

.sticky-contact-book:hover {
  background: #f0f7ff;
}

/* ---- Section title dividers ---- */
.section-title-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.section-title-divider-content {
  flex: 1;
  min-width: 0;
}

.section-title-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #CBD5E1, transparent);
  max-width: 120px;
}

.section-title-divider--light .section-title-divider-line {
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.section-title-divider--light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
  .section-title-divider {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-title-divider-line {
    display: none;
  }
}

/* ---- Navbar scroll states ---- */
#site-header.scrolled #nav-inner {
  margin-top: 0;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- Mobile menu transition ---- */
#mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 60;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.12);
}
#mobile-menu.open {
  display: block;
  max-height: 80vh;
  opacity: 1;
  overflow-y: auto;
}

/* ---- FAQ accordion ---- */
.faq-list,
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1.5rem;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

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

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.faq-trigger:hover,
.faq-trigger:focus-visible {
  color: var(--color-accent);
  outline: none;
}

.faq-trigger:focus-visible {
  box-shadow: 0 0 0 2px var(--color-accent-light), 0 0 0 4px var(--color-accent);
  border-radius: 4px;
}

.faq-label {
  font-weight: 600;
  font-size: 1.0625rem;
  line-height: 1.45;
  flex: 1;
  min-width: 0;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform 0.2s ease;
}

.faq-icon-v {
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}

.faq-item.is-open .faq-icon-v {
  opacity: 0;
  transform: scaleY(0);
}

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

.faq-answer {
  margin: 0;
  padding: 0 0 1rem;
  color: var(--color-body);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-label {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.875rem;
  }
}

/* Service landing pages: faq-grid inside container */
.page-service .faq-grid {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  gap: 0 1.375rem;
}

.page-service .faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 0;
  overflow: hidden;
}

.page-service .faq-item:last-child {
  border-bottom: 1px solid var(--color-border);
}

.page-service .faq-trigger {
  padding: 1rem 1.25rem;
}

.page-service .faq-trigger:hover {
  background: #F7FBFF;
}

.page-service .faq-answer {
  padding: 0 1.25rem 1rem;
}

@media (max-width: 620px) {
  .page-service .faq-trigger {
    padding: 0.875rem 1rem;
  }

  .page-service .faq-answer {
    padding: 0 1rem 0.875rem;
  }
}

/* ---- Services masonry layout ---- */
.service-masonry {
  column-count: 1;
  column-gap: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) {
  .service-masonry {
    column-count: 2;
    column-gap: 28px;
  }
}
@media (min-width: 1024px) {
  .service-masonry {
    column-count: 3;
    column-gap: 32px;
  }
}
.service-card {
  break-inside: avoid;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  background-color: #ffffff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-masonry .service-card:last-child {
  margin-bottom: 0;
}
.service-card:hover {
  border-color: rgba(19, 118, 248, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.service-card-image-wrap {
  aspect-ratio: 400 / 260;
  overflow: hidden;
  background-color: #f3f4f6;
}
.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dental-dark, #1a1a1a);
  margin: 0;
  padding: 18px 20px 8px;
}
.service-card-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--dental-body, #4b5563);
  margin: 0;
  padding: 0 20px 20px;
}

/* (doctor card text now lives below the image; no special overlay styles needed) */

.team-card-photo-wrap {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--dental-light, #E6F6FE);
  position: relative;
}

.team-card-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.team-card {
  overflow: visible;
}

.service-pillar-icon {
  width: 28px;
  height: 28px;
  color: #1376F8;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.aspect-box-fit img,
.aspect-box-fit video {
  object-fit: contain;
  object-position: center;
  background: var(--dental-light, #E6F6FE);
}

.aspect-box-portrait-4-5 {
  aspect-ratio: 4 / 5;
}

.aspect-box-portrait-9-16 {
  aspect-ratio: 9 / 16;
}

.aspect-box-portrait-2-3 {
  aspect-ratio: 2 / 3;
}

/* ---- Hero circle image (fill frame, no letterboxing) ---- */
.hero-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  display: block;
}

/* ---- Hero rounded card (natural aspect ratio, no letterboxing) ---- */
.hero-rounded-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(1, 22, 50, 0.08);
}

/* Service landing hero: breadcrumbs already clear the fixed header */
.page-service .hero-split-section,
.page-implants .hero-split-section {
  padding-top: 0;
}

.page-service .hero-split-text,
.page-implants .hero-split-text .mt-8 {
  margin-top: 1.25rem;
}
@media (max-width: 1023px) {
  .page-service .hero-split-visual,
.page-implants .hero-split-visual {
    max-width: min(100%, 260px);
    margin-left: auto;
    margin-right: auto;
  }
  .page-service .hero-rounded-img,
.page-implants .hero-rounded-img {
    max-height: min(48vh, 360px);
    width: 100%;
    object-fit: cover;
    object-position: center 15%;
  }
  .page-service .hero-split-text,
.page-implants .hero-split-text h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  .page-service .hero-split-text,
.page-implants .hero-split-text ul {
    margin-top: 1rem;
  }
}

/* ---- Mobile FABs (legacy — replaced by sticky contact bar) ---- */
#mobile-fabs .mobile-fab {
  flex-shrink: 0;
}

/* ---- Split hero: mobile layout ---- */
@media (max-width: 1023px) {
  .hero-split-section .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-split-visual {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
  }

  .hero-split-text .cta-primary,
  .hero-split-text .cta-whatsapp,
  .hero-split-text .cta-phone {
    width: 100%;
    max-width: 100%;
  }

  #mobile-fabs.mobile-fabs--at-hero {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.5rem);
  }

  #mobile-fabs.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  #mobile-fabs.is-visible {
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  #mobile-fabs.mobile-fabs--at-hero {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-animate-bounce,
  .fab-animate-pulse {
    animation: none !important;
  }
}

/* ---- Hero photo slider ---- */
.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 240px;
  max-height: 55vh;
  background-color: #E8F4FC;
}

.hero-slider--fullbleed {
  aspect-ratio: unset;
  min-height: 0;
  max-height: none;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background-color: #E8F4F6;
}

@media (min-width: 1024px) {
  .hero-slider:not(.hero-slider--fullbleed) {
    max-height: 60vh;
  }
}

.hero-slider-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider--fullbleed .hero-slider-inner {
  position: relative;
  inset: auto;
  height: auto;
}

.hero-slider-inner .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  background-color: #E8F4FC;
}
.hero-slider-inner .hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-slider--fullbleed .hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  inset: auto;
  bottom: auto;
}

.hero-slider--fullbleed .hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Full-bleed banner images: natural height on mobile so baked-in headlines stay visible */
.hero-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.hero-slider--fullbleed .hero-slide-link {
  position: static;
  display: block;
}

.hero-slider--fullbleed .hero-slide-img {
  position: static;
  width: 100%;
  height: auto;
  object-fit: initial;
}

.hero-slide-caption {
  display: none;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.hero-slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.hero-slider-arrow:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.hero-slider-prev {
  left: 0.75rem;
}
.hero-slider-next {
  right: 0.75rem;
}

.hero-slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
}
.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-slider-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.hero-slider-dot.active {
  background-color: #fff;
  transform: scale(1.2);
}
.hero-slider-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.hero-carousel-section--fullbleed {
  padding-bottom: 0;
  overflow: visible;
}

.hero-carousel-section .hero-slider:not(.hero-slider--fullbleed) {
  box-shadow: 0 10px 40px rgba(11, 31, 51, 0.08);
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  display: block;
  color: inherit;
  text-decoration: none;
}

/* ---- Homepage: floating trust-stats marquee ribbon ---- */
.trust-stats-ribbon-wrap {
  position: relative;
  z-index: 5;
  margin-top: -1.5rem;
  padding: 0 1.5rem;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .trust-stats-ribbon-wrap {
    padding: 0 5rem;
    margin-top: -1.75rem;
  }
}

.trust-stats-marquee {
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 32px rgba(11, 31, 51, 0.12);
  padding: 0.65rem 0;
  position: relative;
  pointer-events: auto;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-stats-marquee::before,
.trust-stats-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 48px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trust-stats-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0));
  border-radius: 999px 0 0 999px;
}

.trust-stats-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0));
  border-radius: 0 999px 999px 0;
}

.trust-stats-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: trustStatsScroll 24s linear infinite;
  padding-left: 0.75rem;
}

.trust-stats-marquee:hover .trust-stats-track {
  animation-play-state: paused;
}

@keyframes trustStatsScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.trust-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  border: 1px solid #ddebf8;
  color: #0b1f33;
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(11, 31, 51, 0.06);
}

.trust-stat-icon {
  height: 1.125rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .trust-stats-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 0.75rem;
  }
}

/* ---- About / Contact: amenities marquee + payment chips ---- */
.clinic-comfort-section {
  overflow: hidden;
}

.clinic-amenities-marquee {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 24px rgba(11, 31, 51, 0.06);
  padding: 0.85rem 0;
  position: relative;
}

.clinic-amenities-marquee::before,
.clinic-amenities-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 56px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clinic-amenities-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 40%, rgba(255, 255, 255, 0));
  border-radius: 16px 0 0 16px;
}

.clinic-amenities-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 40%, rgba(255, 255, 255, 0));
  border-radius: 0 16px 16px 0;
}

.clinic-amenities-track {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  animation: clinicAmenitiesScroll 36s linear infinite;
  padding: 0 0.75rem;
}

.clinic-amenities-marquee:hover .clinic-amenities-track {
  animation-play-state: paused;
}

@keyframes clinicAmenitiesScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.clinic-amenity-pill,
.clinic-payment-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
}

.clinic-amenity-pill {
  background: linear-gradient(180deg, #f0fafb, #e8f6f8);
  border: 1px solid #b8e4ea;
  color: #0a5c68;
}

.clinic-payment-pill {
  background: #fff;
  border: 1px solid #dde4ec;
  color: #0b1f33;
  box-shadow: 0 2px 8px rgba(11, 31, 51, 0.04);
}

.clinic-pill-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.clinic-payments-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 720px;
  margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .clinic-amenities-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

/* ---- Homepage: team preview cards + mobile carousel ---- */
.team-preview-card {
  max-width: 100%;
}

.team-preview-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.team-preview-slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 0.5rem;
}

.team-preview-slider-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-preview-slider-inner {
  position: relative;
  min-height: 420px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.team-preview-slider-inner .team-preview-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  display: flex;
  align-items: stretch;
}

.team-preview-slider-inner .team-preview-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.team-preview-slider-inner .team-preview-slide .team-preview-card {
  width: 100%;
}

.team-preview-slider-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid #E2E8F0;
  border-radius: 50%;
  background: #fff;
  color: #0B1F33;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-preview-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.team-preview-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #CBD5E1;
  cursor: pointer;
  padding: 0;
}

.team-preview-slider-dot.active {
  background: #0D7C8C;
  transform: scale(1.2);
}

@media (max-width: 640px) {
  .team-preview-slider-row {
    gap: 0.25rem;
  }

  .team-preview-slider-arrow {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 768px) {
  .hero-slide-caption {
    display: none;
  }
}

.intro-band-section {
  padding-top: 1.25rem;
}

@media (max-width: 640px) {
  .intro-band-section {
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

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

.why-choose-grid {
  align-items: stretch;
}

.why-choose-card {
  height: 100%;
}

.why-choose-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---- Homepage: service highlight tiles ---- */
.home-service-tile {
  display: flex;
  text-decoration: none;
  min-height: 200px;
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.12);
}

.home-service-tile-image {
  align-self: stretch;
  min-height: 100%;
}

/* ---- Homepage: gallery preview ---- */
.home-gallery-preview-card {
  box-shadow: 0 8px 24px rgba(11, 31, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-gallery-preview-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 31, 51, 0.1);
}

/* ---- Reviews slider: flex layout, controls centered with card ---- */
.reviews-slider {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
  padding-bottom: 1.5rem;
}
.reviews-slider-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.reviews-slider-inner {
  position: relative;
  flex: 1;
  min-width: 0;
  transition: height 0.35s ease;
}
.reviews-slider-inner .reviews-slide {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  display: flex;
  align-items: stretch;
}
.reviews-slider-inner .reviews-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  pointer-events: auto;
}
.reviews-slider-inner .reviews-slide .reviews-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.reviews-card {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  box-sizing: border-box;
}
.reviews-card-text {
  flex: 1;
  min-height: 0;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.reviews-avatar {
  background-color: #E5E7EB;
}

.reviews-card--featured {
  position: relative;
  align-items: center;
}

.reviews-avatar--featured {
  border: 4px solid #fff;
  box-shadow: 0 6px 20px rgba(11, 31, 51, 0.12);
  flex-shrink: 0;
}

.reviews-google-badge {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.reviews-card-text--featured {
  font-style: italic;
}

/* ---- Carousel slide stagger enter ---- */
@keyframes carouselStaggerIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-slide-enter .carousel-stagger-item {
  opacity: 0;
  animation: carouselStaggerIn 0.45s ease forwards;
}

.carousel-slide-enter .carousel-stagger-item:nth-child(1) {
  animation-delay: 0.05s;
}

.carousel-slide-enter .carousel-stagger-item:nth-child(2) {
  animation-delay: 0.12s;
}

.carousel-slide-enter .carousel-stagger-item:nth-child(3) {
  animation-delay: 0.19s;
}

.carousel-slide-enter .carousel-stagger-item:nth-child(4) {
  animation-delay: 0.26s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-slide-enter .carousel-stagger-item {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ---- Promo offer section (homepage) ---- */
.promo-offer-section {
  position: relative;
  overflow: hidden;
  background: #0B1F33;
}

.promo-offer-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(13, 124, 140, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(13, 124, 140, 0.2) 0%, transparent 65%),
    linear-gradient(135deg, #0B1F33 0%, #0D3D4A 50%, #0B1F33 100%);
  pointer-events: none;
}

.promo-offer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.promo-offer-pill:hover {
  background: rgba(13, 124, 140, 0.35);
  border-color: rgba(13, 124, 140, 0.6);
}

.promo-offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.promo-offer-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(13, 124, 140, 0.5);
  transform: translateY(-2px);
}

.promo-offer-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(13, 124, 140, 0.2);
}

.promo-offer-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.promo-offer-card-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease;
}

.promo-offer-card:hover .promo-offer-card-link {
  color: #5ec4d4;
}

.promo-offer-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #0B1F33;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.promo-offer-btn-primary:hover {
  background: #E8F4F6;
}

.promo-offer-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.promo-offer-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---- Pre-footer CTA band ---- */
.pre-footer-cta {
  background: linear-gradient(135deg, #0D7C8C 0%, #0B1F33 55%, #0B1F33 100%);
}

.reviews-slider-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: rgba(1, 22, 50, 0.08);
  color: #011632;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.reviews-slider-arrow:hover {
  background-color: rgba(1, 22, 50, 0.15);
  color: #011632;
}
.reviews-slider-arrow:focus-visible {
  outline: 2px solid #1376F8;
  outline-offset: 2px;
}
.reviews-slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.reviews-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(1, 22, 50, 0.25);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.reviews-slider-dot:hover {
  background-color: rgba(1, 22, 50, 0.4);
}
.reviews-slider-dot.active {
  background-color: #1376F8;
  transform: scale(1.2);
}
.reviews-slider-dot:focus-visible {
  outline: 2px solid #1376F8;
  outline-offset: 2px;
}

.reviews-google-stars {
  display: block;
  max-width: 140px;
  height: auto;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .reviews-slider-row {
    gap: 0;
  }
  .reviews-slider-arrow {
    display: none;
  }
  .reviews-card {
    padding: 20px !important;
  }
  .reviews-slider-inner .reviews-slide .reviews-card {
    width: 100%;
    max-width: 100%;
  }
}

/* ---- Image containment: prevent stretch and overflow ---- */
img[class*="object-cover"],
.img-cover {
  object-fit: cover;
  object-position: center;
}
.aspect-box {
  position: relative;
  overflow: hidden;
}
.aspect-box img,
.aspect-box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.aspect-box-4-3 {
  aspect-ratio: 4 / 3;
}
.aspect-box-16-10 {
  aspect-ratio: 16 / 10;
}
.aspect-box-1-1 {
  aspect-ratio: 1 / 1;
}

/* Gallery: horizontal scroll (legacy / unused if gallery is slider) */
.gallery-scroll {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll-item {
  width: 220px;
  min-width: 220px;
  flex: 0 0 220px;
}
@media (min-width: 640px) {
  .gallery-scroll-item {
    width: 260px;
    min-width: 260px;
    flex: 0 0 260px;
  }
}

/* ---- Gallery slider (same pattern as hero) ---- */
.gallery-slider {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 260px;
  max-height: 70vh;
  background-color: #E6F6FE;
}
@media (min-width: 768px) {
  .gallery-slider {
    max-height: 75vh;
  }
}

.gallery-slider-inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gallery-slider-inner .gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  background-color: #E6F6FE;
}
.gallery-slider-inner .gallery-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.gallery-slider .gallery-item {
  height: 100%;
  width: 100%;
}
.gallery-slider .gallery-item:hover {
  transform: none;
  box-shadow: none;
}
.gallery-slider .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.gallery-slider .gallery-item:hover img {
  transform: none;
}

.gallery-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background-color: rgba(1, 22, 50, 0.5);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.gallery-slider-arrow:hover {
  background-color: rgba(1, 22, 50, 0.75);
}
.gallery-slider-arrow:focus-visible {
  outline: 2px solid #1376F8;
  outline-offset: 2px;
}
.gallery-slider-prev {
  left: 0.75rem;
}
.gallery-slider-next {
  right: 0.75rem;
}

.gallery-slider-dots {
  position: absolute;
  bottom: 0.75rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 3;
}
.gallery-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: rgba(1, 22, 50, 0.35);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.gallery-slider-dot:hover {
  background-color: rgba(1, 22, 50, 0.55);
}
.gallery-slider-dot.active {
  background-color: #1376F8;
  transform: scale(1.2);
}
.gallery-slider-dot:focus-visible {
  outline: 2px solid #1376F8;
  outline-offset: 2px;
}

/* Gallery: hover = tile comes out slightly (non-slider gallery items) */
.gallery-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.gallery-item img {
  transition: transform 0.35s ease-out;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
/* Clickable images: open in fullscreen */
.hero-slider .hero-slide-img,
.gallery-item img,
.service-card-image {
  cursor: pointer;
}

/* ---- Fullscreen image lightbox ---- */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem 4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.image-lightbox:not(.hidden) {
  opacity: 1;
  visibility: visible;
}
.image-lightbox.hidden {
  pointer-events: none;
}
.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 22, 50, 0.92);
  cursor: pointer;
}
.image-lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}
.image-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}
.image-lightbox-close:hover,
.image-lightbox-close:focus {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.image-lightbox-prev,
.image-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.image-lightbox-prev:hover,
.image-lightbox-prev:focus,
.image-lightbox-next:hover,
.image-lightbox-next:focus {
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
}
.image-lightbox-prev {
  left: 1rem;
}
.image-lightbox-next {
  right: 1rem;
}
.image-lightbox-prev.disabled,
.image-lightbox-next.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ---- Booking card + multi-step form ---- */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking-overlay.hidden {
  display: none;
}

.booking-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 22, 50, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.booking-overlay-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 720px;
  padding: 20px 12px;
  max-height: 100vh;
}

@media (min-width: 768px) {
  .booking-overlay-inner {
    max-width: 820px;
    padding: 28px 18px;
  }
}

.booking-card-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: -8px -8px 0 0;
  padding: 0 0 4px 0;
}

.booking-close-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: #6B7280;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease, transform 0.12s ease;
}

.booking-close-btn:hover {
  color: #111827;
  background-color: rgba(0, 0, 0, 0.06);
  transform: scale(1.05);
}

html.booking-open,
body.booking-open {
  overflow: hidden;
}

.booking-card {
  position: relative;
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, #E6F6FE 0, #ffffff 55%),
    linear-gradient(to bottom right, rgba(19, 118, 248, 0.08), rgba(1, 22, 50, 0.04));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 28px 20px 32px;
  max-height: 90vh;
  overflow-y: auto;
}

@media (min-width: 768px) {
  .booking-card {
    padding: 36px 40px 40px;
  }
  .booking-card-header {
    margin: -12px -12px 0 0;
  }
}

/* Stepper: more breathing room */
.booking-card .mb-8 {
  margin-bottom: 2rem;
}

.booking-step {
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Step content: uncrowded, punchy typography */
.booking-step-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #011632;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .booking-step-title {
    font-size: 1.5rem;
  }
}

.booking-step-desc {
  font-size: 0.9375rem;
  color: #3C4959;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.booking-offer-copy {
  font-size: 0.6875rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.booking-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 639px) {
  .booking-options-grid {
    grid-template-columns: 1fr;
  }
}
.booking-options-grid .booking-pill[class*="col-span-2"] {
  grid-column: 1 / -1;
}

.booking-step-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}
.booking-step-actions-between {
  justify-content: space-between;
}

/* Section spacing: separate blocks so it doesn’t feel crowded */
.booking-section {
  margin-bottom: 1.25rem;
}

.booking-fields-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-bottom: 1rem;
}
.booking-fields-grid .booking-field-full {
  grid-column: 1 / -1;
}
@media (max-width: 767px) {
  .booking-fields-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.booking-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #011632;
  margin-bottom: 0.375rem;
}

/* Radio groups in step 2: compact, same rhythm as step 3 */
.booking-step .mt-4.grid {
  margin-top: 1.25rem;
  gap: 1rem;
}
.booking-step .mt-4.grid p {
  font-weight: 600;
  color: #011632;
  font-size: 0.875rem;
  margin-bottom: 0.375rem;
}
.booking-step .mt-4.grid .flex-wrap {
  gap: 0.5rem;
}

/* All steps: consistent title/desc spacing (steps 3 & 4 use default h3/p) */
.booking-step h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #011632;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .booking-step h3 {
    font-size: 1.5rem;
  }
}
.booking-step h3 + p,
.booking-step p.text-dental-body {
  font-size: 0.9375rem;
  color: #3C4959;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.booking-step .grid.gap-3 {
  gap: 0.875rem;
}
.booking-step .grid.gap-4 {
  gap: 1.25rem;
}
.booking-step .space-y-8 > * + * {
  margin-top: 1.5rem;
}

.booking-step.hidden {
  opacity: 0;
  transform: translateY(8px);
}

.booking-step:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

/* Booking form: consistent compact fields (match step 3 feel) */
.booking-input {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #011632;
  background-color: #FAFBFC;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.booking-input:hover {
  border-color: #9CA3AF;
  background-color: #ffffff;
}

.booking-input::placeholder {
  color: #6B7280;
}

.booking-input:focus {
  outline: none;
  border-color: #1376F8;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(19, 118, 248, 0.18);
}

.booking-input:focus-visible {
  outline: none;
  border-color: #1376F8;
  box-shadow: 0 0 0 4px rgba(19, 118, 248, 0.18);
}

/* Select dropdown: same punchy look, clear dropdown arrow */
select.booking-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 18px;
  padding-right: 40px;
}

select.booking-input:focus {
  border-color: #1376F8;
  background-color: #ffffff;
}

textarea.booking-input {
  min-height: 80px;
  padding: 10px 12px;
  font-size: 14px;
}

/* Modern date picker (Flatpickr) – classy calendar matching booking form */
.flatpickr-calendar {
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(1, 22, 50, 0.12);
  border: 1px solid #E5E7EB;
  font-family: inherit;
}
.flatpickr-months .flatpickr-month {
  background: #FAFBFC;
  color: #011632;
  border-radius: 10px 10px 0 0;
}
.flatpickr-current-month .numInputWrapper,
.flatpickr-current-month .flatpickr-prev-month,
.flatpickr-current-month .flatpickr-next-month {
  color: #011632;
  fill: #011632;
}
.flatpickr-weekdays {
  background: #FAFBFC;
}
span.flatpickr-weekday {
  color: #6B7280;
  font-weight: 600;
  font-size: 12px;
}
.flatpickr-day {
  border-radius: 8px;
  font-weight: 500;
  color: #011632;
}
.flatpickr-day:hover {
  background: #EFF6FF;
  border-color: transparent;
  color: #011632;
}
.flatpickr-day.selected,
.flatpickr-day.startRange {
  background: #1376F8;
  border-color: #1376F8;
  color: #fff;
}
/* Past dates: disabled and de-emphasized (minDate: "today" in JS) */
.flatpickr-day.flatpickr-disabled {
  color: #D1D5DB;
  opacity: 0.35;
  cursor: default;
}
.flatpickr-day.flatpickr-disabled:hover {
  background: transparent;
  color: #D1D5DB;
}
.flatpickr-day.today {
  border-color: #1376F8;
  color: #1376F8;
}
.flatpickr-day.today:hover {
  background: #EFF6FF;
  color: #1376F8;
}
.flatpickr-input[readonly] {
  cursor: pointer;
}

/* Keep date field same size and look as other booking inputs */
.booking-form .flatpickr input.input,
.booking-form .flatpickr input[type="text"] {
  width: 100%;
  min-height: 42px;
  border-radius: 8px;
  border: 1px solid #D1D5DB;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #011632;
  background-color: #FAFBFC;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.booking-form .flatpickr input.input:focus,
.booking-form .flatpickr input[type="text"]:focus {
  outline: none;
  border-color: #1376F8;
  box-shadow: 0 0 0 4px rgba(19, 118, 248, 0.18);
}

/* Form labels in booking steps */
.booking-step label.block {
  font-weight: 600;
  color: #011632;
  font-size: 14px;
}

.booking-pill,
.booking-pill-sm {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border-radius: 999px;
  border: 2px solid #E5E7EB;
  background-color: #ffffff;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}

.booking-pill:active,
.booking-pill-sm:active {
  transform: scale(0.98);
}

.booking-pill-sm {
  padding: 8px 12px;
  font-size: 12px;
}

.booking-pill span,
.booking-pill-sm span {
  white-space: nowrap;
  background: none !important;
  padding: 0;
  border-radius: 0;
}

.booking-pill:hover,
.booking-pill-sm:hover {
  border-color: #1376F8;
  background-color: #E6F6FE;
}

.booking-pill:hover,
.booking-pill-sm:hover {
  box-shadow: 0 4px 12px rgba(19, 118, 248, 0.15);
}

/* Whole pill selected: full blue border + light blue background (label, not span) */
.booking-pill.is-selected,
.booking-pill-sm.is-selected,
.booking-pill:has(input:checked),
.booking-pill-sm:has(input:checked) {
  border-color: #1376F8;
  background-color: #E6F6FE;
  color: #011632;
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(19, 118, 248, 0.3);
}

.booking-pill.is-selected span,
.booking-pill-sm.is-selected span,
.booking-pill:has(input:checked) span,
.booking-pill-sm:has(input:checked) span {
  color: inherit;
  background: none !important;
}

.booking-primary-btn,
.booking-secondary-btn {
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
}

.booking-primary-btn {
  background-color: #1376F8;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(19, 118, 248, 0.4);
}

.booking-primary-btn:hover {
  background-color: #0d5fd4;
}

.booking-secondary-btn {
  background-color: #ffffff;
  color: #111827;
  border: 1px solid #D1D5DB;
}

.booking-primary-btn:active,
.booking-secondary-btn:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.booking-error {
  margin-top: 10px;
  font-size: 12px;
  color: #E52323;
}

.booking-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  text-align: center;
}

.booking-step-indicator .indicator-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #6B7280;
  background-color: #ffffff;
  position: relative;
}

.booking-step-indicator .indicator-label {
  margin-top: 6px;
  font-size: 11px;
}

.booking-offer-copy {
  letter-spacing: 0.02em;
  color: #1376F8;
  font-weight: 600;
}

/* ---- Hover polish (desktop only) ---- */
@media (hover: hover) and (pointer: fine) {
  /* Primary brand CTAs */
  .booking-primary-btn,
  a.bg-dental-accent,
  button.bg-dental-accent {
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }

  .booking-primary-btn:hover,
  a.bg-dental-accent:hover,
  button.bg-dental-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(19, 118, 248, 0.35);
  }

  /* Service cards */
  .service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(19, 118, 248, 0.5);
  }

  /* Booking pills */
  .booking-pill:hover span,
  .booking-pill-sm:hover span {
    transform: translateY(-0.5px);
  }
}

.booking-step-indicator.is-active .indicator-dot {
  border-color: #1376F8;
  background-color: #1376F8;
  color: #ffffff;
}

.booking-step-indicator.is-complete .indicator-dot {
  border-color: #25B4F8;
  background-color: #25B4F8;
  color: #ffffff;
}

.booking-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
  background-color: #ffffff;
  padding: 8px 10px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.booking-checkbox input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}

.booking-checkbox:hover {
  border-color: #1376F8;
  background-color: #E6F6FE;
}

.booking-checkbox input:checked + span {
  font-weight: 600;
}

/* ---- Selection color ---- */
::selection {
  background-color: #1376F8;
  color: white;
}

/* ---- Site footer ---- */
.site-footer {
  background: #0B1F33;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
}

.site-footer-tagline {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer-rating {
  display: block;
  margin-top: 1.25rem;
}

.site-footer-gbp {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
  padding: 0.625rem 0.875rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.site-footer-gbp:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.site-footer-gbp-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.site-footer-gbp-text {
  line-height: 1.3;
}

/* ---- Desktop nav: Services dropdown ---- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  text-decoration: none;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.5rem;
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 60;
  min-width: 14rem;
  padding: 0.5rem 0;
  margin-top: 0;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(11, 31, 51, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel,
.nav-dropdown.is-open .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-chevron,
.nav-dropdown:focus-within .nav-dropdown-chevron,
.nav-dropdown.is-open .nav-dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav-dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-link:hover {
  color: var(--color-dental-accent, #0D7C8C);
  background-color: #F8FAFC;
}

.nav-dropdown-link--active {
  color: var(--color-dental-accent, #0D7C8C);
  font-weight: 600;
}

.nav-dropdown-link--hub {
  margin-top: 0.25rem;
  padding-top: 0.625rem;
  border-top: 1px solid #E5E7EB;
  font-weight: 600;
  color: var(--color-dental-accent, #0D7C8C);
}

.nav-dropdown-link--hub:hover {
  background-color: #F8FAFC;
}

/* ---- Mobile nav: Services submenu ---- */
.mobile-nav-group {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 0.75rem;
}

.mobile-nav-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.mobile-nav-toggle[aria-expanded="true"] .mobile-nav-chevron {
  transform: rotate(180deg);
}

.mobile-submenu-link {
  display: block;
  padding: 0.375rem 0;
  color: #475569;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
  color: var(--color-dental-accent, #0D7C8C);
}

.mobile-submenu-link--hub {
  margin-top: 0.25rem;
  padding-top: 0.5rem;
  border-top: 1px solid #E5E7EB;
}

.site-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.site-footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-footer-social:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.site-footer-heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.site-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-link:hover {
  color: #fff;
}

.site-footer-link--strong {
  color: #fff;
  font-weight: 600;
}

.site-footer-address {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  min-height: 44px;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  background: var(--color-dental-accent, #0D7C8C);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.site-footer-directions:hover {
  background: #0A6673;
}

.site-footer-map {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer-map-iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

@media (min-width: 768px) {
  .site-footer-map-iframe {
    height: 320px;
  }
}

.site-footer-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
}

.site-footer-map-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer-map-link:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ---- Focus styles for accessibility ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #1376F8;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- Print styles ---- */
@media print {
  #site-header,
  #sticky-contact-bar,
  #mobile-fabs,
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    position: static !important;
  }
}

/* ---- Pressed state for key CTAs ---- */
.is-pressed {
  transform: translateY(1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* ---- Shared CTA buttons (homepage + service pages) ---- */
.cta-primary,
a.cta-primary,
button.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.875rem;
  border-radius: 10px;
  border: none;
  background: #1376f8;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.015em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cta-primary:hover {
  background: #0d5fd4;
  color: #fff !important;
}

.cta-whatsapp,
a.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cta-whatsapp:hover {
  background: #20bd5a;
  color: #fff !important;
}

.cta-phone,
a.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
  border: 1px solid #1376f8;
  background: linear-gradient(to bottom, #e6f6fe, transparent);
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease;
}
.cta-phone:hover {
  background: rgba(230, 246, 254, 0.85);
}

.cta-on-dark,
a.cta-on-dark,
button.cta-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.cta-on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.page-service .final,
.page-implants .final .cta-whatsapp {
  width: 100%;
  justify-content: center;
}
.page-service .final,
.page-implants .final .final-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 280px;
}
.page-service .final,
.page-implants .final .final-buttons .cta-on-dark,
.page-service .final,
.page-implants .final .final-buttons .cta-whatsapp {
  width: 100%;
}

/* ---- Dental implants page (Tailwind + site.css layout) ---- */
.page-service .brand-track,
.page-implants .brand-track {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.page-service .brand-logo-pill,
.page-implants .brand-logo-pill img {
  max-height: 48px;
  width: auto;
}

/* Service page layout (implants + future services) */
.page-service .service-section,
.page-implants .service-section {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .page-service .service-section,
.page-implants .service-section {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.page-service .service-hero-brands,
.page-implants .service-hero-brands {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
}
