:root {
  --blue-950: #082849;
  --blue-900: #0b315c;
  --blue-800: #10477f;
  --blue-700: #1557a6;
  --blue-600: #1f68bf;
  --blue-100: #eaf4ff;
  --blue-50: #f5faff;
  --red-600: #e93645;
  --red-500: #f04451;
  --red-50: #fff1f2;
  --yellow-500: #f7bf2c;
  --yellow-100: #fff3bf;
  --green-600: #0e9d83;
  --green-100: #dff8f1;
  --purple-600: #7758c7;
  --purple-100: #eee8ff;
  --ink: #10263e;
  --muted: #617287;
  --line: #dce7f1;
  --surface: #ffffff;
  --surface-soft: #f6f9fc;
  --shadow-sm: 0 10px 35px rgba(18, 57, 92, 0.08);
  --shadow-md: 0 24px 70px rgba(9, 43, 78, 0.15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
  font-family: "Nunito", "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 9px 15px;
  color: #fff;
  background: var(--blue-950);
  border-radius: 9px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.topbar {
  position: relative;
  z-index: 31;
  color: #dcecff;
  background: var(--blue-950);
  font-size: 12px;
  font-weight: 600;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.topbar a {
  direction: ltr;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.topbar-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #63e6be;
  box-shadow: 0 0 0 4px rgba(99, 230, 190, 0.12);
}

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(222, 232, 242, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(13, 47, 82, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border: 1px solid #dfeaf4;
  border-radius: 16px;
}

.brand > span {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  color: var(--blue-800);
  font-family: "Nunito", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand strong em {
  color: var(--red-500);
  font-style: normal;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  margin-inline-start: auto;
}

.main-nav a {
  position: relative;
  color: #435a71;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav a::after {
  position: absolute;
  inset-inline: 50%;
  inset-block-end: -10px;
  height: 2px;
  content: "";
  background: var(--red-500);
  transition: inset 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue-700);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  inset-inline: 0;
}

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

.language-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  color: var(--blue-800);
  background: #fff;
  cursor: pointer;
}

.language-toggle {
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.language-toggle:hover {
  color: var(--red-600);
  border-color: #f5b4ba;
  transform: translateY(-1px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border-radius: 12px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 2px auto;
  border-radius: 3px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  border-radius: 12px;
  font-size: 12px;
}

.button-primary {
  color: #fff;
  background: var(--blue-700);
  box-shadow: 0 10px 22px rgba(21, 87, 166, 0.22);
}

.button-primary:hover {
  background: var(--blue-800);
  box-shadow: 0 14px 28px rgba(21, 87, 166, 0.28);
}

.button-whatsapp {
  color: #fff;
  background: #12a673;
  box-shadow: 0 15px 35px rgba(18, 166, 115, 0.25);
}

.button-whatsapp:hover {
  background: #0c9163;
  box-shadow: 0 18px 40px rgba(18, 166, 115, 0.32);
}

.button-whatsapp svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline {
  min-height: 46px;
  color: var(--blue-700);
  border-color: #bed4eb;
  background: #fff;
}

.button-outline:hover {
  border-color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  z-index: -3;
  inset: 0;
}

.hero-image {
  background-image: url("assets/clinic-hero.jpg");
  background-position: center 45%;
  background-size: cover;
  transform: scale(1.015);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 27, 49, 0.67) 0%, rgba(5, 30, 55, 0.9) 42%, rgba(5, 30, 55, 0.97) 100%),
    linear-gradient(180deg, rgba(4, 26, 48, 0.05), rgba(4, 26, 48, 0.42));
}

html[dir="ltr"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(5, 27, 49, 0.67) 0%, rgba(5, 30, 55, 0.9) 42%, rgba(5, 30, 55, 0.97) 100%),
    linear-gradient(180deg, rgba(4, 26, 48, 0.05), rgba(4, 26, 48, 0.42));
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset-inline-start: -7vw;
  inset-block-start: -20%;
  width: 65vw;
  height: 120%;
  content: "";
  border-radius: 45%;
  background: radial-gradient(circle, rgba(30, 108, 191, 0.22), transparent 68%);
  filter: blur(20px);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.hero-shape-one {
  width: 340px;
  height: 340px;
  inset-inline-end: -160px;
  inset-block-start: 120px;
}

.hero-shape-two {
  width: 110px;
  height: 110px;
  inset-inline-start: 8%;
  inset-block-end: 8%;
  background: rgba(247, 191, 44, 0.08);
}

.hero-grid {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding-block: 90px 110px;
}

.hero-copy {
  max-width: 700px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.eyebrow-light {
  color: #d9edff;
}

.spark {
  color: var(--red-500);
  font-size: 14px;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.guides-intro h2,
.faq-intro h2,
.booking-copy h2,
.contact-details h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(42px, 5.1vw, 72px);
  font-weight: 700;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: #ffcf4a;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(238, 247, 255, 0.88);
  font-size: 17px;
  line-height: 1.95;
}

html[lang="en"] .hero-copy > p {
  line-height: 1.65;
}

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

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
}

.hero-assurances li span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  border-radius: 50%;
  background: #66e3bd;
  font-size: 11px;
}

.doctor-float-card {
  position: relative;
  justify-self: center;
  width: min(100%, 380px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
}

.doctor-float-card::before,
.doctor-float-card::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.doctor-float-card::before {
  width: 68px;
  height: 68px;
  inset-inline-end: -30px;
  inset-block-start: -34px;
}

.doctor-float-card::after {
  width: 28px;
  height: 28px;
  inset-inline-start: -38px;
  inset-block-end: 30%;
}

.doctor-photo-wrap {
  position: relative;
  width: 136px;
  height: 136px;
  margin-bottom: 21px;
  padding: 7px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.2);
}

.doctor-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  image-rendering: auto;
}

.online-pulse {
  position: absolute;
  inset-inline-end: 3px;
  inset-block-end: 3px;
  width: 19px;
  height: 19px;
  border: 4px solid var(--blue-900);
  border-radius: 50%;
  background: #63e6be;
}

.doctor-float-card small {
  display: block;
  color: #b9d8f4;
  font-size: 11px;
  font-weight: 700;
}

.doctor-float-card h2 {
  margin: 3px 0 1px;
  font-size: 25px;
  line-height: 1.4;
}

.doctor-float-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.hero-badge {
  position: absolute;
  inset-inline-end: -28px;
  inset-block-end: 28px;
  max-width: 150px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  color: var(--blue-950);
  border-radius: 15px;
  background: #ffcf4a;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(-2deg);
}

html[dir="ltr"] .hero-badge {
  transform: rotate(2deg);
}

.hero-badge span {
  color: var(--red-600);
}

.hero-badge b {
  font-size: 10px;
  line-height: 1.4;
}

.scroll-cue {
  position: absolute;
  inset-block-end: 25px;
  inset-inline-start: 50%;
  width: 27px;
  height: 42px;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 3px;
  height: 7px;
  margin-top: 8px;
  border-radius: 5px;
  background: #fff;
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(12px); }
}

