:root {
  --navy: #0b2148;
  --navy-2: #12305f;
  --navy-3: #1a4278;
  --red: #c8102e;
  --red-dark: #9a0e24;
  --red-soft: #fde8ec;
  --cyan: #0aa3b8;
  --gold: #c9a227;
  --text: #162033;
  --muted: #5b6578;
  --line: #e6ebf3;
  --bg: #f5f7fb;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 33, 72, 0.12);
  --radius: 18px;
  --header-h: 118px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  direction: ltr;
}

html,
html.translated-rtl,
body {
  direction: ltr !important;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageIn 0.55s ease both;
}

body.is-leaving {
  animation: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  body.is-leaving {
    transition: none;
    opacity: 1;
  }

  .hero-slide {
    transition: none;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}

.skip-link:focus {
  left: 8px;
}

/* Top bar */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 12px;
}

.topbar a {
  color: #fff;
  opacity: 0.92;
}

.topbar-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.topbar-link,
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

.topbar-link svg,
.ig-link svg {
  width: 16px;
  height: 16px;
  display: block;
}

.topbar-link:hover,
.ig-link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 0.2s ease;
}

.social a:hover {
  background: #fff;
  color: var(--red-dark);
}

.topbar-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 8px 24px rgba(11, 33, 72, 0.06);
}

