/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #44516f;
  --primary-dark: #323c52;
  --primary-darker: #222a3b;
  --primary-light: #e9ecf2;
  --primary-50: #f4f6fa;
  --primary-tint: #6b7792;
  --accent: #f39200;
  --accent-dark: #d77f00;
  --text: #1f2633;
  --text-soft: #56637a;
  --text-mute: #8590a6;
  --line: #e1e6ef;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(68, 81, 111, 0.06);
  --shadow: 0 10px 30px rgba(68, 81, 111, 0.10);
  --shadow-lg: 0 25px 60px rgba(68, 81, 111, 0.15);
  --container: 1240px;
  --header-h: 98px;
  --topbar-h: 42px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.18;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; flex-shrink: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- EYEBROW (replaces pill tags) ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.eyebrow--light { color: #fff; }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--accent); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all .25s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 1.5px solid transparent;
  font-family: inherit;
}
.btn svg { width: 16px; height: 16px; }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-dark); transform: translateY(-2px); }

.btn--outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn--outline-light:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn--outline:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

.btn--white {
  background: #fff;
  color: var(--primary-dark);
}
.btn--white:hover { background: var(--accent); color: #fff; }

.btn--sm {
  padding: 10px 18px;
  font-size: 13.5px;
}
.btn--sm svg { width: 14px; height: 14px; }

.btn--block { width: 100%; justify-content: center; }

/* ---------- TOPBAR ---------- */
.topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  background: rgba(34, 42, 59, 0.55);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar__info { display: flex; gap: 28px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--accent); }
.topbar__lang { display: flex; gap: 8px; align-items: center; }
.topbar__lang a { opacity: 0.75; transition: opacity .2s; }
.topbar__lang a.active,
.topbar__lang a:hover { opacity: 1; color: var(--accent); font-weight: 600; }
.topbar__lang span { opacity: 0.4; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  height: var(--header-h);
  z-index: 50;
  background: transparent;
  transition: background .3s ease, top .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header.is-scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 22px rgba(34, 42, 59, 0.08);
  border-bottom-color: var(--line);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.logo {
  display: inline-grid;
  align-items: center;
  line-height: 0;
}
.logo__img {
  grid-column: 1;
  grid-row: 1;
  height: 68px;
  width: auto;
  display: block;
  transition: opacity .3s ease;
  max-width: 100%;
  object-fit: contain;
}
.logo__img--dark { opacity: 0; }
.header.is-scrolled .logo__img--light { opacity: 0; }
.header.is-scrolled .logo__img--dark { opacity: 1; }
.header:not(.is-scrolled) .logo__img--light { filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.96);
  border-radius: 6px;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.005em;
  cursor: pointer;
}
.header.is-scrolled .nav__link { color: var(--text-soft); }
.nav__link:hover,
.nav__link.active { color: var(--accent); }
.header.is-scrolled .nav__link:hover { color: var(--accent); background: var(--primary-50); }

.nav__caret {
  width: 10px;
  height: 7px;
  margin-left: 2px;
  transition: transform .2s;
  flex-shrink: 0;
}

.nav__group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__group.active > .nav__link { color: var(--accent); }
.nav__group.has-sub::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 14px;
}
.nav__group.has-sub:hover .nav__caret,
.nav__group.has-sub:focus-within .nav__caret { transform: rotate(180deg); }

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translate(-50%, 6px);
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
  z-index: 30;
  border: 1px solid var(--line);
}
.nav__group.has-sub:hover > .submenu,
.nav__group.has-sub:focus-within > .submenu,
.submenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-soft) !important;
  font-weight: 500;
}
.submenu a:hover { background: var(--primary-50); color: var(--primary) !important; }

.header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px 0 12px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #25D366;
  color: #fff;
  transition: all .2s;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.header__wa svg, .header__wa img { width: 22px; height: 22px; flex-shrink: 0; }