.trust-strip {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -20px 45px rgba(5, 30, 55, 0.06);
}

.trust-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px clamp(16px, 2vw, 28px);
  border-inline-end: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-inline-start: 1px solid var(--line);
}

.trust-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border-radius: 12px;
  background: var(--blue-100);
  font-family: "Nunito", sans-serif;
  font-size: 11px;
  font-weight: 800;
}

.trust-grid p {
  display: grid;
  margin: 0;
  line-height: 1.5;
}

.trust-grid strong {
  font-size: 13px;
}

.trust-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.section {
  position: relative;
  padding-block: 110px;
}

.section-copy h2,
.section-heading h2,
.guides-intro h2,
.faq-intro h2,
.contact-details h2 {
  color: var(--blue-950);
  font-size: clamp(32px, 3.7vw, 52px);
  font-weight: 800;
}

.section-copy h2 span,
.section-copy h2 strong {
  display: block;
}

.section-copy h2 strong {
  color: var(--blue-700);
}

.section-copy > p,
.section-heading > p,
.faq-intro > p,
.contact-details > p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.95;
}

html[lang="en"] .section-copy > p,
html[lang="en"] .section-heading > p,
html[lang="en"] .faq-intro > p {
  line-height: 1.7;
}

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 20%, rgba(31, 104, 191, 0.07), transparent 27%),
    #fff;
}

