:root {
  --font-scale: 1;
  --mint: #229b8b;
  --mint-soft: #8de3d6;
  --mint-dark: #147568;
  --ink: #314653;
  --text: #455a64;
  --soft: #eef8f6;
  --line: #dce9e7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(49, 70, 83, 0.14);
  --shadow-strong: 0 30px 90px rgba(20, 117, 104, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: calc(16px * var(--font-scale));
  scroll-behavior: smooth;
}

*:focus {
  outline: none;
}

*:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 4px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(141, 227, 214, 0.22), transparent 28rem),
    radial-gradient(circle at 94% 14%, rgba(34, 155, 139, 0.16), transparent 26rem),
    #fbfdfd;
  line-height: 1.6;
}

body.theme-dark {
  --mint: #38cdb8;
  --mint-soft: #7ee7da;
  --mint-dark: #8de3d6;
  --ink: #f1fbf9;
  --text: #d9e9e6;
  --soft: #12353a;
  --line: rgba(190, 238, 230, 0.28);
  --white: #10242a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --shadow-strong: 0 30px 90px rgba(0, 0, 0, 0.46);
  background:
    radial-gradient(circle at 8% 0%, rgba(56, 205, 184, 0.16), transparent 28rem),
    radial-gradient(circle at 94% 14%, rgba(141, 227, 214, 0.13), transparent 26rem),
    #071b20;
}

body.high-contrast {
  --mint: #00ffd1;
  --mint-soft: #00ffd1;
  --mint-dark: #00ffd1;
  --ink: #ffffff;
  --text: #ffffff;
  --soft: #000000;
  --line: #ffffff;
  --white: #000000;
  --shadow: none;
  --shadow-strong: none;
  background: #000000;
}

body.menu-open {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 900;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 34px rgba(49, 70, 83, 0.06);
}

body.theme-dark .site-header,
body.high-contrast .site-header {
  background: rgba(6, 23, 28, 0.94);
}

.brand {
  display: inline-flex;
  width: min(280px, 58vw);
  align-items: center;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(49, 70, 83, 0.08));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--ink);
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--mint-dark);
}

.nav-cta {
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  box-shadow: 0 12px 28px rgba(34, 155, 139, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white) !important;
  background: linear-gradient(135deg, #1aa694, #0f5f55);
  box-shadow: 0 14px 34px rgba(20, 117, 104, 0.32);
}

.accessibility-menu {
  position: relative;
  z-index: 35;
}

.accessibility-toggle {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: none;
  overflow: hidden;
}

.accessibility-toggle .accessibility-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(20, 117, 104, 0.20);
}

.accessibility-toggle:hover,
.accessibility-toggle:focus-visible,
.accessibility-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
}

.accessibility-toggle:hover .accessibility-icon,
.accessibility-toggle:focus-visible .accessibility-icon,
.accessibility-toggle[aria-expanded="true"] .accessibility-icon {
  box-shadow: 0 14px 30px rgba(20, 117, 104, 0.28);
}

.accessibility-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  min-width: 220px;
  gap: 8px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.accessibility-panel button {
  min-height: 42px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 900;
  text-align: left;
}

.accessibility-panel button:hover,
.accessibility-panel button:focus-visible,
.accessibility-panel button[aria-pressed="true"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--mint-dark), #0b4f47);
  border-color: var(--mint-dark);
  transform: translateY(-1px);
}

.accessibility-tip {
  position: fixed;
  top: 86px;
  right: clamp(14px, 4vw, 42px);
  z-index: 60;
  width: min(330px, calc(100vw - 28px));
  padding: 18px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.accessibility-tip::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 23px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.accessibility-tip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.accessibility-tip p {
  margin: 8px 0 14px;
  font-size: 0.94rem;
}

.accessibility-tip button {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--white);
  background: var(--mint-dark);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

body.theme-dark .accessibility-panel,
body.high-contrast .accessibility-panel {
  background: var(--white);
}

body.high-contrast .accessibility-panel,
body.high-contrast .accessibility-panel button,
body.high-contrast .site-nav a,
body.high-contrast .button,
body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
  border-color: #ffffff;
}