.header-bar {
  width: min(100% - 28px, 1360px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px 24px;
  min-height: 96px;
  padding: 8px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  height: 98px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

footer .logo img {
  height: 80px;
  max-width: 260px;
}

.logo-text strong {
  display: block;
  color: var(--red);
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.logo-text span {
  display: block;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  flex-shrink: 0;
}

.phone-block {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: #fff;
  padding: 0 18px;
  min-height: 48px;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.phone-block svg {
  width: 22px;
  height: 22px;
}

.cta-split {
  display: flex;
  background: var(--navy-2);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.cta-split a {
  display: grid;
  place-items: center;
  padding: 0 16px;
  min-height: 48px;
}

.cta-split a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-split a:hover {
  background: var(--red);
}

.nav-wrap {
  display: none;
  border-top: 1px solid var(--line);
}

.nav-wrap.open {
  display: block;
}

.nav {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px 22px;
  align-items: center;
  min-height: 48px;
  margin-left: 12px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy);
}

.nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.lang-switch {
  position: relative;
  margin-left: 6px;
  flex-shrink: 0;
}

.lang-flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(11, 33, 72, 0.12);
  flex-shrink: 0;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 7px 12px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch-btn:hover,
.lang-switch.open .lang-switch-btn {
  border-color: var(--navy);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  min-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 80;
}

.lang-switch.open .lang-menu {
  display: grid;
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  width: 100%;
}

.lang-menu button:hover,
.lang-menu button.active {
  background: var(--bg);
  color: var(--navy);
}

.gt-hidden,
#google_translate_element {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(78vh, 680px);
  background: #dce7f3 68% top / cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.55) 48%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-slides {
  position: relative;
  z-index: 1;
  min-height: inherit;
}

.hero-slide {
  min-height: inherit;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  min-height: inherit;
  gap: 28px;
  padding: 40px 0 72px;
}

.hero-kicker {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.hero .lead {
  font-size: 18px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 18px;
}

.interest-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.interest-list li {
  display: flex;
  gap: 8px;
  color: var(--navy-2);
  font-weight: 600;
}

.interest-list li::before {
  content: "▸";
  color: var(--navy);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 22px;
  transition: 0.2s ease;
}

.btn-red {
  background: var(--navy);
  color: #fff;
}

.btn-red:hover {
  background: var(--navy-2);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.hero-photo {
  justify-self: end;
  width: min(100%, 400px);
  position: relative;
  z-index: 3;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(11, 33, 72, 0.28);
}

.hero-photo img.graphic {
  object-fit: cover;
  background: transparent;
  height: 520px;
  max-height: 520px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(11, 33, 72, 0.28);
}

.hero-nav {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-nav button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 33, 72, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.hero-nav .prev {
  left: 16px;
}

.hero-nav .next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(11, 33, 72, 0.25);
  cursor: pointer;
}

.hero-dots button.active {
  background: var(--navy);
}

.side-cta {
  position: fixed;
  left: 0;
  top: calc(var(--header-h) + 72px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-btn {
  display: flex;
  align-items: center;
  width: 84px;
  min-height: 84px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  border-radius: 0 14px 14px 0;
  box-shadow: 0 10px 28px rgba(11, 33, 72, 0.2);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.side-btn:hover,
.side-btn:focus-visible {
  width: 360px;
  padding-right: 20px;
  box-shadow: 0 14px 36px rgba(11, 33, 72, 0.28);
}

@media (hover: none) {
  .side-btn:hover,
  .side-btn:focus-visible {
    width: 84px;
    padding-right: 0;
  }

  .side-btn:hover .side-btn-copy,
  .side-btn:focus-visible .side-btn-copy {
    opacity: 0;
  }
}

.side-btn.whatsapp {
  background: #25d366;
}

.side-btn.whatsapp:hover,
.side-btn.whatsapp:focus-visible {
  background: #1ebe5d;
}

.side-btn.randevu:hover,
.side-btn.randevu:focus-visible {
  background: #12305f;
}

.side-btn-icon {
  width: 84px;
  min-height: 84px;
  flex: 0 0 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.side-btn-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.side-btn-copy {
  padding: 0 8px 0 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease 0.12s, transform 0.35s ease 0.08s;
}

.side-btn:hover .side-btn-copy,
.side-btn:focus-visible .side-btn-copy {
  opacity: 1;
  transform: translateX(0);
}

.page-hero {
  background: linear-gradient(120deg, var(--navy), var(--navy-3));
  color: #fff;
  padding: 54px 0 48px;
  text-align: left;
}

.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1;
}

.page-hero-lead {
  margin-top: 12px;
  opacity: 0.92;
  max-width: 760px;
}

.breadcrumb {
  opacity: 0.75;
  font-size: 13px;
  margin-bottom: 10px;
}

.about-intro {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

/* Sections */
.section {
  padding: 72px 0;
}

.section-head {
  margin-bottom: 28px;
}

.eyebrow {
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  color: var(--navy);
  line-height: 1.05;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.unit-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  height: 190px;
  isolation: isolate;
}

.unit-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  position: absolute;
  inset: 0;
  transition: transform 0.45s ease;
}

.unit-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(11, 33, 72, 0.68);
  transition: background 0.35s ease;
}

.unit-tile:hover img {
  transform: scale(1.05);
}

.unit-tile:hover::after {
  background: rgba(11, 33, 72, 0.78);
}

.unit-tile-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 14px 14px 12px;
  transition: opacity 0.45s ease;
}

.unit-tile:hover .unit-tile-cap {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.unit-tile-cap h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1.12;
}

.unit-tile-points {
  position: absolute;
  inset: 0;
  z-index: 3;
  margin: 0;
  padding: 16px 16px 14px 28px;
  list-style: disc;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
  opacity: 0;
  transition: opacity 1.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.unit-tile:hover .unit-tile-points {
  opacity: 1;
  transition: opacity 1.45s ease;
}

.unit-side-photo {
  padding: 0;
  overflow: hidden;
  min-height: 380px;
}

.unit-side-photo img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: contain;
  display: block;
  background: #fff;
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.dept-card {
  background: var(--navy);
  color: #fff;
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.dept-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -40px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.dept-card:hover {
  background: var(--red);
  transform: translateY(-4px);
}

.dept-card .icon {
  font-size: 28px;
  margin-bottom: 18px;
}

.dept-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 6px;
}

.dept-card p {
  font-size: 13px;
  opacity: 0.8;
}

.dept-card.featured {
  grid-row: span 2;
  background: linear-gradient(180deg, #0b2148, #123c72);
  border: 2px solid var(--cyan);
  justify-content: center;
  gap: 10px;
}

.dept-card.featured:hover {
  background: var(--navy);
}

.hours {
  display: grid;
  gap: 6px;
  font-size: 14px;
  margin: 8px 0 12px;
}

.about-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  overflow: visible;
}

.about-photo {
  height: 100%;
  min-height: 420px;
}

.about-photo img {
  width: 100%;
  height: calc(100% + 56px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-box {
  background: linear-gradient(155deg, #5ec8e4 0%, #1a6fa8 28%, #0d2b5c 62%, var(--navy) 100%);
  color: #fff;
  padding: 36px 42px 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
}

.about-box h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #f7fcff;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22), 0 8px 24px rgba(8, 28, 62, 0.28);
  margin: 0 0 18px;
}

.about-box p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36em;
}

.about-box-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  padding: 28px 0 10px;
}

.about-more {
  font-weight: 800;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-randevu {
  background: #fff;
  color: var(--navy);
}

.about-randevu:hover {
  background: #eef5fb;
}

.about-box-foot {
  padding-top: 18px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 18px;
}

.about-pills li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-highlights strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #fff;
}

.about-highlights span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.stat {
  background: #fff;
  padding: 22px 18px;
  box-shadow: var(--shadow);
  border-radius: 16px;
}

.stat strong {
  display: block;
  font-size: clamp(22px, 1.7vw, 30px);
  color: var(--red);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.doctors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.doctor-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 33, 72, 0.05);
  display: grid;
  grid-template-rows: 1fr auto;
}

.doctor-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  padding: 26px 22px 22px;
  min-height: 340px;
  align-items: start;
}

.doctor-body h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.doctor-body .spec {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
  margin: 6px 0 14px;
}

.doctor-body ul {
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-2);
}

.doctor-body li + li {
  margin-top: 6px;
}

.doctor-body img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(11, 33, 72, 0.16);
}

.doctor-body img.graphic {
  height: 250px;
  min-height: 0;
  object-fit: cover;
  background: transparent;
}

.doctor-foot {
  background: linear-gradient(90deg, var(--navy-3), var(--navy));
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 13px;
}

.doctor-card.is-cover {
  min-height: 430px;
}

.doctor-card.is-cover .doctor-body {
  display: block;
  position: relative;
  min-height: 430px;
  padding: 28px 24px 32px;
}

.doctor-card.is-cover .doctor-body img,
.doctor-card.is-cover .doctor-body img.graphic {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  box-shadow: none;
  z-index: 0;
}

.doctor-card.is-cover .doctor-body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(11, 33, 72, 0.94) 0%, rgba(11, 33, 72, 0.78) 38%, rgba(11, 33, 72, 0.28) 68%, rgba(11, 33, 72, 0.04) 100%);
}

.doctor-card.is-cover .doctor-body > div {
  position: relative;
  z-index: 2;
  max-width: 62%;
}

.doctor-card.is-cover .doctor-body h3,
.doctor-card.is-cover .doctor-body ul {
  color: #fff;
}

.doctor-card.is-cover .doctor-body .spec {
  color: #9fd6ea;
}

.doctor-card.is-cover .doctor-foot {
  position: relative;
  z-index: 2;
}

.cta-banner {
  background: linear-gradient(90deg, #6ec8e6, #1a6fa8 48%, var(--navy));
  color: #fff;
  padding: 36px 0;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cta-banner h2 {
  font-size: 32px;
  line-height: 1.1;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 33, 72, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 33, 72, 0.1);
}

.guide-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top center;
}

.guide-card div {
  padding: 18px;
}

.guide-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.guide-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.guide-item {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
  box-shadow: 0 12px 32px rgba(11, 33, 72, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

a.guide-item:hover {
  transform: translateY(-4px);
  border-color: var(--navy);
  box-shadow: 0 18px 40px rgba(11, 33, 72, 0.12);
}

.guide-item.is-soon {
  opacity: 0.96;
}

.guide-item-visual {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  background: var(--bg);
}

.guide-item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

a.guide-item:hover .guide-item-visual img {
  transform: scale(1.04);
}

.guide-item-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
}

.guide-tag {
  display: inline-flex;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--bg);
  border-radius: 999px;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.guide-item-body h2 {
  font-size: clamp(22px, 2vw, 28px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 10px;
}

.guide-item-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.guide-more {
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.guide-article {
  padding: 36px 0 72px;
}

.guide-article .breadcrumb {
  color: var(--muted);
  margin-bottom: 22px;
}

.guide-article-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.guide-article-media {
  position: sticky;
  top: calc(var(--header-h) + 16px);
}

.guide-article-media img {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.guide-article-copy .eyebrow {
  margin-bottom: 8px;
}

.guide-article-copy h1 {
  font-size: clamp(32px, 4vw, 46px);
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 18px;
}

.guide-article-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: var(--navy);
  margin: 28px 0 12px;
}

.guide-article-copy p {
  color: var(--text);
  margin-bottom: 14px;
}

.guide-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  list-style: none;
  margin: 8px 0 18px;
}

.guide-checks li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-2);
}

.guide-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
}