.about-section::after {
  position: absolute;
  z-index: -1;
  inset-inline-end: -90px;
  inset-block-end: 45px;
  width: 260px;
  height: 260px;
  content: "";
  border: 45px solid rgba(240, 68, 81, 0.035);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.portrait-card {
  position: relative;
  width: min(100%, 410px);
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 44px;
  background: linear-gradient(145deg, #eaf4ff, #fff3db);
  box-shadow: var(--shadow-md);
}

.portrait-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(247, 191, 44, 0.5) 0 8%, transparent 8.5%),
    radial-gradient(circle at 20% 33%, rgba(31, 104, 191, 0.15) 0 13%, transparent 13.5%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.2), rgba(21, 87, 166, 0.06));
}

.portrait-backdrop::before,
.portrait-backdrop::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.portrait-backdrop::before {
  width: 250px;
  height: 250px;
  inset-inline-end: -110px;
  inset-block-end: 80px;
  border: 40px solid rgba(240, 68, 81, 0.08);
}

.portrait-backdrop::after {
  width: 65px;
  height: 65px;
  inset-inline-start: 35px;
  inset-block-end: 130px;
  background: rgba(14, 157, 131, 0.13);
}

.portrait-card > img {
  position: relative;
  z-index: 1;
  width: 205px;
  height: 205px;
  object-fit: cover;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 22px 50px rgba(11, 49, 92, 0.2);
}

.portrait-caption {
  position: absolute;
  z-index: 2;
  inset-inline: 25px;
  inset-block-end: 25px;
  display: grid;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
}

.portrait-caption span {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
}

.portrait-caption strong {
  margin-top: 2px;
  font-size: 16px;
}

.mini-note {
  position: absolute;
  z-index: 3;
  inset-inline-end: -25px;
  inset-block-start: 55px;
  width: 190px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  color: #fff;
  border-radius: 18px;
  background: var(--red-500);
  box-shadow: 0 16px 35px rgba(233, 54, 69, 0.25);
}

.mini-note > span {
  font-size: 14px;
}

.mini-note p {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
}

.about-points {
  display: grid;
  gap: 11px;
  margin-top: 32px;
}