body.high-contrast .accessibility-toggle,
body.high-contrast .accessibility-panel button:hover,
body.high-contrast .accessibility-panel button:focus-visible,
body.high-contrast .accessibility-panel button[aria-pressed="true"],
body.high-contrast .nav-cta,
body.high-contrast .button.primary,
body.high-contrast .mobile-booking,
body.high-contrast .whatsapp-float {
  color: #000000 !important;
  background: #00ffd1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
  min-height: auto;
  padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.92), rgba(244, 251, 250, 0.86)),
    radial-gradient(circle at 78% 18%, rgba(34, 155, 139, 0.25), transparent 24rem),
    radial-gradient(circle at 18% 86%, rgba(141, 227, 214, 0.26), transparent 23rem);
  position: relative;
  overflow: hidden;
}

body.theme-dark .hero,
body.theme-dark .page-hero,
body.theme-dark .booking-section,
body.theme-dark .insurance-page,
body.theme-dark .map-section,
body.high-contrast .hero,
body.high-contrast .page-hero,
body.high-contrast .booking-section,
body.high-contrast .insurance-page,
body.high-contrast .map-section {
  background: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  right: -9rem;
  bottom: -12rem;
  background: linear-gradient(135deg, rgba(34, 155, 139, 0.25), rgba(141, 227, 214, 0.05));
  border-radius: 999px;
}

.hero > * {
  position: relative;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 5.35rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.hero-actions,
.contact-actions,
.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
.slot-button:focus-visible,
.menu-toggle:focus-visible,
.mobile-booking:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid #0f766e;
  outline-offset: 4px;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--mint), var(--mint-dark));
  box-shadow: 0 16px 36px rgba(34, 155, 139, 0.28);
}

.button.primary:hover {
  background: var(--mint-dark);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 10px 26px rgba(49, 70, 83, 0.06);
}

.button.ghost {
  color: var(--mint-dark);
  background: var(--soft);
}

.full-width {
  width: 100%;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.quick-facts div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--ink);
}

.quick-facts span {
  margin-top: 2px;
  font-size: 0.93rem;
}

.hero-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

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

.hero-slideshow {
  min-height: 540px;
}

.hero-slides {
  position: relative;
  min-height: 392px;
  background: var(--soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 392px;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 15s infinite;
}

.hero-slide.slide-one {
  opacity: 1;
}

.slide-two {
  animation-delay: 5s;
}

.slide-three {
  animation-delay: 10s;
}

@keyframes heroFade {
  0%,
  26% {
    opacity: 1;
  }

  33%,
  93% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-card-panel {
  display: grid;
  gap: 6px;
  padding: 22px;
}

.hero-card-panel span {
  color: var(--mint-dark);
  font-weight: 800;
}

.hero-card-panel strong {
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.25;
}

.section {
  padding: clamp(44px, 6vw, 74px) clamp(18px, 5vw, 70px);
}

.page-hero {
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 70px);
  background:
    radial-gradient(circle at top right, rgba(34, 155, 139, 0.2), transparent 28rem),
    radial-gradient(circle at 10% 90%, rgba(141, 227, 214, 0.22), transparent 23rem),
    linear-gradient(135deg, #ffffff 0%, #f4fbfa 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  font-size: clamp(1.03rem, 1.7vw, 1.2rem);
}

.page-hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  align-items: center;
  gap: clamp(24px, 4vw, 50px);
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero-visual {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.page-hero-visual img {
  display: block;
  width: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(49, 70, 83, 0.06);
}

.faq-item h3 {
  margin-bottom: 8px;
  color: var(--ink);
}

.faq-item p {
  margin: 0;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 22px;
  background:
    linear-gradient(135deg, rgba(34, 155, 139, 0.22), transparent),
    var(--ink);
}

body.high-contrast .intro-strip,
body.high-contrast .contact {
  background: #000000;
  color: #ffffff;
}

.intro-strip a {
  display: grid;
  gap: 2px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  transition: transform 0.2s ease, background 0.2s ease;
}

.intro-strip a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.13);
}

.intro-strip span {
  color: #bdece5;
  font-weight: 700;
}

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

body.theme-dark .services,
body.theme-dark .team-section,
body.theme-dark .testimonials,
body.theme-dark .site-footer,
body.high-contrast .services,
body.high-contrast .team-section,
body.high-contrast .testimonials,
body.high-contrast .site-footer {
  background: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid-preview {
  margin-bottom: 26px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-card,
.team-grid article,
.testimonial-grid article {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 253, 251, 0.96));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(49, 70, 83, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.theme-dark .service-card,
body.theme-dark .team-grid article,
body.theme-dark .testimonial-grid article,
body.theme-dark .booking-form,
body.theme-dark .partner-logo-card,
body.theme-dark .quick-facts div,
body.theme-dark .benefit-list div,
body.high-contrast .service-card,
body.high-contrast .team-grid article,
body.high-contrast .testimonial-grid article,
body.high-contrast .booking-form,
body.high-contrast .partner-logo-card,
body.high-contrast .quick-facts div,
body.high-contrast .benefit-list div {
  background: var(--white);
  border-color: var(--line);
}

.service-card:hover,
.team-grid article:hover,
.testimonial-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 155, 139, 0.32);
  box-shadow: 0 24px 60px rgba(49, 70, 83, 0.12);
}

.service-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  overflow: hidden;
}

