:root {
  --navy: #06245b;
  --blue: #0b68c8;
  --sky: #e8f5ff;
  --teal: #00a6b2;
  --green: #5ab946;
  --red: #d03b3b;
  --ink: #162033;
  --muted: #5f6b7d;
  --line: #dbe6f1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(6, 36, 91, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #f7fbff;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--white);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 36, 91, 0.08);
  backdrop-filter: blur(12px);
}

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

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.2));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border-radius: 999px;
}

.site-nav a:hover,
.nav-cta {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--green);
}

.site-header.is-scrolled .brand img {
  filter: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 5vw, 76px) 64px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 36, 91, 0.92) 0%, rgba(6, 36, 91, 0.62) 48%, rgba(6, 36, 91, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 36, 91, 0.7), rgba(6, 36, 91, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-booking {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  justify-self: end;
}

.hero-booking .eyebrow {
  color: #7ee7ef;
  margin-bottom: 10px;
}

.hero-appointment-form {
  gap: 12px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-appointment-form label,
.hero-appointment-form legend {
  font-size: 0.82rem;
}

.hero-appointment-form input,
.hero-appointment-form select,
.hero-appointment-form textarea {
  min-height: 42px;
  padding: 10px 12px;
}

.hero-appointment-form textarea {
  min-height: 78px;
}

.hero-appointment-form .button {
  min-height: 46px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #7ee7ef;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.8vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 36px rgba(90, 185, 70, 0.28);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.location .button.secondary,
.appointment .button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.social-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  fill: currentColor;
}

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

.hero-facts span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
  font-weight: 800;
}

.section {
  padding: clamp(54px, 7vw, 88px) clamp(20px, 5vw, 76px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.two-column p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.service-grid article,
.steps article,
.education-grid article,
.appointment-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 36, 91, 0.07);
}

.service-grid article {
  padding: 24px;
}

.service-grid p,
.steps p,
.education-grid p {
  margin: 0;
  color: var(--muted);
}

.icon-line {
  display: block;
  width: 46px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--navy);
  color: var(--white);
}

.feature-copy {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 5vw, 76px);
  align-self: center;
}

.feature-copy h2 {
  color: var(--white);
}

.feature-band img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 900;
}

.specialist {
  background: var(--sky);
}

.specialist-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.specialist-layout img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.specialist-layout p {
  color: var(--muted);
  font-size: 1.08rem;
}

.credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.credential-row span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.appointment {
  background: linear-gradient(180deg, #ffffff, #edf8ff);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.appointment-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.contact-card {
  display: grid;
  gap: 5px;
  margin-top: 28px;
  padding: 20px;
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 36, 91, 0.08);
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.appointment-location {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.appointment-location .eyebrow {
  margin-bottom: -4px;
}

.appointment-location .location-actions {
  margin-top: 0;
}

.compact-map,
.compact-map iframe {
  min-height: 220px;
}

.compact-photo {
  grid-column: auto;
  height: 150px;
  min-height: 150px;
  object-position: center;
}

.appointment-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.appointment-form label,
.appointment-form legend {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 166, 178, 0.18);
  border-color: var(--teal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

fieldset {
  display: flex;
  gap: 16px;
  margin: 0;
  border: 0;
  padding: 0;
}

.radio {
  display: inline-flex;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 700;
}

.radio input {
  width: 18px;
  min-height: 18px;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}

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

.education-grid article {
  overflow: hidden;
}

.guide-image {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  color: var(--white);
  background: transparent;
  cursor: zoom-in;
}

.guide-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.guide-image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(6, 36, 91, 0.86);
  font-size: 0.83rem;
  font-weight: 900;
}

.guide-image:hover img {
  filter: brightness(0.92);
  transform: scale(1.025);
}

.education-grid h3,
.education-grid p {
  padding-inline: 20px;
}

.education-grid h3 {
  padding-top: 18px;
}

.education-grid p {
  padding-bottom: 22px;
}

.reviews {
  background: #ffffff;
  color: var(--ink);
}

.reviews h2 {
  color: var(--navy);
}

.reviews-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.rating {
  color: var(--blue);
  font-weight: 900;
}

.review-slider {
  position: relative;
  padding: 0 58px 36px;
}

.review-viewport {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.28s ease;
}

.review-card {
  flex: 0 0 calc((100% - 72px) / 4);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px 22px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(6, 36, 91, 0.06);
}

.review-card h3 {
  margin-top: 22px;
  font-size: 1.22rem;
  color: var(--ink);
}

.review-card p {
  margin: 0;
  color: #303746;
  font-size: 0.98rem;
  line-height: 1.45;
}

.review-card span {
  display: block;
  margin-top: auto;
  padding-top: 24px;
  color: #6b7480;
  font-size: 0.9rem;
  text-align: right;
}

.stars {
  color: #1f5fde;
  font-size: 1.24rem;
  letter-spacing: 0;
  text-align: center;
}

.slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #777f88;
  background: transparent;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
}

.slider-arrow:hover {
  color: var(--blue);
}

.slider-arrow:disabled {
  color: #b8bec6;
  cursor: default;
}

.slider-arrow:disabled:hover {
  color: #b8bec6;
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.slider-dots {
  position: absolute;
  right: 58px;
  bottom: 0;
  left: 58px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots button {
  width: 38px;
  height: 4px;
  border: 0;
  padding: 0;
  background: #7b7f84;
  cursor: pointer;
}

.slider-dots button.is-active {
  background: #111111;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(2, 12, 31, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-frame {
  width: min(980px, 100%);
  max-height: 86vh;
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.lightbox-frame img {
  width: 100%;
  height: auto;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.location {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.35fr);
  gap: clamp(24px, 3vw, 42px);
  padding: clamp(42px, 6vw, 82px) clamp(20px, 5vw, 76px);
  background: #f6f9fc;
}

.location-info {
  grid-row: 1 / span 2;
  align-self: center;
}

.location-info p {
  color: var(--muted);
  font-size: 1.06rem;
}

.map-panel {
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky);
  box-shadow: 0 18px 44px rgba(6, 36, 91, 0.12);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.location-photo {
  grid-column: 2;
  width: 100%;
  height: 270px;
  min-height: 270px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 36, 91, 0.12);
}

.appointment-location .map-panel,
.appointment-location .map-panel iframe {
  min-height: 220px;
}

.appointment-location .location-photo {
  grid-column: auto;
  height: 150px;
  min-height: 150px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 18px 42px rgba(32, 120, 37, 0.32);
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 24px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: #041a42;
}

.site-footer img {
  width: min(190px, 56vw);
  height: auto;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
    min-height: auto;
  }

  .hero-booking {
    width: min(560px, 100%);
    justify-self: start;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: 8px;
  }

  .nav-toggle {
    display: block;
    color: currentColor;
  }

  .service-grid,
  .steps,
  .education-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .two-column,
  .feature-band,
  .specialist-layout,
  .appointment-grid,
  .reviews-layout,
  .location {
    grid-template-columns: 1fr;
  }

  .location-info {
    grid-row: auto;
  }

  .location-photo {
    grid-column: auto;
    height: auto;
  }

  .feature-band img,
  .location-photo,
  .map-panel,
  .map-panel iframe {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding-bottom: 42px;
  }

  .hero-content {
    padding-top: 12px;
  }

  .hero-booking {
    width: 100%;
  }

  .hero-appointment-form {
    padding: 18px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(6, 36, 91, 0.95) 0%, rgba(6, 36, 91, 0.62) 68%, rgba(6, 36, 91, 0.22) 100%);
  }

  .hero-media img {
    object-position: 62% center;
  }

  .service-grid,
  .steps,
  .education-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .review-slider {
    padding-inline: 42px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .slider-dots {
    right: 42px;
    left: 42px;
  }

  .slider-dots button {
    width: 26px;
  }

  .button,
  .hero-actions a,
  .location-actions a {
    width: 100%;
  }

  fieldset {
    flex-direction: column;
  }

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