.header__wa-num { letter-spacing: -0.01em; white-space: nowrap; }
.header__wa:hover { background: #1da851; transform: translateY(-1px); color: #fff; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: all .25s;
  color: #fff;
  text-decoration: none;
}
.header__cta:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.header__cta svg { width: 20px; height: 20px; color: #fff; }
.header.is-scrolled .header__cta { background: var(--accent); border-color: var(--accent); color: #fff; }
.header.is-scrolled .header__cta svg { color: #fff; }
.header__cta-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0.92;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}
.header__cta-num {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
}

/* ---------- HERO SLIDER ---------- */
.hero {
  position: relative;
  min-height: 100vh;
}
.hero__slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(34, 42, 59, 0.90) 0%, rgba(68, 81, 111, 0.75) 50%, rgba(68, 81, 111, 0.55) 100%);
}
.hero__wrap {
  position: relative;
  z-index: 2;
  padding: 180px 24px 160px;
  width: 100%;
}
.hero__content {
  max-width: 720px;
  color: #fff;
  animation: fadeUp .9s ease both;
  position: relative;
  z-index: 2;
}
.hero__content a, .hero__content button { position: relative; z-index: 5; }
.hero__slide.is-active .hero__content { animation: fadeUp .9s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__title {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  margin-bottom: 24px;
  color: #fff;
  font-weight: 800;
  line-height: 1.12;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero__text {
  font-size: 17.5px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 38px;
  max-width: 620px;
  line-height: 1.7;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: all .25s;
  z-index: 3;
}
.hero__arrow:hover { background: var(--accent); border-color: var(--accent); }
.hero__arrow svg { width: 20px; height: 20px; }
.hero__arrow--prev { left: 30px; z-index: 4; }
.hero__arrow--next { right: 30px; z-index: 4; }

/* Dots */
.hero__dots {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all .25s;
  cursor: pointer;
}
.hero__dot.is-active {
  background: var(--accent);
  width: 36px;
  border-radius: 10px;
}

/* Hero bottom — overlap bar with stats + doctor */
.hero__bottom {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3;
  transform: translateY(25%);
  pointer-events: none;
}
.hero__bottom .hero__stats,
.hero__bottom .hero__doctor,
.hero__bottom a,
.hero__bottom button { pointer-events: auto; }
.hero__bottom-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.stat-item {
  padding: 26px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: 0; }
.stat-item__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary-dark);
  display: block;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-item__label {
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 8px;
  display: block;
}

/* Hero doctor card */
.hero__doctor {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 250px;
  margin-left: auto;
  position: relative;
}
.hero__doctor::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  z-index: 2;
}
.hero__doctor-photo {
  aspect-ratio: auto;
  overflow: hidden;
  background: var(--primary-50);
  max-height: 250px;
}
.hero__doctor-photo img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__doctor-body {
  padding: 18px 22px 22px;
}
.hero__doctor-role {
  display: block;
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero__doctor-name {
  font-size: 19px;
  margin: 0 0 10px;
  color: var(--primary-dark);
}
.hero__doctor-text {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0 0 14px;
}

/* ---------- PARTNERS ---------- */
.partners {
  padding: 160px 0 60px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.partners__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.partners__title {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--primary-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.partners__sub {
  color: var(--text-soft);
  font-size: 15.5px;
}
.partners__marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners__track {
  display: flex;
  gap: 48px;
  width: max-content;
  align-items: center;
  animation: partners-marquee 65s linear infinite;
}
.partners__marquee:hover .partners__track { animation-play-state: paused; }
@keyframes partners-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.partner-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  opacity: 1;
  transition: transform .2s, opacity .2s;
  flex-shrink: 0;
}
.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .25s;
}
.partner-logo:hover img { filter: grayscale(0%); }
.partner-logo svg {
  width: auto;
  height: 100%;
  max-width: 180px;
}
.partner-logo:hover { transform: translateY(-2px); }

/* ---------- SECTION HEAD ---------- */
.section-head {
  max-width: 640px;
  margin: 0 auto 54px;
  text-align: center;
}
.section-head__title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 16px;
  color: var(--primary-dark);
}
.section-head__title--left { text-align: left; }
.section-head__text {
  color: var(--text-soft);
  font-size: 16.5px;
}
.section-head__text--left { text-align: left; }

/* ---------- SERVICES ---------- */
.services { padding: 110px 0; background: #fff; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--primary-50);
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.08);
}
.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34, 42, 59, 0.25) 100%);
  pointer-events: none;
}

.service-card__body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.service-card__text {
  color: var(--text-soft);
  font-size: 14.5px;
  margin-bottom: 22px;
  flex: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: gap .2s, color .2s;
}
.service-card__link svg { width: 14px; height: 14px; }
.service-card:hover .service-card__link { gap: 12px; color: var(--accent); }

.service-card--featured::before { transform: scaleX(1); }
.service-card--featured .service-card__title { color: var(--primary-dark); }

.service-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-block;
  padding: 6px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
}

/* ---------- WHY ---------- */
.why { padding: 110px 0; background: var(--bg-soft); }
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 22px;
  color: var(--primary-dark);
}
.why__p { color: var(--text-soft); margin-bottom: 18px; line-height: 1.75; }
.why__list {
  list-style: none;
  margin: 26px 0 34px;
  display: grid;
  gap: 14px;
}
.why__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.why__list svg {
  width: 22px; height: 22px;
  padding: 4px;
  background: var(--primary-50);
  color: var(--primary);
  border-radius: 6px;
}