.service-photo {
  width: calc(100% + 48px);
  height: 160px;
  margin: -24px -24px 20px;
  object-fit: cover;
  background: var(--soft);
}

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  margin-top: -44px;
  position: relative;
  color: var(--white);
  background: linear-gradient(135deg, var(--mint), var(--ink));
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(34, 155, 139, 0.22);
}

.service-card.no-photo .service-icon {
  margin-top: 0;
}

.service-card p {
  margin: 12px 0 20px;
}

.service-list {
  display: grid;
  gap: 7px;
  margin: 12px 0 20px;
  padding-left: 1.15rem;
}

.service-card a {
  margin-top: auto;
  color: var(--mint-dark);
  font-weight: 900;
}

.split,
.booking-section,
.insurance,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.booking-simple-section {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
  min-height: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 155, 139, 0.16), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #eef8f6 100%);
}

.form-heading {
  margin-bottom: 4px;
}

.form-heading h1 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.form-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--text);
}

.simple-booking-form {
  gap: 18px;
  width: 100%;
  max-width: 100%;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

.simple-booking-form label {
  display: block;
  width: 100%;
  min-width: 0;
}

.simple-booking-form .field-with-icon {
  position: relative;
}

.simple-booking-form input,
.simple-booking-form select,
.simple-booking-form textarea {
  width: 100%;
  max-width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #cfe0de;
  border-radius: 8px;
}

.simple-booking-form input[type="date"],
.simple-booking-form input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  padding-right: 52px;
  text-align: left;
}

.simple-booking-form input[type="date"]::-webkit-calendar-picker-indicator,
.simple-booking-form input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

.simple-booking-form .field-with-icon::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 22px;
  height: 22px;
  pointer-events: none;
  content: "";
  background: var(--mint-dark);
  opacity: 0.9;
  transform: translateY(-50%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.simple-booking-form .time-field::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Zm1-13h-2v6l5 3 .95-1.64L13 12.1V7Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 18a8 8 0 1 1 0-16 8 8 0 0 1 0 16Zm1-13h-2v6l5 3 .95-1.64L13 12.1V7Z'/%3E%3C/svg%3E");
}

.simple-booking-form .date-field::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10ZM4 8h16V6H4v2Zm3 4h3v3H7v-3Zm5 0h3v3h-3v-3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10ZM4 8h16V6H4v2Zm3 4h3v3H7v-3Zm5 0h3v3h-3v-3Z'/%3E%3C/svg%3E");
}

.simple-booking-form input[type="date"]::-webkit-date-and-time-value,
.simple-booking-form input[type="time"]::-webkit-date-and-time-value {
  min-height: 1.25em;
  margin: 0;
  text-align: left;
}

.simple-booking-form textarea {
  min-height: 160px;
}

.simple-booking-form input::placeholder,
.simple-booking-form textarea::placeholder {
  color: #6d7f87;
}

.simple-booking-form select:invalid {
  color: #6d7f87;
}

.simple-booking-form option {
  color: #213640;
}

.simple-submit {
  width: min(310px, 100%);
  min-height: 56px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--mint), var(--mint-dark)) !important;
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(34, 155, 139, 0.28);
  font-size: 1.08rem;
}

.simple-booking-form .confirmation-card {
  color: var(--text);
}