.about-points article {
  display: flex;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.about-points article:hover {
  border-color: var(--line);
  background: var(--blue-50);
  transform: translateX(-4px);
}

html[dir="ltr"] .about-points article:hover {
  transform: translateX(4px);
}

.about-points article > span {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border-radius: 11px;
  background: var(--blue-100);
  font-family: "Nunito", sans-serif;
  font-size: 10px;
  font-weight: 800;
}

.about-points h3 {
  margin: 0;
  font-size: 14px;
}

.about-points p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.services-section {
  background: var(--surface-soft);
}

.services-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.34;
  background-image: radial-gradient(#a7bfd8 0.75px, transparent 0.75px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 75%, transparent);
}

.services-section .container {
  position: relative;
}

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

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p {
  max-width: 620px;
  margin-inline: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 55px;
}

.service-card {
  position: relative;
  min-height: 275px;
  padding: 29px;
  overflow: hidden;
  border: 1px solid #e3ebf3;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(24, 64, 100, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue-600), var(--red-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.service-card:hover {
  border-color: #cbddeb;
  box-shadow: 0 22px 50px rgba(20, 65, 105, 0.1);
  transform: translateY(-7px);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border-radius: 17px;
  background: var(--blue-100);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon-yellow { color: #a66e00; background: var(--yellow-100); }
.service-icon-red { color: var(--red-600); background: var(--red-50); }
.service-icon-purple { color: var(--purple-600); background: var(--purple-100); }
.service-icon-green { color: var(--green-600); background: var(--green-100); }
.service-icon-blue { color: #1384a4; background: #dff7ff; }

.card-number {
  position: absolute;
  inset-inline-end: 23px;
  inset-block-start: 23px;
  color: #cbd8e5;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.service-card h3 {
  margin: 24px 0 8px;
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.5;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.service-media {
  height: 128px;
  margin: -29px -29px 21px;
  overflow: hidden;
  border-bottom: 1px solid #d8e5f0;
  background: var(--blue-100);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-media-minimal img {
  object-position: center 49%;
}

.service-media-space-maintainers img {
  object-position: center 43%;
}

.service-media-fluoride img {
  object-position: center 53%;
}

.service-media-decay img {
  object-position: center 43%;
}

.service-media-checkups img {
  object-position: center 39%;
}

.service-card-with-photo:hover .service-media img {
  transform: scale(1.035);
}

.service-card-with-photo .card-number {
  inset-inline-end: 14px;
  inset-block-start: 13px;
  padding: 4px 8px;
  color: var(--blue-800);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 4px 14px rgba(8, 40, 73, 0.12);
  backdrop-filter: blur(8px);
}

.service-card-with-photo h3 {
  margin-top: 0;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
  text-align: center;
}

.services-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
}

.text-link b {
  font-size: 17px;
  transition: transform 0.2s ease;
}

html[dir="ltr"] .text-link b {
  transform: scaleX(-1);
}

.text-link:hover b {
  transform: translateX(-4px);
}

html[dir="ltr"] .text-link:hover b {
  transform: scaleX(-1) translateX(-4px);
}

.clinic-section {
  background: #fff;
}

.clinic-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.clinic-image-wrap {
  position: relative;
  min-height: 520px;
}

.clinic-image-wrap > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow-md);
}

.clinic-image-wrap::before {
  position: absolute;
  z-index: -1;
  inset-inline-start: -24px;
  inset-block-start: -24px;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 28px;
  background: var(--yellow-500);
  transform: rotate(8deg);
}

.clinic-image-label {
  position: absolute;
  inset-inline-start: 25px;
  inset-block-end: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.clinic-image-label > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: var(--red-500);
}

.clinic-image-label p {
  display: grid;
  margin: 0;
  line-height: 1.5;
}

.clinic-image-label strong {
  font-size: 12px;
}

.clinic-image-label small {
  color: var(--muted);
  font-size: 9px;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 31px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 13px;
}

.feature-list li > span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 9px;
  background: var(--green-600);
  font-size: 11px;
}

.feature-list li div {
  display: grid;
}

.feature-list strong {
  font-size: 13px;
}

.feature-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.patients-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(247, 191, 44, 0.14), transparent 24%),
    radial-gradient(circle at 92% 82%, rgba(31, 104, 191, 0.09), transparent 27%),
    var(--surface-soft);
}

.patients-authentic-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  margin-top: 56px;
}

.patients-poster-stack {
  min-width: 0;
  height: 590px;
  display: grid;
  grid-template-rows: minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
}

.patients-poster-stack .patient-story {
  min-height: 0;
}

.patient-story {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 71, 127, 0.1);
  background: #dcecff;
  box-shadow: var(--shadow-sm);
}

.patient-story {
  min-height: 590px;
  border-radius: 30px;
}

.patient-story img {
  width: 100%;
  height: 100%;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.patient-story-featured img {
  object-fit: cover;
  object-position: center 42%;
}

.patient-story-poster img,
.patient-story-mini img {
  padding: 10px;
  object-fit: contain;
  background: linear-gradient(145deg, #d9edff, #eef7ff);
}

.patient-story-mini img {
  image-rendering: auto;
}

.patient-story::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 30, 55, 0.82), transparent 44%);
}

.patient-story figcaption {
  position: absolute;
  z-index: 1;
  inset-inline: 24px;
  inset-block-end: 22px;
  display: grid;
  color: #fff;
  line-height: 1.5;
}

.patient-story figcaption span {
  margin-bottom: 3px;
  color: #d6eaff;
  font-size: 10px;
  font-weight: 800;
}

.patient-story figcaption strong {
  font-size: 17px;
}

.patient-story:hover img {
  transform: scale(1.025);
}

.patients-gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 38px;
}

.patients-gallery-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.journey-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 15%, rgba(36, 119, 202, 0.35), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(240, 68, 81, 0.15), transparent 30%),
    var(--blue-950);
  overflow: hidden;
}

