@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --top-strip-height: 48px;
  --page-top-offset: calc(var(--top-strip-height) + 160px);
}

:root {
  --ink: #16313a;
  --muted: #667982;
  --line: #dce7e7;
  --paper: #fbfafa;
  --mist: #eff7f5;
  --teal: #0f7f82;
  --teal-dark: #0a5f63;
  --coral: #cf6f5b;
  --gold: #b58b51;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(21, 49, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

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

.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  min-height: var(--top-strip-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 7px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(22, 49, 58, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(22, 49, 58, 0.08);
  backdrop-filter: blur(12px);
}

.top-strip-social,
.top-strip-hours,
.hours-group {
  display: flex;
  align-items: center;
}

.top-strip-social {
  gap: 8px;
}

.social-icon,
.language-link {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  box-shadow: 0 10px 22px rgba(22, 49, 58, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-icon:hover,
.language-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 49, 58, 0.18);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #31d366, #0bbf55);
}

.social-icon.facebook {
  background: linear-gradient(135deg, #4b8cff, #1769d7);
}

.social-icon.instagram {
  background:
    radial-gradient(circle at 28% 105%, #feda75 0 18%, transparent 34%),
    linear-gradient(135deg, #405de6, #c13584 50%, #fd1d1d 78%, #f77737);
}

.language-link {
  border: 2px solid var(--white);
  background: #f2f7f8;
  overflow: hidden;
}

.language-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
}

.flag-tr {
  background: #e30a17;
}

.flag-tr::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 15px;
  height: 15px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 0 0 1px #e30a17;
}

.flag-tr::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 4px solid var(--white);
  border-left: 5px solid transparent;
  transform: rotate(35deg);
}

.flag-gb {
  background:
    linear-gradient(33deg, transparent 42%, #ffffff 42% 49%, #c8102e 49% 55%, #ffffff 55% 62%, transparent 62%),
    linear-gradient(-33deg, transparent 42%, #ffffff 42% 49%, #c8102e 49% 55%, #ffffff 55% 62%, transparent 62%),
    linear-gradient(0deg, transparent 39%, #ffffff 39% 61%, transparent 61%),
    linear-gradient(90deg, transparent 39%, #ffffff 39% 61%, transparent 61%),
    linear-gradient(0deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
    linear-gradient(90deg, transparent 44%, #c8102e 44% 56%, transparent 56%),
    #012169;
}

.top-strip-hours {
  gap: 18px;
  color: var(--ink);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.15;
}

.top-strip-hours strong {
  font-size: 14px;
  font-weight: 800;
}

.hours-group {
  gap: 12px;
}

.hours-item {
  display: grid;
  gap: 2px;
  min-width: max-content;
}

.hours-item b {
  font-size: 12px;
  font-weight: 700;
}

.hours-item span {
  position: relative;
  padding-left: 16px;
  font-weight: 800;
}

.hours-item span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 3px solid var(--ink);
  border-top-color: transparent;
  border-radius: 999px;
  transform: translateY(-50%);
}

.site-header {
  position: fixed;
  top: var(--top-strip-height);
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(22, 49, 58, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(22, 49, 58, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 8px 12px;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: clamp(162px, 18vw, 254px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

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

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: var(--ink);
  opacity: 0.96;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 270px;
  padding: 12px;
  border: 1px solid rgba(22, 49, 58, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(22, 49, 58, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--mist);
  color: var(--teal-dark);
}

.header-cta-stack {
  display: grid;
  justify-items: stretch;
  gap: 8px;
}

.header-action,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
}

.header-action {
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
}

.header-action.whatsapp-appointment {
  position: relative;
  top: 12px;
  display: grid;
  min-width: 250px;
  min-height: 72px;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #25d366 0%, #16c765 58%, #0fb855 100%);
  box-shadow: 0 16px 34px rgba(16, 185, 85, 0.32);
  color: var(--white);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.header-action.whatsapp-appointment:hover {
  background: linear-gradient(135deg, #32df73 0%, #18c968 58%, #0fac53 100%);
  box-shadow: 0 20px 42px rgba(16, 185, 85, 0.42);
}

.whatsapp-mark {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  justify-self: center;
}

.whatsapp-mark svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.form-appointment-link {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 127, 130, 0.24);
  border-radius: 8px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-dark);
  font-family: "Outfit", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(22, 49, 58, 0.1);
}

.form-appointment-link:hover {
  color: var(--white);
  background: var(--teal);
}

.button {
  border: 0;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover,
.header-action:hover {
  background: var(--teal-dark);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: inherit;
  background: transparent;
}

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

.site-header .service-mobile-nav,
.site-header .service-mobile-whatsapp {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: center;
  padding: calc(var(--top-strip-height) + 172px) clamp(20px, 6vw, 90px) 86px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 24%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 34, 41, 0.86) 0%, rgba(13, 34, 41, 0.6) 42%, rgba(13, 34, 41, 0.12) 100%),
    linear-gradient(0deg, rgba(13, 34, 41, 0.4), rgba(13, 34, 41, 0.08));
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(39px, 6vw, 79px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(14px, 1.7vw, 18px);
}

.hero-copy p {
  margin: 0;
}

.hero-copy p + p {
  margin-top: 16px;
}

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

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: 28px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(620px, calc(100% - 40px));
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-panel div {
  padding: 22px;
}

.hero-panel div + div {
  border-left: 1px solid var(--line);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.quick-info,
.section,
.approach,
.appointment,
.contact,
.site-footer {
  padding-inline: clamp(20px, 6vw, 90px);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.quick-info article {
  background: var(--white);
  padding: clamp(24px, 4vw, 42px);
}

.quick-info span {
  color: var(--gold);
  font-weight: 800;
}

.quick-info h2 {
  margin: 14px 0 8px;
  font-size: 22px;
}

.quick-info p,
.service-card p,
.approach p,
.feature-list,
.appointment p,
.contact-card p,
.site-footer {
  color: var(--muted);
}

.section {
  padding-top: clamp(72px, 10vw, 130px);
  padding-bottom: clamp(72px, 10vw, 130px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.services-heading {
  display: block;
  text-align: center;
}

.services-heading .eyebrow {
  color: #8fc9ef;
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1;
  letter-spacing: 0.04em;
}

.service-title {
  margin: 0;
  color: #8fc9ef;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  text-transform: none;
}

.service-page-main {
  scroll-margin-top: 190px;
}

.section h2,
.approach h2,
.appointment h2,
.contact h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.04;
}

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

.service-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  text-align: left;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(21, 49, 58, 0.06);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  color: inherit;
  text-decoration: none;
}

.service-card:hover,
.service-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(15, 127, 130, 0.34);
  box-shadow: 0 18px 34px rgba(21, 49, 58, 0.1);
}

.service-thumb {
  display: block;
  width: 110px;
  height: 92px;
  border-radius: 22px;
  background: var(--mist);
  overflow: hidden;
}

.service-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.16);
  transform-origin: center top;
}

.service-detail img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.service-image-frame {
  position: relative;
}

.service-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.service-image-logo {
  position: absolute;
  left: 18px;
  bottom: 18px;
  width: 120px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.service-card-body span {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.2;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.service-detail-shell {
  position: sticky;
  top: calc(var(--top-strip-height) + 160px);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfb 100%);
  box-shadow: var(--shadow);
}

.service-detail {
  display: none;
}

.service-detail.is-active {
  display: block;
}

.service-detail h3 {
  margin: 0 0 16px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.service-detail p {
  margin: 0 0 14px;
}

.service-mobile-detail {
  display: none;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
  background: var(--mist);
}

.approach-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
}

.approach-copy {
  padding-right: 10px;
}

.approach > div:last-child {
  align-self: start;
  position: sticky;
  top: 106px;
}

.approach > div:last-child img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.approach h2 {
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.18;
  white-space: nowrap;
}

.question-heading {
  font-weight: 800;
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--teal);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 22px;
  border-left: 4px solid var(--teal);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(21, 49, 58, 0.08);
}

.timeline span {
  font-weight: 800;
}

.timeline p {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
}

.feature-list p {
  margin-top: 0;
}

.feature-list ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--coral);
}

.appointment {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  padding-top: clamp(70px, 9vw, 110px);
  padding-bottom: clamp(70px, 9vw, 110px);
  color: var(--white);
  background: var(--ink);
}

.appointment .eyebrow {
  color: #ffb7a8;
}

.appointment p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 1fr);
  gap: clamp(26px, 6vw, 70px);
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.contact-methods div {
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 800;
}

.contact-methods span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer,
.legal-footer {
  border-top: 1px solid var(--line);
}

.legal-footer {
  padding: 30px clamp(20px, 6vw, 90px);
  background:
    linear-gradient(135deg, rgba(239, 247, 245, 0.92), rgba(255, 255, 255, 0.98));
  color: var(--muted);
}

.legal-footer-inner {
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  max-width: 1180px;
}

.legal-footer-brand {
  display: inline-flex;
  width: fit-content;
  padding: 10px 12px;
  background: transparent;
  box-shadow: none;
}

.legal-footer-brand img {
  width: min(190px, 42vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.legal-footer p {
  margin: 0;
  max-width: 980px;
  font-size: 13px;
  line-height: 1.72;
  letter-spacing: 0;
}

.legal-footer strong {
  color: var(--ink);
  font-weight: 800;
}

.copyright-footer {
  padding: 16px clamp(20px, 6vw, 90px);
  border-top: 1px solid rgba(22, 49, 58, 0.08);
  background: #0f2e38;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.copyright-footer p {
  margin: 0;
}

.contact-page {
  padding-top: var(--page-top-offset);
  background:
    radial-gradient(circle at 12% 18%, rgba(15, 127, 130, 0.14), transparent 28%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 48%, #eff7f5 100%);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  padding: 0 clamp(20px, 6vw, 90px) clamp(56px, 8vw, 96px);
}

.contact-hero-copy {
  display: grid;
  align-content: center;
}

.contact-hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.contact-hero-copy p {
  margin: 22px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.address-card,
.contact-action-card {
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.address-card {
  overflow: hidden;
}

.map-preview {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 127, 130, 0.78), rgba(22, 49, 58, 0.74)),
    url("assets/ctg-dental-hero.png") center / cover;
  color: var(--white);
}

.map-preview::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
}

.map-pin {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  font-weight: 800;
}

.map-pin span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal);
  font-size: 26px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.address-details {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
}

.address-details h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.address-details p {
  margin: 0;
  color: var(--muted);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-link,
.contact-action-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.contact-link {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.contact-link span,
.contact-action-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.appointment-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.contact-action-card h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.contact-action-card p {
  margin: 0;
  color: var(--muted);
}

.contact-action-card .button {
  width: fit-content;
  margin-top: 10px;
}

.contact-action-card.whatsapp-card {
  background: linear-gradient(135deg, #f4fff8, #ffffff);
}

.appointment-page {
  padding-top: var(--page-top-offset);
  background:
    radial-gradient(circle at 15% 8%, rgba(15, 127, 130, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 54%, #eff7f5 100%);
}

.appointment-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.appointment-intro {
  position: sticky;
  top: calc(var(--top-strip-height) + 110px);
  display: grid;
  gap: 18px;
}

.appointment-intro h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.appointment-intro p {
  margin: 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.appointment-note {
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 36px rgba(21, 49, 58, 0.08);
}

.appointment-request-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

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

.appointment-request-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.appointment-request-form input,
.appointment-request-form select,
.appointment-request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.appointment-request-form textarea,
.form-full {
  grid-column: 1 / -1;
}

.appointment-request-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-consent input {
  width: auto;
  margin-top: 4px;
}

.appointment-request-form .button {
  width: fit-content;
}

.corporate-page {
  padding-top: var(--page-top-offset);
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 127, 130, 0.13), transparent 28%),
    linear-gradient(180deg, #f8fcfc 0%, #ffffff 48%, #eff7f5 100%);
}

.corporate-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: 0 clamp(20px, 6vw, 90px) clamp(42px, 7vw, 78px);
}

.corporate-hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.corporate-hero p {
  margin: 20px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.about-hero {
  align-items: center;
}

.about-hero-visual {
  position: relative;
  min-height: clamp(300px, 36vw, 500px);
  border: 1px solid rgba(22, 49, 58, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: var(--mist);
  box-shadow: 0 24px 58px rgba(21, 49, 58, 0.16);
}

.about-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 34, 41, 0.02), rgba(13, 34, 41, 0.3)),
    linear-gradient(90deg, rgba(13, 34, 41, 0.14), transparent 54%);
  pointer-events: none;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.doctors-hero {
  grid-template-columns: minmax(0, 1fr);
}

.corporate-quick {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.corporate-quick span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.corporate-content {
  display: grid;
  gap: 22px;
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.content-panel,
.doctor-card,
.timeline-card {
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(21, 49, 58, 0.08);
}

.content-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

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

.content-panel h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.content-panel h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.content-panel p,
.content-panel li {
  color: var(--muted);
}

.content-panel p {
  margin: 0;
}

.content-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.service-summary-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.service-summary-copy {
  display: grid;
  gap: 18px;
}

.service-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px clamp(20px, 3vw, 34px);
}

.service-summary-grid section {
  min-width: 0;
}

.service-summary-grid h4 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.service-video-panel {
  position: sticky;
  top: calc(var(--top-strip-height) + 160px);
  align-self: start;
  overflow: hidden;
  border: 1px solid rgba(22, 49, 58, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 245, 0.92));
  box-shadow: 0 20px 50px rgba(21, 49, 58, 0.1);
}

.service-video-panel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  background: var(--ink);
  object-fit: cover;
}

.content-panel > .service-video-panel {
  position: static;
  align-self: stretch;
  margin-top: 4px;
}

.organization-chart-card {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 201, 239, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 249, 249, 0.92));
  box-shadow: 0 24px 60px rgba(21, 49, 58, 0.12);
}

.organization-chart-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(143, 201, 239, 0.35);
  border-radius: 24px;
  pointer-events: none;
}

.organization-chart-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1320px);
  min-width: min(760px, 100%);
  height: auto;
  margin: 0 auto;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(21, 49, 58, 0.1);
}

.social-projects {
  gap: 26px;
}

.social-project-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 52px rgba(21, 49, 58, 0.08);
}

.social-project-card > img,
.project-gallery img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  background: var(--mist);
}

.social-project-card > div:not(.project-gallery) {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
}

.social-project-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-project-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.08;
}

.social-project-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.social-project-card.text-only {
  grid-template-columns: 1fr;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.blog-page {
  min-height: 100vh;
  padding-top: var(--page-top-offset);
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 201, 239, 0.24), transparent 28%),
    linear-gradient(180deg, #f8fcfc 0%, #eef7f6 100%);
}

.blog-hero {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 4vw, 56px) clamp(20px, 6vw, 90px) clamp(18px, 3vw, 36px);
}

.blog-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(35px, 4.3vw, 69px);
  line-height: 0.96;
}