.split {
  background:
    linear-gradient(135deg, rgba(34, 155, 139, 0.12), rgba(255, 255, 255, 0.4)),
    var(--soft);
}

.split-copy {
  position: sticky;
  top: 112px;
}

.split-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  font-size: 1.06rem;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(49, 70, 83, 0.06);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.benefit-list span {
  margin-top: 6px;
}

.booking-section {
  background:
    linear-gradient(140deg, rgba(34, 155, 139, 0.11), transparent 32%),
    #ffffff;
}

.booking-top {
  align-items: center;
  min-height: calc(100vh - 92px);
  padding-top: clamp(28px, 5vw, 68px);
}

.booking-copy h1 {
  max-width: 680px;
  font-size: clamp(2.2rem, 4.8vw, 4.7rem);
}

.booking-copy {
  position: sticky;
  top: 112px;
}

.booking-copy p:not(.eyebrow) {
  margin: 20px 0 0;
}

.booking-notes {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.booking-notes li {
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 700;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdfd;
  border: 1px solid #cfe0de;
  border-radius: var(--radius);
  outline: none;
}

body.theme-dark input,
body.theme-dark select,
body.theme-dark textarea,
body.high-contrast input,
body.high-contrast select,
body.high-contrast textarea {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

body.high-contrast a,
body.high-contrast .map-link,
body.high-contrast .service-card a,
body.high-contrast .site-footer a {
  color: #00ffd1;
  text-decoration: underline;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(34, 155, 139, 0.14);
}

.slot-fieldset {
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.slot-fieldset legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.field-help {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.slot-button {
  min-height: 42px;
  color: var(--mint-dark);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.slot-button:hover,
.slot-button.selected {
  color: var(--white);
  background: var(--mint);
  border-color: var(--mint);
}

.slot-button[aria-pressed="true"] {
  color: var(--white);
  background: linear-gradient(135deg, var(--mint-dark), #0b4f47);
  border-color: var(--mint-dark);
  transform: translateY(-1px);
}

.slots-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px;
  color: var(--ink);
  background: #fff7ec;
  border: 1px solid #f3d6ad;
  border-radius: var(--radius);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
  accent-color: var(--mint);
}

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-status.show {
  display: block;
}

.form-status.error {
  color: #7d2d1a;
  background: #fff0eb;
  border: 1px solid #f1b8a7;
}

.form-status.success {
  color: #115e4f;
  background: #e6f8f4;
  border: 1px solid #a7ded4;
}

.confirmation-card {
  padding: 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.confirmation-card p {
  margin: 12px 0 0;
}

.team-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(141, 227, 214, 0.22), transparent 24rem),
    var(--soft);
}

.team-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.team-grid article span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--mint-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.insurance {
  background: var(--white);
  align-items: center;
}

.insurance-page {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  background:
    radial-gradient(circle at 92% 8%, rgba(34, 155, 139, 0.14), transparent 28rem),
    #ffffff;
}

.insurance-copy p:not(.eyebrow) {
  margin: 18px 0 0;
}

.partner-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-logo-card {
  display: grid;
  min-height: 182px;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 250, 0.98));
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(49, 70, 83, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.partner-logo-card:hover,
.partner-logo-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(34, 155, 139, 0.4);
  box-shadow: 0 26px 64px rgba(49, 70, 83, 0.14);
}

.partner-logo-card img {
  width: 100%;
  max-width: 210px;
  max-height: 92px;
  object-fit: contain;
  filter: saturate(1.04);
}

.partner-logo-card span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.partner-tags span {
  padding: 9px 12px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.insurance-image {
  position: relative;
  display: block;
  overflow: hidden;
  max-width: 430px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.insurance-image img {
  width: 100%;
}

.insurance-image span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(49, 70, 83, 0.88);
  border-radius: var(--radius);
  font-weight: 800;
}

.testimonials {
  background:
    linear-gradient(135deg, rgba(34, 155, 139, 0.1), rgba(255, 255, 255, 0.22)),
    var(--soft);
}

.testimonial-grid article p {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
}

.testimonial-grid article strong {
  color: var(--mint-dark);
}

.contact {
  background:
    radial-gradient(circle at 85% 10%, rgba(34, 155, 139, 0.36), transparent 26rem),
    linear-gradient(135deg, #263b47, var(--ink));
  color: #d8e7e5;
}

.contact h2,
.contact h3 {
  color: var(--white);
}

.contact .eyebrow {
  color: #9fe1d8;
}

.contact-card,
.hours-card {
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

address {
  margin-top: 16px;
  font-style: normal;
  font-size: 1.08rem;
}

.contact-detail-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.contact-detail-list p {
  margin: 0;
}

.contact-detail-list a {
  color: #9fe1d8;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

dt {
  font-weight: 900;
}

dd {
  margin: 0;
}

.map-link {
  display: inline-flex;
  margin-top: 22px;
  color: #9fe1d8;
  font-weight: 900;
}

.map-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(34, 155, 139, 0.14), transparent 24rem),
    #ffffff;
}

.map-embed {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 70px) 84px;
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 155, 139, 0.1), transparent 24rem),
    #f7fbfa;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: min(300px, 100%);
}

.site-footer p {
  max-width: 420px;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 10px;
  color: var(--ink);
}

.site-footer a {
  margin-top: 8px;
}

.mobile-booking {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 31;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: #1f9d55;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(31, 157, 85, 0.32);
  font-weight: 900;
  isolation: isolate;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  background: rgba(31, 157, 85, 0.34);
  border-radius: inherit;
  animation: whatsappPulse 1.8s ease-out infinite;
}

.whatsapp-float svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.85;
    transform: scale(0.96);
  }

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

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .brand {
    order: 1;
  }

  .accessibility-menu {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    order: 4;
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero,
  .split,
  .booking-section,
  .booking-simple-section,
  .insurance,
  .contact,
  .page-hero-media {
    grid-template-columns: 1fr;
  }

  .booking-top {
    min-height: 0;
  }

  .booking-simple-section {
    min-height: 0;
  }

  .hero {
    min-height: 0;
  }

  .split-copy,
  .booking-copy {
    position: static;
  }

  .intro-strip,
  .service-grid,
  .team-grid,
  .testimonial-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .partner-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

  .insurance-image {
    margin-right: auto;
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand {
    width: min(205px, 54vw);
  }

  .accessibility-panel {
    right: -54px;
    min-width: min(235px, calc(100vw - 28px));
  }

  .hero,
  .section,
  .page-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-card img {
    min-height: 220px;
  }

  .page-hero-visual img {
    min-height: 240px;
    max-height: 360px;
  }

  .hero-slideshow,
  .hero-slides,
  .hero-slide {
    min-height: 320px;
  }

  .service-photo {
    height: 160px;
  }

  .form-row,
  .slots,
  .partner-logo-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .confirmation-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .booking-simple-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .simple-booking-form {
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
  }

  .simple-booking-form input,
  .simple-booking-form select,
  .simple-booking-form textarea {
    min-height: 52px;
    padding: 13px 14px;
    font-size: 1rem;
  }

  .simple-booking-form input[type="date"],
  .simple-booking-form input[type="time"] {
    height: 52px;
  }

  dl div {
    display: grid;
    gap: 4px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 340px;
    height: 340px;
  }

  .mobile-booking {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 30;
    display: inline-flex;
    justify-content: center;
    padding: 14px 16px;
    color: var(--white);
    background: var(--mint);
    border-radius: var(--radius);
    box-shadow: 0 18px 38px rgba(34, 155, 139, 0.33);
    font-weight: 900;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 76px;
    min-height: 50px;
    padding: 10px 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .accessibility-tip {
    top: 78px;
    right: 14px;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-card,
  .hero-slide,
  .button:hover,
  .service-card:hover,
  .team-grid article:hover,
  .testimonial-grid article:hover,
  .partner-logo-card:hover,
  .intro-strip a:hover {
    transform: none;
  }

  .hero-slide {
    animation: none;
    opacity: 0;
  }

  .whatsapp-float::before {
    animation: none;
  }

  .hero-slide.slide-one {
    opacity: 1;
  }
}
/* Fix duplicate calendar icon on the booking date field: use the browser's native calendar icon only. */
.simple-booking-form .date-field::after {
  display: none;
  content: none;
}

.simple-booking-form input[type="date"] {
  -webkit-appearance: auto;
  appearance: auto;
  padding-right: 16px;
}

.simple-booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 1;
  cursor: pointer;
}