.why__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin: 0 auto;
}
.why__image-main,
.why__image-small {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why__image-main {
  inset: 0 30% 20% 0;
}
.why__image-small {
  inset: 35% 0 0 30%;
  border: 10px solid var(--bg-soft);
}
.why__image-main img,
.why__image-small img { width: 100%; height: 100%; object-fit: cover; }

.why__visual.why__visual--single {
  aspect-ratio: auto;
  max-width: none;
  min-height: 520px;
  margin: 0;
  background-image: url('/alt-giris.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
.why__visual.why__visual--single .why__image-main { display: none; }

.why__badge {
  position: absolute;
  top: 30px; right: 0;
  background: var(--accent);
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.why__badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
}
.why__badge-text { font-size: 12px; line-height: 1.3; font-weight: 600; }

/* ---------- VALUES ---------- */
.values { padding: 110px 0; background: #fff; }
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value {
  background: var(--bg-soft);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: all .3s;
  position: relative;
}
.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
  background: #fff;
}
.value__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.value:hover .value__num { color: var(--accent); -webkit-text-stroke: 0; }
.value__title { font-size: 18px; margin-bottom: 10px; color: var(--primary-dark); }
.value__text { color: var(--text-soft); font-size: 14.5px; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background:
    radial-gradient(ellipse at bottom left, rgba(243,146,0,0.20) 0%, transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 20px;
  color: #fff;
}
.cta-band__p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.75;
}
.cta-band__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat:nth-child(1) { grid-column: span 2; }
.stat__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num small { font-size: 18px; font-weight: 600; color: rgba(255,255,255,0.7); margin-left: 4px; }
.stat__label { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 10px; display: block; }

/* ---------- FAQ ---------- */
.faq { padding: 110px 0; background: var(--bg-soft); }
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 120px; }
.faq__head .btn { margin-top: 20px; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .2s;
}
.faq__item[open] { border-color: var(--primary); box-shadow: var(--shadow); }
.faq__item summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 26px;
  font-weight: 300;
  color: var(--primary);
  transition: transform .2s;
  line-height: 1;
}
.faq__item[open] summary { color: var(--primary); }
.faq__item[open] summary::after { content: '−'; color: var(--accent); }
.faq__item p {
  padding: 0 26px 22px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---------- BLOG ---------- */
.blog { padding: 110px 0; background: #fff; }
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.post {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  border: 1px solid var(--line);
  position: relative;
  cursor: pointer;
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.post__more {
  position: static;
}
.post__more::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}
.post__tag { z-index: 2; }
.post__img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.post:hover .post__img img { transform: scale(1.08); }
.post__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: #fff;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
}
.post__body { padding: 28px; }
.post__date {
  color: var(--text-mute);
  font-size: 13px;
  font-weight: 500;
}
.post__title {
  font-size: 19px;
  margin: 10px 0 18px;
  line-height: 1.35;
  color: var(--primary-dark);
}
.post__more {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}
.post:hover .post__more { color: var(--accent); }

/* ---------- CONTACT ---------- */
.contact {
  padding: 110px 0;
  background:
    radial-gradient(ellipse at top right, rgba(243,146,0,0.15) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 18px;
  color: #fff;
}
.contact__text {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.contact__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact__item:last-child { border-bottom: 0; }
.contact__icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__label {
  display: block;
  font-size: 12px;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.contact__val {
  display: block;
  font-weight: 500;
  color: #fff;
}

.contact__form {
  background: #fff;
  padding: 42px 38px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text);
}
.contact__form-title {
  font-size: 22px;
  margin-bottom: 24px;
  color: var(--primary-dark);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__form label {
  display: block;
  margin-bottom: 16px;
}
.contact__form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  transition: all .2s;
  background: var(--bg-soft);
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(68, 81, 111, 0.1);
}
.contact__form textarea { resize: vertical; min-height: 100px; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--primary-darker);
  color: rgba(255,255,255,0.75);
  padding-top: 80px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__logo {
  height: 68px;
  width: auto;
  margin-bottom: 24px;
}
.footer__about { font-size: 14.5px; line-height: 1.75; margin-bottom: 24px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: grid;
  place-items: center;
  transition: all .2s;
}
.footer__social a:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--accent);
}
.footer__links, .footer__contact { list-style: none; display: grid; gap: 12px; font-size: 14.5px; }
.footer__links a { transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__contact li { line-height: 1.6; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 0;
  font-size: 13.5px;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom a { margin-left: 24px; transition: color .2s; }
.footer__bottom a:hover { color: var(--accent); }

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-left: 24px;
  opacity: .75;
  transition: opacity .2s;
}
.footer__credit:hover { opacity: 1; color: inherit; }
.footer__credit span { font-size: 12px; letter-spacing: .04em; }
.footer__credit img { height: 20px; width: auto; display: block; }

/* ---------- INNER PAGES ---------- */
body.inner-page .header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 22px rgba(34, 42, 59, 0.08);
  border-bottom-color: var(--line);
  top: var(--topbar-h);
}
body.inner-page .header .logo__img--light { opacity: 0; }
body.inner-page .header .logo__img--dark { opacity: 1; }
body.inner-page .header .logo__img--light { filter: none; }
body.inner-page .header .nav__link { color: var(--text-soft); }
body.inner-page .header .nav__link:hover { color: var(--accent); background: var(--primary-50); }
body.inner-page .header.is-scrolled { top: 0; }

.page-hero {
  margin-top: calc(var(--topbar-h) + var(--header-h));
  background:
    radial-gradient(ellipse at top right, rgba(243,146,0,0.10) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.page-hero--bg {
  background: var(--primary-dark);
}
.page-hero--bg .page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero--bg .page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(243,146,0,0.18) 0%, transparent 55%),
    linear-gradient(135deg, rgba(34, 42, 59, 0.92) 0%, rgba(68, 81, 111, 0.80) 100%);
}
.page-hero__inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a { color: #fff; opacity: 0.85; transition: opacity .2s, color .2s; }
.breadcrumb a:hover { opacity: 1; color: var(--accent); }
.breadcrumb span.sep { opacity: 0.4; }
.breadcrumb span.current { opacity: 0.75; }
.page-hero__title {
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  font-size: 16.5px;
  line-height: 1.65;
}

.page-content { padding: 90px 0; background: #fff; }
.page-content__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.page-content--wide .page-content__grid {
  grid-template-columns: 1fr;
}

.page-body h2 {
  font-size: 1.75rem;
  color: var(--primary-dark);
  margin: 42px 0 18px;
  letter-spacing: -0.02em;
}
.page-body h2:first-child,
.page-body > *:first-child { margin-top: 0; }
.page-body h3 {
  font-size: 1.2rem;
  color: var(--primary-dark);
  margin: 28px 0 14px;
}
.page-body p {
  color: var(--text-soft);
  margin-bottom: 16px;
  line-height: 1.75;
  font-size: 15.5px;
}
.page-body strong { color: var(--text); font-weight: 700; }
.page-body ul, .page-body ol {
  margin: 16px 0 22px 0;
  padding-left: 0;
  color: var(--text-soft);
  list-style: none;
}
.page-body ul li, .page-body ol li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  line-height: 1.65;
  font-size: 15.5px;
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 18px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.page-body ol { counter-reset: ol; }
.page-body ol li { counter-increment: ol; }
.page-body ol li::before {
  content: counter(ol);
  position: absolute;
  left: 0; top: 0;
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.page-body .callout {
  background: var(--primary-50);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  border-radius: 0 10px 10px 0;
  margin: 26px 0;
}
.page-body .callout p { margin: 0; color: var(--text); font-weight: 500; }
.page-body img, .page-body .img {
  border-radius: var(--radius-lg);
  margin: 26px 0;
  width: 100%;
  display: block;
}
.page-body .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}
.info-grid__item {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.info-grid__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.info-grid__label {
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
}

.page-sidebar { position: sticky; top: 160px; }
.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  margin-bottom: 22px;
}
.sidebar-card__title {
  font-size: 15.5px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 2px; padding: 0; margin: 0; }
.sidebar-links li { padding: 0; margin: 0; }
.sidebar-links li::before { display: none; }
.sidebar-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 14px;
  transition: all .2s;
}
.sidebar-links a::after {
  content: '→';
  color: var(--primary);
  opacity: 0;
  transition: all .2s;
}
.sidebar-links a:hover,
.sidebar-links a.active {
  background: #fff;
  color: var(--primary);
}
.sidebar-links a:hover::after,
.sidebar-links a.active::after { opacity: 1; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border: none;
  text-align: center;
}
.sidebar-cta__title { color: #fff; border-bottom: 0; padding-bottom: 0; margin-bottom: 8px; }
.sidebar-cta__text {
  color: rgba(255,255,255,0.8);
  font-size: 13.5px;
  margin-bottom: 18px;
  line-height: 1.6;
}
.sidebar-cta__phone {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin: 10px 0 18px;
  letter-spacing: -0.01em;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.doctor-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .3s;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.doctor-card__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--primary-50);
}
.doctor-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.doctor-card__body { padding: 22px 24px 26px; }
.doctor-card__role {
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.doctor-card__name {
  font-size: 19px;
  margin: 6px 0 10px;
  color: var(--primary-dark);
}
.doctor-card__bio {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 14px;
}
.doctor-card__meta {
  font-size: 12.5px;
  color: var(--text-mute);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  gap: 12px;
}

/* Timeline */
.timeline { position: relative; padding-left: 32px; margin: 30px 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline__item {
  position: relative;
  padding-bottom: 30px;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: -32px; top: 4px;
  width: 18px; height: 18px;
  background: var(--accent);
  border: 4px solid var(--bg);
  border-radius: 50%;
}
.timeline__year {
  font-weight: 800;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 6px;
  display: block;
}
.timeline__text {
  color: var(--text-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

/* Contact page map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  margin: 26px 0;
  background: var(--bg-soft);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav { display: none; }
  .why__inner,
  .cta-band__inner,
  .contact__inner,
  .faq__inner { grid-template-columns: 1fr; gap: 50px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .blog__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .faq__head { position: static; }
  .hero__arrow--prev { left: 14px; }
  .hero__arrow--next { right: 14px; }
  .hero__bottom-inner { grid-template-columns: 1fr; }
  .hero__doctor { width: 100%; max-width: 520px; margin: 0 auto; }
  .page-content__grid { grid-template-columns: 1fr; gap: 40px; }
  .page-sidebar { position: static; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Why section on mobile: no background, show img on top */
  .why__visual.why__visual--single {
    background-image: none;
    min-height: auto;
    aspect-ratio: auto;
    max-width: 100%;
    margin: 0 auto;
    order: -1;
  }
  .why__visual.why__visual--single .why__image-main {
    display: block;
    position: relative;
    inset: auto !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 11;
    max-width: 560px;
    margin: 0 auto;
  }
  .why__visual.why__visual--single .why__image-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .why__visual.why__visual--single .why__badge { display: none; }
}
@media (max-width: 720px) {
  :root { --header-h: 70px; --topbar-h: 0px; }
  .topbar { display: none; }
  .header { top: 0; }
  .header__cta { padding: 8px 12px; }
  .header__cta div { display: none; }
  .logo__img { height: 46px; }
  .hero__wrap { padding: 130px 24px 60px; }
  .hero__title { font-size: 2.2rem; }
  .hero__text { font-size: 15.5px; }
  .hero__bottom { position: static; transform: none; padding: 40px 0; background: var(--bg-soft); }
  .hero__bottom-inner { grid-template-columns: 1fr; gap: 16px; }
  .hero__doctor { width: 100%; margin-left: 0; }
  .hero__doctor-photo { max-height: none; }
  .hero__doctor-photo img {
    object-position: center center;
    object-fit: contain;
    max-height: none;
  }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 14px; border-bottom: 1px solid var(--line); }
  .stat-item:nth-child(2n) { border-right: 0; }
  .stat-item:nth-last-child(-n+2) { border-bottom: 0; }
  .stat-item:last-child { border-right: 0; }
  .hero__dots { bottom: 20px; }
  .hero__arrow { display: none; }
  .partners { padding-top: 60px; }
  .services, .why, .values, .cta-band, .faq, .blog, .contact { padding: 70px 0; }
  .services__grid, .blog__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .partners__track { gap: 36px; animation-duration: 45s; }
  .partner-logo { height: 40px; }
  .partner-logo img { max-width: 110px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer__bottom a { margin: 0 10px; }
  .contact__form { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band__stats { grid-template-columns: 1fr; }
  .stat:nth-child(1) { grid-column: auto; }
}

/* ========== MODAL / APPOINTMENT POPUP ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
  overflow-y: auto;
  padding: 4vh 20px;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(34, 42, 59, 0.70);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.modal__dialog {
  position: relative;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 36px 34px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  transform: translateY(24px);
  transition: transform .35s ease;
}
.modal.is-open .modal__dialog { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  background: var(--bg-soft);
  border-radius: 50%;
  color: var(--text-soft);
  display: grid; place-items: center;
  transition: all .2s;
  border: 0;
  cursor: pointer;
}
.modal__close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }
.modal__header { text-align: center; margin-bottom: 22px; }
.modal__header h3 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.modal__header p { color: var(--text-soft); font-size: 14px; }
.modal__form label {
  display: block;
  margin-bottom: 14px;
}
.modal__form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
}
.modal__form input,
.modal__form select,
.modal__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: var(--bg-soft);
  transition: all .2s;
}
.modal__form input:focus,
.modal__form select:focus,
.modal__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(68, 81, 111, 0.1);
}
.modal__form textarea { resize: vertical; min-height: 80px; }
.modal__form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal__note {
  font-size: 11.5px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.modal__success {
  text-align: center;
  padding: 20px 0 10px;
}
.modal__success-icon {
  width: 68px; height: 68px;
  background: #10b981;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
}
.modal__success-icon svg { width: 30px; height: 30px; }
.modal__success h4 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.modal__success p { color: var(--text-soft); }

/* intl-tel-input overrides */
.iti { display: block; width: 100%; }
.iti__selected-flag { padding: 0 8px 0 14px; background: transparent; }
.iti--separate-dial-code .iti__selected-flag { background: transparent; }
.iti input[type="tel"] { padding-left: 92px !important; }

/* Success banner for inline forms */
.form-success {
  background: #e8f7ed;
  color: #0a7d3e;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-bottom: 16px;
  border: 1px solid #b9e5c9;
}

/* Hide topbar/header CTA as button reset */
.header__cta { border: 0; font-family: inherit; cursor: pointer; }

@media (max-width: 560px) {
  .modal__dialog { padding: 32px 22px 26px; }
  .modal__form .form-row { grid-template-columns: 1fr; }
}

/* ========== ADMIN PANEL ========== */
body.admin-page {
  background: var(--bg-soft);
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: var(--primary-darker);
  color: #fff;
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 10px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
}
.admin-sidebar__brand img { width: 200px !important; height: auto !important; }
.admin-sidebar__brand .admin-tag {
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--accent);
  font-weight: 800;
  margin-top: 4px;
}
.admin-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; padding: 0; margin: 0; }
.admin-nav li { margin: 0; padding: 0; }
.admin-nav li::before { display: none; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  text-decoration: none;
}
.admin-nav a svg { width: 18px; height: 18px; opacity: 0.9; }
.admin-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav a.active { background: var(--accent); color: #fff; }
.admin-nav a.logout { margin-top: auto; color: rgba(255,255,255,0.55); }

.admin-main { padding: 30px 38px 60px; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.admin-topbar h1 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  font-weight: 700;
}
.admin-topbar__actions { display: flex; gap: 10px; align-items: center; }
.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.admin-user strong { color: var(--primary-dark); }

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}
.admin-stat {
  background: #fff;
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.admin-stat__num {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.admin-stat__label {
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 8px;
  display: block;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px 26px;
  margin-bottom: 22px;
}
.admin-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.admin-card h2 {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.admin-table th,
.admin-table td {
  padding: 13px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table th {
  background: var(--bg-soft);
  font-weight: 700;
  color: var(--text);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.admin-table tr:hover td { background: var(--bg-soft); }
.admin-table .text-mute { color: var(--text-mute); font-size: 12.5px; }

.admin-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-mute);
}
.admin-empty svg { width: 48px; height: 48px; opacity: 0.4; margin: 0 auto 10px; }

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag--new { background: #fde8cb; color: #a15e00; }
.tag--contacted { background: #d9e9f9; color: #2b6bac; }
.tag--archived { background: #eee; color: #666; }
.tag--published { background: #dcf3e3; color: #0a7d3e; }
.tag--draft { background: #eee; color: #666; }

.btn--danger {
  background: #dc2626;
  color: #fff;
}
.btn--danger:hover { background: #b91c1c; color: #fff; }
.btn--ghost-dark {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--line);
}
.btn--ghost-dark:hover { background: var(--bg-soft); color: var(--primary-dark); }
.btn--xs { padding: 7px 12px; font-size: 12.5px; }

.admin-login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse at top right, rgba(243,146,0,0.12) 0%, transparent 50%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 30px;
}
.admin-login {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.admin-login__logo {
  display: block;
  margin: 0 auto 24px;
  height: 62px;
}
.admin-login h1 {
  font-size: 20px;
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.admin-login > p {
  text-align: center;
  color: var(--text-mute);
  font-size: 13.5px;
  margin-bottom: 26px;
}
.admin-login label { display: block; margin-bottom: 14px; }
.admin-login label > span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
  letter-spacing: .03em;
}
.admin-login input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--bg-soft);
  transition: all .2s;
}
.admin-login input:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(68, 81, 111, 0.1);
}
.admin-error {
  background: #fee2e2;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid #fecaca;
}
.admin-success {
  background: #dcfce7;
  color: #166534;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  border: 1px solid #bbf7d0;
}

.admin-form { display: flex; flex-direction: column; gap: 16px; max-width: 820px; }
.admin-form label { display: block; }
.admin-form label > span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.admin-form input[type="text"],
.admin-form input[type="file"],
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: var(--text);
}
.admin-form textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.admin-form textarea.body-textarea { min-height: 360px; font-family: 'Menlo', 'Monaco', monospace; font-size: 13px; }
.admin-form .row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.admin-form__actions { display: flex; gap: 10px; padding-top: 10px; }

.admin-filters {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.admin-filters select,
.admin-filters input {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  background: #fff;
}

.msg-preview {
  max-width: 340px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-soft);
  font-size: 13px;
}

@media (max-width: 880px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: static;
    height: auto;
    padding: 18px;
  }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-main { padding: 20px; }
  .admin-form .row-two { grid-template-columns: 1fr; }
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 90;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.38);
  transition: transform .25s ease;
  text-decoration: none;
}
.wa-float svg, .wa-float__icon { width: 40px; height: 40px; position: relative; z-index: 2; display: block; }
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.2s ease-out infinite;
  opacity: 0.55;
  z-index: 1;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.5); opacity: 0;    }
  100% { transform: scale(1.5); opacity: 0;    }
}

@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* Hide WA float when modal open to avoid overlap */
body:has(.modal.is-open) .wa-float { opacity: 0; pointer-events: none; }

/* Partner cards (anlasmali-kurumlar) */
.partner-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 26px 0;
}
.partner-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}
.partner-card__logo {
  width: 60px; height: 60px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  letter-spacing: .05em;
}
.partner-card__name {
  font-size: 16px;
  color: var(--primary-dark);
  margin: 0 0 6px;
}
.partner-card__desc {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 600px) {
  .partner-cards { grid-template-columns: 1fr; }
}

/* ========== HAMBURGER + MOBILE NAV ========== */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
  position: relative;
  flex-shrink: 0;
}
.header.is-scrolled .hamburger,
body.inner-page .header .hamburger { color: var(--primary-dark); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-nav.is-open { pointer-events: auto; opacity: 1; }
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 42, 59, 0.65);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.mobile-nav__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 92%);
  height: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform .32s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__logo img { height: 48px; width: auto; }