.blog-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.blog-list {
  display: grid;
  gap: 28px;
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.blog-post-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(21, 49, 58, 0.1);
}

.blog-post-card > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  background: var(--mist);
}

.blog-post-content {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 48px);
}

.blog-post-content > span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(143, 201, 239, 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.3vw, 39px);
  line-height: 1.02;
}

.blog-post-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.blog-link-button,
.blog-read-more {
  margin-top: 8px;
}

.blog-link-button {
  width: fit-content;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.blog-link-button:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
}

.blog-read-more {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.blog-read-more summary {
  width: fit-content;
  cursor: pointer;
  list-style: none;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.blog-read-more summary::-webkit-details-marker {
  display: none;
}

.blog-read-more summary:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
}

.blog-read-more div {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.blog-read-more h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 20px;
}

.blog-detail-page {
  min-height: 100vh;
  padding-top: var(--page-top-offset);
  background:
    radial-gradient(circle at 15% 10%, rgba(143, 201, 239, 0.22), transparent 26%),
    linear-gradient(180deg, #f8fcfc 0%, #eef7f6 100%);
}

.blog-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: 0 clamp(20px, 6vw, 90px) clamp(36px, 6vw, 72px);
}

.blog-detail-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(33px, 4.1vw, 65px);
  line-height: 0.98;
}