.guide-article-cta {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.guide-article-cta p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.content-prose {
  max-width: 760px;
}

.content-prose p + p,
.content-prose ul {
  margin-top: 14px;
}

.content-prose ul {
  padding-left: 18px;
}

.contact-hits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 33, 72, 0.05);
  transition: 0.2s ease;
}

.hit-card:hover {
  transform: translateY(-3px);
  border-color: var(--navy);
}

.hit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.hit-icon svg {
  width: 28px;
  height: 28px;
}

.hit-card h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 8px;
}

.hit-card p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.hit-cta {
  display: inline-block;
  margin-top: 14px;
  color: var(--red);
  font-weight: 800;
}

.map-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
}

.map-card {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: 340px;
  background: #fff;
  color: var(--text);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.map-card h3 {
  color: var(--navy);
  margin-bottom: 8px;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  font: inherit;
  color: inherit;
  box-shadow: 0 12px 28px rgba(11, 33, 72, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(11, 33, 72, 0.14);
  outline: none;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  display: block;
}

.gallery-cap {
  padding: 12px 14px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
  border-top: 1px solid var(--line);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(11, 33, 72, 0.78);
  padding: 28px 72px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: calc(100vh - 56px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.lightbox button {
  position: absolute;
  border: 0;
  background: #fff;
  color: var(--navy);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

footer h4 {
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: grid;
  gap: 8px;
  opacity: 0.85;
  font-size: 14px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  font-size: 13px;
  opacity: 0.7;
}

.copyright p + p {
  margin-top: 8px;
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.unit-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.unit-side {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
}

.unit-side .hours {
  margin: 16px 0;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.reason-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 22px;
}

.reason-card h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.branch-list {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.branch-list h3 {
  color: var(--red);
  font-size: 22px;
  margin-bottom: 8px;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.mv-card {
  background: var(--navy);
  color: #fff;
  padding: 28px;
  border-radius: 18px;
}

.mv-card.vision {
  background: var(--cyan);
}

.mv-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  margin-bottom: 12px;
}

.about-close {
  background: var(--bg);
  border-radius: 18px;
  padding: 32px;
  margin-top: 28px;
}

@media (max-width: 820px) {
  .reason-grid,
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .unit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dept-grid,
  .doctors,
  .guide-grid,
  .guide-board,
  .guide-checks,
  .stats,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dept-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .hero-grid,
  .about-split,
  .contact-hits,
  .guide-article-layout {
    grid-template-columns: 1fr;
  }

  .guide-item {
    grid-template-columns: 1fr;
  }

  .guide-item-visual {
    min-height: 210px;
    height: 210px;
  }

  .guide-article-media {
    position: static;
  }

  .about-photo,
  .about-photo img {
    min-height: 280px;
    height: 280px;
  }

  .about-box {
    min-height: 0;
    padding: 32px 24px 72px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

  .hero-photo {
    justify-self: center;
    max-width: 340px;
  }
}

@media (max-width: 1100px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    margin-left: auto;
  }

  .logo img {
    height: 80px;
  }

  .nav-wrap .nav {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav-wrap .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-wrap .lang-switch {
    margin: 12px 0 8px;
  }

  .nav-wrap .lang-menu {
    position: static;
    box-shadow: none;
    min-width: 0;
    border: 0;
    padding: 0;
  }
}

@media (max-width: 820px) {

  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
  }

  .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-banner .container,
  .topbar-inner,
  .unit-layout {
    flex-direction: column;
    align-items: flex-start;
  }

  .unit-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    position: static;
    max-width: none;
    border-radius: 0;
  }

  .map-wrap {
    display: flex;
    flex-direction: column;
  }

  .map-wrap iframe {
    height: 320px;
    order: 2;
  }

  .doctors,
  .guide-grid,
  .guide-board,
  .gallery-grid,
  .stats,
  .dept-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

  .unit-tile {
    height: 190px;
  }

  .dept-card.featured {
    grid-column: auto;
  }

  .doctor-body {
    grid-template-columns: 1fr;
  }

  .doctor-card.is-cover .doctor-body > div {
    max-width: 78%;
  }

  .phone-block {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}