.mobile-nav__close {
  width: 38px;
  height: 38px;
  background: var(--bg-soft);
  color: var(--text-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: 0;
  transition: background .2s, color .2s, transform .2s;
}
.mobile-nav__close:hover { background: var(--accent); color: #fff; transform: rotate(90deg); }
.mobile-nav__close svg { width: 18px; height: 18px; }
.mobile-nav__list {
  flex: 1;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav__list > a,
.mobile-nav__group > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
  text-decoration: none;
}
.mobile-nav__list > a:hover,
.mobile-nav__group > summary:hover { background: var(--primary-50); color: var(--primary); }
.mobile-nav__group > summary::-webkit-details-marker { display: none; }
.mobile-nav__caret {
  width: 11px;
  height: 8px;
  transition: transform .2s;
}
.mobile-nav__group[open] .mobile-nav__caret { transform: rotate(180deg); }
.mobile-nav__sub {
  background: var(--bg-soft);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__sub a {
  display: block;
  padding: 11px 22px 11px 38px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(225, 230, 239, 0.5);
}
.mobile-nav__sub a:last-child { border-bottom: 0; }
.mobile-nav__sub a:hover { color: var(--primary); background: rgba(255,255,255,0.6); }
.mobile-nav__cta {
  padding: 18px 22px;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.mobile-nav__cta .btn svg { width: 16px; height: 16px; }

@media (max-width: 1100px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .header__cta { display: none; }
  .header__wa { display: none; }
  .header__actions { gap: 6px; }
}

/* ========== FOOTER ACCORDION ========== */
.footer__acc {
  border: 0;
  padding: 0;
  margin: 0;
}
.footer__acc > summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__acc > summary::-webkit-details-marker { display: none; }
.footer__acc[open] > summary::after { transform: rotate(45deg); }

@media (max-width: 720px) {
  .footer__top { gap: 0 !important; }
  .footer__acc {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 4px 0;
  }
  .footer__acc > summary {
    padding: 16px 0;
    margin-bottom: 0 !important;
    padding-bottom: 16px !important;
  }
  .footer__acc > summary::after {
    content: '+';
    font-size: 24px;
    line-height: 1;
    color: var(--accent);
    font-weight: 300;
    transition: transform .2s;
    margin-left: 16px;
  }
  .footer__acc[open] > summary::after { content: '−'; transform: none; }
  .footer__acc > summary::before { display: none !important; }
  .footer__acc > summary { border-bottom: 0; }
  .footer__acc .footer__title::after { display: none !important; }
  .footer__acc > ul {
    padding-bottom: 16px;
  }
}

@media (min-width: 721px) {
  .footer__acc > summary { cursor: default; pointer-events: none; }
  .footer__acc > summary::after { display: none; }
  .footer__acc > ul, .footer__acc > .footer__contact { display: grid !important; }
}

/* ========== ILETISIM PAGE - white Kliniğimize Gelin section ========== */
body.page-iletisim .contact {
  background: #fff;
  color: var(--text);
}
body.page-iletisim .contact__title { color: var(--primary-dark); }
body.page-iletisim .contact__text { color: var(--text-soft); }
body.page-iletisim .contact__item { border-bottom-color: var(--line); }
body.page-iletisim .contact__icon {
  background: var(--primary-50);
  color: var(--primary);
}
body.page-iletisim .contact__label { color: var(--text-mute); }
body.page-iletisim .contact__val { color: var(--text); }
body.page-iletisim .contact__form { background: var(--bg-soft); }

/* ========== INSURANCE GRID (anlasmali-kurumlar page) ========== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}
.insurance-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all .25s;
  min-height: 130px;
}
.insurance-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.insurance-card img {
  height: 54px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter .25s;
}
.insurance-card:hover img { filter: grayscale(0%); }
.insurance-card__name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .insurance-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .insurance-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .insurance-card { padding: 18px 12px 12px; min-height: 110px; }
  .insurance-card img { height: 44px; }
}

/* ========== LANGUAGE SWITCHER (topbar) ========== */
.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.lang-switch__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 600;
  transition: background .2s, border-color .2s;
}
.lang-switch__toggle:hover,
.lang-switch[data-open="true"] .lang-switch__toggle {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
}
.lang-switch__flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}
.lang-switch__code { letter-spacing: .05em; }
.lang-switch__caret {
  width: 9px;
  height: 6px;
  transition: transform .2s;
  opacity: 0.8;
}
.lang-switch[data-open="true"] .lang-switch__caret { transform: rotate(180deg); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s;
  z-index: 80;
  border: 1px solid var(--line);
}
.lang-switch[data-open="true"] .lang-switch__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switch__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  color: var(--text-soft);
  font-weight: 500;
}
.lang-switch__menu a:hover { background: var(--primary-50); color: var(--primary); }
.lang-switch__menu a.active { background: var(--primary-50); color: var(--primary); font-weight: 600; }
.lang-switch__menu a img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

/* ========== FORM CONSENT CHECKBOX ========== */
.form-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  margin-top: 2px;
  padding: 0 !important;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.form-consent > span {
  display: block;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  color: var(--text-soft) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  margin-bottom: 0 !important;
  line-height: 1.55;
}
.form-consent > span a {
  color: var(--primary);
  text-decoration: underline;
}
.form-consent > span a:hover { color: var(--accent); }

/* ========== MOBILE HEADER ACTIONS ========== */
.mobile-call { display: none; }
.mobile-lang { display: none; }

@media (max-width: 1100px) {
  .mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 14px;
    height: 42px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13.5px;
    transition: background .2s, transform .2s;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .mobile-call:hover { background: var(--accent-dark); transform: translateY(-1px); color: #fff; }
  .mobile-call svg { width: 18px; height: 18px; }
  .mobile-call__text { display: inline; letter-spacing: -0.01em; }

  .mobile-lang { display: inline-flex; align-items: center; }
  .mobile-lang .lang-switch__toggle {
    height: 42px;
    padding: 0 10px;
    gap: 7px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.55);
    color: #fff;
    border-radius: 8px;
  }
  .mobile-lang .lang-switch__code {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .05em;
    color: inherit;
  }
  .mobile-lang .lang-switch__flag { width: 22px; height: 15px; }
  /* Non-scrolled (transparent hero): white caret + white border */
  .mobile-lang .lang-switch__caret path { stroke: #fff; }
  /* Scrolled OR inner page: black caret + black border */
  .header.is-scrolled .mobile-lang .lang-switch__toggle,
  body.inner-page .header .mobile-lang .lang-switch__toggle {
    border-color: #000;
    color: #000;
  }
  .header.is-scrolled .mobile-lang .lang-switch__caret path,
  body.inner-page .header .mobile-lang .lang-switch__caret path {
    stroke: #000;
  }
  .mobile-lang .lang-switch__menu {
    right: 0;
    left: auto;
    min-width: 150px;
  }
}
@media (max-width: 720px) {
  .header__actions { gap: 6px; }
  .mobile-call { padding: 0 11px; height: 38px; font-size: 12.5px; gap: 5px; }
  .mobile-call svg { width: 16px; height: 16px; }
  .mobile-lang .lang-switch__toggle { height: 38px; padding: 0 8px; }
  .mobile-lang .lang-switch__code { font-size: 11.5px; }
  .mobile-lang .lang-switch__flag { width: 20px; height: 14px; }
}
@media (max-width: 400px) {
  .mobile-call__text { display: none; }
  .mobile-call { padding: 0; width: 38px; }
}

/* Clickable contact values (address/email) */
.contact__val--link {
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}
.contact__val--link:hover { color: var(--accent); }

/* Map button under address */
.contact__map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 14px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .2s;
}
.contact__map-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.contact__map-btn svg { width: 14px; height: 14px; }
body.page-iletisim .contact__map-btn {
  color: var(--primary);
  border-color: var(--primary);
}
body.page-iletisim .contact__map-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Topbar items as links */
.topbar a.topbar__item { text-decoration: none; transition: color .2s; }
.topbar a.topbar__item:hover { color: var(--accent); }

/* Section head lead — accent subtitle */
.section-head__lead {
  display: inline-block;
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  margin: -6px 0 14px;
  letter-spacing: -0.01em;
}

/* Corporate info list (about page) */
.corp-info {
  list-style: none;
  margin: 22px 0 8px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.corp-info li {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.corp-info li::before { display: none !important; }
.corp-info li:last-child { border-bottom: 0; }
.corp-info li:nth-child(odd) { background: var(--bg-soft); }
.corp-info__label {
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 14px;
}
.corp-info__value {
  color: var(--text-soft);
  font-size: 14.5px;
}
@media (max-width: 600px) {
  .corp-info li { grid-template-columns: 1fr; gap: 4px; padding: 14px 18px; }
}

/* Honeypot anti-spam field — hidden from users & screen readers, baited for bots */
.form-hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