.blog-detail-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.blog-detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(21, 49, 58, 0.14);
}

.blog-detail-body {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 90px) clamp(70px, 9vw, 110px);
}

.blog-detail-body article {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(22, 49, 58, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 56px rgba(21, 49, 58, 0.09);
}

.blog-detail-body h2,
.blog-detail-body h3 {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.12;
}

.blog-detail-body h2 {
  font-size: clamp(21px, 2.3vw, 37px);
}

.blog-detail-body h3 {
  font-size: clamp(15px, 1.3vw, 23px);
}

.blog-detail-body p,
.blog-detail-body li {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.blog-detail-body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.blog-back-link {
  width: fit-content;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.doctor-grid,
.corporate-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.doctor-card {
  overflow: hidden;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  background: var(--mist);
}

.doctor-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.doctor-card span,
.timeline-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.doctor-card h2,
.timeline-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.12;
}

.doctor-card p,
.timeline-card p {
  margin: 0;
  color: var(--muted);
}

.doctor-grid-compact {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  justify-content: center;
}

.doctor-grid-compact .doctor-card img {
  width: calc(100% - 28px);
  max-width: 170px;
  margin: 14px auto 0;
  border-radius: 18px;
  aspect-ratio: 4 / 5;
}

.doctor-grid-compact .doctor-card div {
  padding: 14px 16px 20px;
}

.doctor-grid-compact .doctor-card h2 {
  font-size: 18px;
}

.doctor-grid-compact .doctor-card p {
  font-size: 14px;
}

.timeline-card {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.compact-corporate-grid {
  gap: 14px;
}

.compact-corporate-grid .timeline-card {
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
}

.compact-corporate-grid .timeline-card h2 {
  font-size: 19px;
}

.compact-corporate-grid .timeline-card p {
  font-size: 14px;
  line-height: 1.45;
}

.corporate-image {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.career-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.career-form .form-full {
  grid-column: 1 / -1;
}

.kvkk-panel {
  gap: 16px;
}

.kvkk-panel h3 {
  margin-top: 8px;
}

.kvkk-bullet {
  position: relative;
  padding-left: 18px;
}

@media (max-width: 980px) {
  :root {
    --top-strip-height: 82px;
    --mobile-action-height: 52px;
    --page-top-offset: calc(var(--top-strip-height) + 160px + var(--mobile-action-height));
  }

  .top-strip {
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .top-strip-hours {
    width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
  }

  .hours-group {
    gap: 10px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand-logo {
    width: min(190px, 48vw);
    height: auto;
    max-height: 54px;
    object-fit: contain;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    display: none;
  }

  .site-header > .header-action:not(.whatsapp-appointment) {
    display: none;
  }

  .site-header > .header-action.whatsapp-appointment,
  .site-header > .header-cta-stack {
    grid-column: 1 / -1;
    display: grid;
    order: 3;
    width: 100%;
  }

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

  .site-header.is-open {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-header.is-open .site-nav a,
  .site-header.is-open .nav-dropdown-trigger {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .site-header.is-open .nav-dropdown {
    position: static;
  }

  .site-header.is-open .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-header.is-open .nav-dropdown-menu a {
    padding: 9px 0;
    border-top: 0;
    color: var(--muted);
    white-space: normal;
  }

  .site-header .header-action.whatsapp-appointment {
    top: 0;
    display: inline-flex;
    width: 100%;
    min-width: 0;
    min-height: var(--mobile-action-height);
    gap: 8px;
    padding: 8px 14px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .site-header .header-action.whatsapp-appointment > span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header .whatsapp-mark {
    flex: 0 0 auto;
  }

  .site-header .form-appointment-link {
    display: none;
  }

  .hero {
    padding-top: var(--page-top-offset);
  }

  .quick-info,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-grid-compact {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
  }

  .section-heading,
  .services-layout,
  .approach,
  .split,
  .appointment,
  .social-project-card,
  .blog-post-card,
  .blog-detail-hero,
  .contact {
    grid-template-columns: 1fr;
  }

  .social-project-card > img,
  .project-gallery img,
  .blog-post-card > img,
  .blog-detail-hero img {
    min-height: 220px;
  }

  .services-layout .service-detail-shell {
    display: none;
  }

  .service-mobile-detail {
    display: grid;
    grid-column: 1 / -1;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(15, 127, 130, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
    box-shadow: 0 14px 32px rgba(21, 49, 58, 0.1);
  }

  .service-mobile-detail p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    white-space: pre-line;
  }

  .service-mobile-readmore {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    border-radius: 8px;
    padding: 0 18px;
    background: var(--teal);
    color: var(--white);
    font-weight: 800;
  }

  .service-mobile-readmore:hover {
    background: var(--teal-dark);
  }
}

@media (hover: none) and (pointer: coarse) and (max-width: 1366px) {
  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-layout .service-detail-shell {
    display: none;
  }

  .service-mobile-detail {
    display: grid;
    grid-column: 1 / -1;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(15, 127, 130, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
    box-shadow: 0 14px 32px rgba(21, 49, 58, 0.1);
  }

  .service-mobile-detail p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
    white-space: pre-line;
  }

  .service-mobile-readmore {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    justify-self: start;
    border-radius: 8px;
    padding: 0 18px;
    background: var(--teal);
    color: var(--white);
    font-weight: 800;
  }

  .service-mobile-readmore:hover {
    background: var(--teal-dark);
  }
}

@media (max-width: 680px) {
  :root {
    --top-strip-height: 96px;
  }

  .top-strip-hours {
    flex-wrap: wrap;
  }

  .top-strip-hours strong {
    width: 100%;
    text-align: center;
  }

  .social-icon,
  .language-link {
    width: 32px;
    height: 32px;
  }

  .brand {
    padding: 7px 9px;
  }

  .brand-logo {
    width: min(174px, 48vw);
  }

  .hero {
    min-height: auto;
    padding-top: var(--page-top-offset);
    padding-bottom: 210px;
  }

  .service-page-main {
    padding-top: var(--page-top-offset) !important;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .header-action.whatsapp-appointment {
    min-height: 62px;
    font-size: 13px;
  }

  .hero-panel {
    left: 20px;
    right: 20px;
    grid-template-columns: 1fr;
  }

  .hero-panel div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .quick-info,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .service-thumb {
    width: 92px;
    height: 78px;
    border-radius: 18px;
  }

  .service-card {
    min-height: 0;
  }

  .service-detail-shell {
    position: static;
    padding: 20px;
  }

  .approach h2 {
    white-space: normal;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    flex-direction: column;
  }

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

  .legal-footer p {
    font-size: 12.5px;
  }

  .contact-hero,
  .appointment-actions,
  .appointment-form-section,
  .service-summary-panel,
  .corporate-hero,
  .doctor-grid,
  .doctor-grid-compact,
  .corporate-card-grid,
  .career-form,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-page,
  .appointment-page,
  .corporate-page {
    padding-top: var(--page-top-offset);
  }

  .about-hero-visual {
    min-height: 340px;
  }

  .service-summary-grid {
    grid-template-columns: 1fr;
  }

  .service-video-panel {
    position: static;
  }

  .appointment-intro {
    position: static;
  }

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