.journey-section::before,
.journey-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.journey-section::before {
  width: 380px;
  height: 380px;
  inset-inline-start: -150px;
  inset-block-start: -170px;
}

.journey-section::after {
  width: 180px;
  height: 180px;
  inset-inline-end: -60px;
  inset-block-end: -60px;
}

.journey-section .section-heading h2 {
  color: #fff;
}

.journey-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 55px;
}

.journey-grid::before {
  position: absolute;
  inset-inline: 16%;
  inset-block-start: 45px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.journey-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.journey-card > span {
  color: rgba(255, 255, 255, 0.16);
  font-family: "Nunito", sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.journey-dot {
  width: 13px;
  height: 13px;
  margin: 14px auto 22px;
  border: 4px solid var(--blue-950);
  border-radius: 50%;
  background: var(--yellow-500);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.journey-card h3 {
  margin: 0;
  font-size: 18px;
}

.journey-card p {
  max-width: 280px;
  margin: 8px auto 0;
  color: rgba(222, 238, 251, 0.7);
  font-size: 11px;
}

.guides-section {
  background: #fff;
}

.guides-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.guides-intro > div {
  max-width: 750px;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.guide-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: 195px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.guide-art {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.guide-blue .guide-art { color: #fff; background: linear-gradient(135deg, #176bc4, #0e4b8e); }
.guide-yellow .guide-art { color: var(--blue-950); background: linear-gradient(135deg, #ffdb70, #f6b91d); }
.guide-red .guide-art { color: #fff; background: linear-gradient(135deg, #f35360, #d92839); }

.guide-art > span {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 27px;
  background: rgba(255, 255, 255, 0.15);
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  transform: rotate(-5deg);
}

.guide-art i {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.17;
}

.guide-art i:nth-child(2) { width: 170px; height: 170px; inset-inline-start: -65px; inset-block-start: -75px; }
.guide-art i:nth-child(3) { width: 70px; height: 70px; inset-inline-end: 18px; inset-block-start: 18px; }
.guide-art i:nth-child(4) { width: 110px; height: 110px; inset-inline-end: -45px; inset-block-end: -45px; }

.guide-content {
  padding: 25px;
}

.guide-content small {
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
}

.guide-content h3 {
  margin: 6px 0 9px;
  color: var(--blue-950);
  font-size: 17px;
  line-height: 1.55;
}

.guide-content p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.faq-section {
  background: var(--blue-50);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.faq-intro {
  position: sticky;
  top: 125px;
}

.faq-intro .text-link {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 5px 22px rgba(23, 60, 95, 0.035);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-list details[open] {
  border-color: #bcd2e6;
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  position: relative;
  padding: 20px 55px 20px 22px;
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

html[dir="ltr"] .faq-list summary {
  padding: 20px 22px 20px 55px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 21px;
  width: 14px;
  height: 2px;
  content: "";
  border-radius: 2px;
  background: var(--blue-700);
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

html[dir="ltr"] .faq-list summary::before,
html[dir="ltr"] .faq-list summary::after {
  inset-inline-start: auto;
  inset-inline-end: 21px;
}

.faq-list summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(0);
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.booking-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 25%, rgba(46, 132, 219, 0.34), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(240, 68, 81, 0.2), transparent 28%),
    var(--blue-950);
}

.booking-section::before {
  position: absolute;
  inset-inline-end: -120px;
  inset-block-start: -150px;
  width: 390px;
  height: 390px;
  content: "";
  border: 65px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
}

.booking-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.booking-copy {
  position: relative;
  z-index: 1;
}

.booking-copy h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
}

.booking-copy > p {
  margin: 20px 0 0;
  color: rgba(222, 238, 251, 0.75);
  font-size: 14px;
}

.booking-contact {
  display: grid;
  gap: 12px;
  margin-top: 35px;
}

.booking-contact > a,
.booking-contact > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-contact > a > span,
.booking-contact > div > span {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #ffdb70;
  background: rgba(255, 255, 255, 0.09);
}

.booking-contact div div,
.booking-contact div p,
.booking-contact a div {
  display: grid;
  margin: 0;
}

.booking-contact small {
  color: #9ab9d7;
  font-size: 9px;
}

.booking-contact strong {
  margin-top: 1px;
  font-size: 12px;
}

.booking-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  padding: 30px;
  color: var(--ink);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 3px;
}

.form-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 13px;
  background: var(--red-500);
}

.form-heading h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 19px;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.booking-form label {
  display: grid;
  gap: 6px;
  color: #354c62;
  font-size: 10px;
  font-weight: 800;
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #dce6ef;
  outline: none;
  border-radius: 11px;
  background: #f9fbfd;
  font-size: 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form input,
.booking-form select {
  height: 47px;
  padding: 0 13px;
}

.booking-form textarea {
  padding: 11px 13px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #83b4e3;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 104, 191, 0.1);
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #99a8b6;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-submit svg {
  margin-inline-start: auto;
}

.contact-section {
  padding-block: 110px;
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(45px, 7vw, 80px);
}

.contact-card-list {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.contact-card-list > a,
.contact-card-list > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-card-list > a:hover {
  border-color: #bfd4e6;
  background: var(--blue-50);
  transform: translateX(-3px);
}

html[dir="ltr"] .contact-card-list > a:hover {
  transform: translateX(3px);
}

.contact-symbol {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  border-radius: 12px;
  background: var(--blue-100);
  font-size: 16px;
}

.contact-card-list p {
  min-width: 0;
  display: grid;
  flex: 1;
  margin: 0;
}

.contact-card-list small {
  color: var(--muted);
  font-size: 9px;
}

.contact-card-list strong {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.6;
}

.contact-card-list > a > b {
  color: #9bb0c4;
  font-size: 13px;
}

.map-card {
  position: relative;
  min-height: 510px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  height: 490px;
  display: block;
  border: 0;
  border-radius: 22px;
}

.map-link {
  position: absolute;
  inset-inline-start: 29px;
  inset-block-end: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 15px;
  color: #fff;
  border-radius: 12px;
  background: var(--blue-700);
  box-shadow: 0 12px 30px rgba(10, 50, 90, 0.25);
  font-size: 11px;
  font-weight: 800;
}

.site-footer {
  color: #b7cee2;
  background: #061f38;
}

.footer-main {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 45px;
  padding-block: 45px;
}

.footer-brand img {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small {
  color: #8fb0cc;
}

.footer-main > p {
  margin: 0;
  color: #89a8c3;
  font-size: 11px;
  line-height: 1.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 22px;
}

.footer-links a {
  color: #c4d7e7;
  font-size: 10px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: #6689a7;
  font-size: 9px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 25;
  inset-inline-end: 22px;
  inset-block-end: 22px;
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  color: #fff;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  background: #10a56f;
  box-shadow: 0 14px 35px rgba(12, 92, 62, 0.28);
  font-size: 10px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp:hover {
  box-shadow: 0 18px 44px rgba(12, 92, 62, 0.36);
  transform: translateY(-3px);
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-sm { transition-delay: 0.08s; }
.reveal-delay-md { transition-delay: 0.16s; }

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .desktop-book {
    display: none;
  }

  .hero-grid {
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.5vw, 60px);
  }

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

  .patients-authentic-grid {
    grid-template-columns: 1fr;
  }

  .patient-story-featured {
    min-height: 560px;
  }

  .patients-poster-stack {
    height: auto;
    grid-template-columns: 1.25fr 0.75fr;
    grid-template-rows: none;
  }

  .patient-story-poster,
  .patient-story-mini {
    min-height: 430px;
  }

}

@media (max-width: 850px) {
  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 47px;
    height: 47px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 13px;
  }

  .main-nav {
    position: fixed;
    z-index: 100;
    inset: 108px 16px auto;
    max-height: calc(100vh - 130px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 14px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px) scale(0.98);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .main-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid #edf2f6;
    font-size: 13px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-block: 85px 105px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .doctor-float-card {
    justify-self: start;
    width: min(100%, 430px);
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 18px;
  }

  .doctor-photo-wrap {
    width: 112px;
    height: 112px;
    margin: 0;
  }

  .hero-badge {
    inset-inline-end: -10px;
    inset-block-end: -18px;
  }

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

  .trust-grid > div:nth-child(3) {
    border-inline-start: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .about-grid,
  .clinic-grid,
  .booking-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .clinic-grid {
    gap: 70px;
  }

  .clinic-image-wrap {
    order: 2;
  }

  .clinic-grid .section-copy {
    order: 1;
  }

  .journey-grid {
    gap: 16px;
  }

  .guides-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    justify-self: center;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .booking-copy {
    max-width: 650px;
  }

  .map-card {
    min-height: 430px;
  }

  .map-card iframe {
    height: 410px;
  }

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

  .footer-main > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .topbar-inner {
    min-height: 34px;
  }

  .topbar p {
    max-width: 72%;
    font-size: 9px;
  }

  .topbar a {
    font-size: 9px;
  }

  .brand strong {
    font-size: 11px;
  }

  .brand small {
    font-size: 9px;
  }

  .language-toggle {
    min-width: 38px;
    height: 40px;
    padding: 0 8px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    inset-block-start: 102px;
  }

  .hero-image {
    background-position: 38% center;
  }

  .hero-overlay,
  html[dir="ltr"] .hero-overlay {
    background: linear-gradient(180deg, rgba(5, 30, 55, 0.96) 0%, rgba(5, 30, 55, 0.82) 64%, rgba(5, 30, 55, 0.93) 100%);
  }

  .hero-grid {
    gap: 28px;
    padding-block: 34px 88px;
  }

  .doctor-float-card {
    order: -1;
    width: 100%;
    transition-delay: 0s;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 52px);
  }

  .hero-copy > p {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-assurances {
    gap: 11px;
  }

  .doctor-float-card {
    grid-template-columns: 86px 1fr;
    gap: 14px;
    padding: 20px;
    border-radius: 24px;
  }

  .doctor-photo-wrap {
    width: 86px;
    height: 86px;
    padding: 5px;
    border-radius: 22px;
  }

  .doctor-photo-wrap img {
    border-radius: 17px;
  }

  .doctor-float-card h2 {
    font-size: 19px;
  }

  .doctor-float-card p {
    font-size: 10px;
  }

  .hero-badge {
    max-width: 125px;
    inset-inline-end: 10px;
    padding: 9px 12px;
  }

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

  .trust-grid > div {
    border-inline-start: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .trust-grid > div:first-child {
    border-top: 0;
  }

  .section,
  .contact-section {
    padding-block: 78px;
  }

  .section-copy h2,
  .section-heading h2,
  .guides-intro h2,
  .faq-intro h2,
  .contact-details h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .about-visual {
    min-height: 450px;
  }

  .portrait-card {
    min-height: 440px;
    border-radius: 34px;
  }

  .portrait-card > img {
    width: 175px;
    height: 175px;
  }

  .mini-note {
    width: 165px;
    inset-inline-end: -4px;
    inset-block-start: 32px;
  }

  .services-grid,
  .journey-grid,
  .guides-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .services-cta,
  .guides-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .clinic-image-wrap,
  .clinic-image-wrap > img {
    min-height: 390px;
    height: 390px;
  }

  .clinic-image-wrap > img {
    border-radius: 28px;
  }

  .patients-authentic-grid {
    margin-top: 38px;
  }

  .patients-poster-stack {
    grid-template-columns: 1fr;
  }

  .patients-poster-stack {
    height: auto;
    grid-template-rows: none;
  }

  .patient-story,
  .patient-story-featured,
  .patient-story-poster {
    min-height: 0;
    height: 490px;
    border-radius: 24px;
  }

  .patient-story-mini {
    height: 310px;
  }

  .patients-gallery-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-grid::before {
    display: none;
  }

  .journey-card {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
  }

  .journey-card > span {
    font-size: 42px;
  }

  .guide-card,
  .guide-card:last-child {
    max-width: none;
    grid-column: auto;
  }

  .faq-list summary {
    font-size: 12px;
  }

  .booking-form {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 370px;
    border-radius: 24px;
  }

  .map-card iframe {
    height: 350px;
    border-radius: 17px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0;
    border-radius: 18px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
