/* =========================================================
   01. Design Tokens / Variables
   ========================================================= */

:root {
  --dark: #101010;
  --text: #1f1f1f;
  --muted: #666;
  --line: #e5e5e5;
  --bg: #fff;
  --soft: #f6f6f6;
  --gold: #9a6b37;
  --green: #25d366;
}

/* =========================================================
   02. Reset & Base
   ========================================================= */

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Onest, Arial, sans-serif;
  background: #fff;
  color: var(--text);
  overflow-x: hidden
}

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

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

/* =========================================================
   03. Layout Helpers
   ========================================================= */

.container {
  width: min(1220px, 92%);
  margin: auto
}

/* =========================================================
   04. Header & Navigation
   ========================================================= */

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.nav-inner {
  height: 76px;
  width: min(1320px, 94%);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 240px
}

.logo img {
  width: 120px;
  height: 62px;
  object-fit: contain
}

.logo strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
  color: #111
}

.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px
}

.nav>a,
.has-menu>a {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 76px;
  transition: .25s
}

.nav>a:hover,
.has-menu:hover>a {
  color: #000
}

.nav>a.active,
.has-menu.active-parent>a,
.mega a.active {
  color: #000
}

.mega a.active {
  background: var(--soft)
}

.has-menu {
  position: relative
}

.mega {
  position: absolute;
  top: 100%;
  left: -24px;
  width: 315px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .1);
  transition: .25s
}

.mega a {
  display: block;
  padding: 13px 15px;
  border-radius: 13px;
  color: #444;
  font-size: 14px;
  font-weight: 600;
  transition: .25s
}

.mega a:hover {
  background: var(--soft);
  color: #000;
  padding-left: 22px
}

.has-menu:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: none
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #d8d0c4;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: .25s;
}

.lang-switch:hover {
  border-color: #111;
  transform: translateY(-1px);
}

.header-whatsapp {
  padding: 12px 18px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: .3s
}

.header-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .17)
}

.hamburger {
  display: none;
  border: 0;
  background: none;
  margin-left: auto
}

.hamburger i {
  display: block;
  width: 25px;
  height: 2px;
  background: #111;
  margin: 5px
}

/* =========================================================
   05. Hero
   ========================================================= */

.hero {
  position: relative;
  padding: 136px 0 76px;
  min-height: 100vh;
  background: radial-gradient(circle at 78% 16%, rgba(154, 107, 55, .14), transparent 30%), linear-gradient(135deg, #fff 0%, #f7f7f7 100%);
  overflow: visible
}

.hero:after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 620px;
  height: 860px;
  right: 26%;
  top: 300px;
  background: radial-gradient(circle, rgba(16, 16, 16, .05), transparent 62%);
  pointer-events: none
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 72px
}

.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 17px
}

.mini-title:before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold)
}

h1,
h2,
h3,
p {
  margin-top: 0
}

.hero h1,
.intro h2,
.section-title h2,
.consult-box h2,
.international h2,
.faq-left h2,
.final-box h2 {
  font-size: clamp(42px, 5.6vw, 78px);
  line-height: 1.04;
  letter-spacing: -.065em;
  font-weight: 600;
  color: #111;
  margin-bottom: 22px
}

.hero p {
  max-width: 620px;
  color: #555;
  font-size: 17px;
  line-height: 1.85
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 32px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 14px;
  font-weight: 700;
  transition: .3s
}

.btn-dark {
  background: #111;
  color: #fff
}

.btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #d8d8d8
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .14)
}

.hero-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px
}

.hero-info div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px
}

.hero-info b {
  display: block;
  font-size: 22px;
  color: #111
}

.hero-info span {
  display: block;
  color: #555;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 8px
}

.portrait-card {
  position: relative;
  border-radius: 36px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .12)
}

.portrait-card img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px
}

.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(14px);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .13)
}

.glass-card.one {
  top: 36px;
  left: -18px
}

.glass-card.two {
  right: -16px;
  bottom: 50px
}

/* =========================================================
   06. Homepage Sections
   ========================================================= */

.intro,
.procedures,
.patient-process,
.free-consult,
.home-results-preview,
.testimonials,
.international,
.blog-news,
.faq,
.final-cta {
  padding: 96px 0
}

.intro-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 74px;
  align-items: center
}

.intro-image img {
  height: 620px;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 34px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, .1)
}

.intro h2,
.section-title h2,
.consult-box h2,
.international h2,
.faq-left h2,
.final-box h2 {
  font-size: clamp(34px, 4.4vw, 60px)
}

.about-doctor {
  position: relative;
  background: #fff;
  overflow: hidden
}

.about-doctor:after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(154, 107, 55, .08), transparent 66%);
  pointer-events: none
}

.about-doctor .intro-grid {
  position: relative;
  z-index: 2
}

.doctor-bio {
  display: grid;
  gap: 15px;
  margin-bottom: 28px
}

.doctor-bio p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.85
}

.feature-list {
  margin-top: 26px;
  display: grid;
  gap: 12px
}

.feature-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f5f5f5;
  color: #222;
  font-size: 14px;
  font-weight: 700
}

.feature-list b {
  color: var(--gold);
  margin-right: 8px
}

.doctor-focus-list {
  margin-top: 0;
  margin-bottom: 28px
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.section-title {
  text-align: center;
  max-width: 770px;
  margin: 0 auto 50px
}

.procedures,
.testimonials,
.blog-news {
  background: #f7f7f7
}

/* =========================================================
   07. Cards & Components
   ========================================================= */

.operation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px
}

.operation-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  display: flex;
  align-items: flex-end;
  isolation: isolate
}

.operation-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: .7s ease
}

.operation-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .76) 30%, rgba(255, 255, 255, .08) 68%);
  transition: .45s ease
}

.operation-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.05)
}

.operation-card:hover:after {
  background: linear-gradient(to top, rgba(17, 17, 17, .86) 0%, rgba(17, 17, 17, .46) 42%, rgba(17, 17, 17, .05) 74%)
}

.operation-content {
  width: 100%;
  padding: 30px;
  text-align: center;
  transition: .35s ease
}

.operation-content small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px
}

.operation-content h3 {
  font-size: 28px;
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 600;
  margin-bottom: 10px
}

.operation-content p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: #fff;
  line-height: 1.65;
  font-size: 14px;
  transition: .35s ease
}

.operation-card:hover .operation-content {
  transform: translateY(-10px);
  color: #fff
}

.operation-card:hover small {
  color: #f0c98f
}

.operation-card:hover p {
  max-height: 120px;
  opacity: 1
}

.operation-cta {
  background: linear-gradient(135deg, #111, #2c2c2c)
}

.operation-cta:after {
  display: none
}

.operation-cta .operation-content {
  color: #fff
}

.operation-cta small {
  color: #f0c98f
}

.operation-cta p {
  max-height: 120px;
  opacity: 1;
  color: #eee
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.process-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 245px;
  transition: .35s
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .1)
}

.process-card b {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px
}

.process-card h3 {
  font-size: 21px;
  margin: 22px 0 10px;
  letter-spacing: -.04em
}

.process-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.75
}

.consult-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 58px;
  border-radius: 38px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .72)), url("../images/site/web/yuz-planlama.jpg") center/cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .1)
}

.consult-box div {
  max-width: 720px
}

.consult-box p,
.international p,
.faq-left p,
.final-box p {
  color: #555;
  font-size: 16px;
  line-height: 1.85
}

.slider-btn {
  position: absolute;
  top: 36%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
  cursor: pointer;
  font-size: 34px;
  line-height: 1
}

.slider-btn.prev {
  left: -18px
}

.slider-btn.next {
  right: -18px
}

.testimonial-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent)
}

.testimonial-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 28s linear infinite
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused
}

.comment-card {
  width: 360px;
  min-height: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .06)
}

.comment-card p {
  color: #444;
  line-height: 1.75;
  font-size: 15px
}

.comment-card b {
  display: block;
  margin-top: 18px;
  font-size: 14px
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.international {
  background: #fff
}

.international-box {
  min-height: 420px;
  border-radius: 40px;
  padding: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .56)), url("../images/site/web/istanbul-bogaz.jpg") center/cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .1)
}

.international-box div {
  max-width: 660px
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

@media (min-width: 1100px) {
  .home-page .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  transition: .35s
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .11)
}

.blog-card img {
  height: 250px;
  width: 100%;
  object-fit: cover
}

.blog-card div {
  padding: 26px
}

.blog-card span {
  display: inline-block;
  color: #8b5e2e;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px
}

.blog-card h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.045em
}

.blog-card p {
  color: #555;
  line-height: 1.7;
  font-size: 14px
}

.blog-card a {
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #111
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-item button {
  width: 100%;
  border: 0;
  background: none;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: #111;
  position: relative
}

.faq-item button:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  font-size: 24px
}

.faq-item.active button:after {
  content: "−"
}

.faq-item div {
  max-height: 0;
  overflow: hidden;
  transition: .3s
}

.faq-item.active div {
  max-height: 160px
}

.faq-item p {
  color: #555;
  line-height: 1.75;
  padding: 0 40px 24px 0
}

.final-box {
  border-radius: 40px;
  padding: 72px 30px;
  text-align: center;
  color: #fff;
  background: linear-gradient(rgba(17, 17, 17, .78), rgba(17, 17, 17, .84)), url("../images/site/web/genel-guzellik.jpg") center/cover
}

.final-box h2 {
  color: #fff
}

.final-box p {
  color: #e1e1e1
}

/* =========================================================
   08. Footer
   ========================================================= */

.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 70px 0 34px
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111;
  font-weight: 600;
  margin-bottom: 18px
}

.footer-brand strong {
  display: block;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.05em;
  margin-bottom: 14px
}

.footer-brand p {
  color: #d0d0d0;
  line-height: 1.7;
  font-size: 14px;
  max-width: 370px
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin: 0 0 18px
}

.footer-col a,
.footer-col p {
  display: block;
  color: #d0d0d0;
  font-size: 14px;
  margin: 10px 0;
  line-height: 1.6;
  transition: .25s
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(4px)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #b0b0b0;
  font-size: 13px;
  padding-top: 24px
}

.footer-bottom a {
  color: #d0d0d0
}

/* Floating contact / mobile tabbar */

.quick-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.quick-actions a {
  min-width: 116px;
  height: 46px;
  border-radius: 999px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18)
}

.call-btn {
  background: #111
}

.wa-btn {
  background: var(--green)
}

.mobile-tabbar {
  display: none
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: .75s ease
}

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

@media(max-width:1100px) {
  .header-whatsapp {
    display: none
  }

  .header-actions {
    order: 3;
    margin-left: 8px;
  }

  .lang-switch {
    min-width: 40px;
    height: 40px;
  }

  .hamburger {
    display: block
  }

  .nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .16)
  }

  .nav.open {
    display: flex
  }

  .nav>a,
  .has-menu>a {
    display: block;
    line-height: normal;
    width: 100%;
    padding: 14px 8px;
    font-size: 15px
  }

  .has-menu {
    width: 100%
  }

  .mega {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    width: 100%;
    box-shadow: none;
    background: var(--soft);
    border-radius: 18px;
    margin-top: 8px
  }

  .has-menu.open .mega {
    display: block
  }

  .hero-grid,
  .intro-grid,
  .faq-grid {
    grid-template-columns: 1fr
  }

  .operation-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr)
  }

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

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

@media(max-width:700px) {

  html,
  body {
    width: 100%;
    overflow-x: hidden
  }

  body {
    padding-bottom: 110px
  }

  .nav-inner {
    height: 72px
  }

  .logo {
    min-width: auto
  }

  .logo img {
    width: 92px;
    height: 48px
  }

  .logo strong {
    display: none
  }

  .hero {
    min-height: auto;
    padding: 116px 0 56px
  }

  .hero:after {
    width: 420px;
    height: 620px;
    right: -120px;
    top: 360px;
    opacity: .08
  }

  .hero h1 {
    font-size: 42px
  }

  .hero p {
    font-size: 15px
  }

  .hero-buttons .btn {
    width: 100%
  }

  .hero-info,
  .operation-grid,
  .process-grid,
  .blog-grid {
    grid-template-columns: 1fr
  }

  .portrait-card {
    border-radius: 28px
  }

  .portrait-card img {
    height: 460px;
    border-radius: 22px
  }

  .glass-card {
    max-width: 150px;
    font-size: 13px;
    padding: 12px 15px;
    white-space: nowrap
  }

  .glass-card.one {
    left: -6px;
    top: 40px
  }

  .glass-card.two {
    right: -6px;
    bottom: 45px
  }

  .intro,
  .procedures,
  .patient-process,
  .free-consult,
  .home-results-preview,
  .testimonials,
  .international,
  .blog-news,
  .faq,
  .final-cta {
    padding: 66px 0
  }

  .intro-image img {
    height: 430px;
    border-radius: 28px
  }

  .doctor-bio p {
    font-size: 14px;
    line-height: 1.75
  }

  .intro-actions .btn {
    width: 100%
  }

  .operation-card {
    min-height: 420px
  }

  .operation-content h3 {
    font-size: 27px
  }

  .consult-box,
  .international-box {
    padding: 32px;
    display: block;
    border-radius: 32px
  }

  .consult-box .btn,
  .international-box .btn {
    margin-top: 22px;
    width: 100%
  }

  .slider-btn {
    display: none
  }

  .comment-card {
    width: 310px
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 26px
  }

  .footer-bottom {
    display: block
  }

  .quick-actions {
    display: none
  }

  .mobile-tabbar {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 999999;
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr 1fr;
    align-items: center;
    gap: 7px;
    height: 72px;
    padding: 7px;
    background: #111;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .32)
  }

  .mobile-tabbar a {
    height: 56px;
    border-radius: 18px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap
  }

  .mobile-tabbar a:nth-child(3) {
    background: #25d366;
    color: #fff
  }

  .mobile-tabbar a:nth-child(4) {
    background: #25d366;
    color: #fff
  }
}

/* =========================================================
   09. Page Templates
   ========================================================= */

/* =========================
   MD HERO SLIDER
========================= */

.md-hero {
  position: relative;
  height: 100vh;
  min-height: 760px;
  overflow: hidden;
  background: #101010;
  margin: 0;
  padding: 0;
}

.md-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
}

.md-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.md-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}

.md-hero-slide.is-active img {
  transform: scale(1);
}

.md-hero-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .60) 44%, rgba(0, 0, 0, .20) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 55%);
}

.md-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 76px;
}

.md-hero-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: #f0c98f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.md-hero-content span:before {
  content: "";
  width: 34px;
  height: 1px;
  background: #f0c98f;
}

.md-hero-content h1,
.md-hero-content h2 {
  max-width: 900px;
  color: #fff;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: .96;
  letter-spacing: -.075em;
  font-weight: 600;
  margin: 0 0 26px;
}

.md-hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
  line-height: 1.85;
  margin: 0;
}

.md-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.md-hero-buttons a {
  height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
}

.md-hero-buttons a:first-child {
  background: #fff;
  color: #111;
}

.md-hero-buttons a:last-child {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  backdrop-filter: blur(14px);
}

.md-hero-buttons a:hover {
  transform: translateY(-3px);
}

.md-hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  backdrop-filter: blur(14px);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: .3s;
}

.md-hero-arrow:hover {
  background: #fff;
  color: #111;
}

.md-hero-prev {
  left: 34px;
}

.md-hero-next {
  right: 34px;
}

.md-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}

.md-hero-dot {
  width: 38px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .35);
  cursor: pointer;
  padding: 0;
}

.md-hero-dot.is-active {
  background: #fff;
}

@media(max-width:700px) {
  .md-hero {
    height: 100svh;
    min-height: 690px;
  }

  .md-hero-content {
    padding-top: 78px;
  }

  .md-hero-content h1,
  .md-hero-content h2 {
    font-size: 43px;
  }

  .md-hero-content p {
    font-size: 15px;
  }

  .md-hero-buttons a {
    width: 100%;
  }

  .md-hero-arrow {
    display: none;
  }
}

/* Homepage hero text layering */
.md-hero {
  position: relative;
  isolation: isolate;
}

.md-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.md-hero-slide.is-active {
  z-index: 2;
}

.md-hero-slide img {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.md-hero-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .68) 38%, rgba(0, 0, 0, .25) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .42), rgba(0, 0, 0, 0) 55%);
}

.md-hero-content {
  position: relative;
  z-index: 99;
  color: #fff;
  min-height: 100vh;
  padding-top: 120px;
  pointer-events: auto;
}

.md-hero-content span,
.md-hero-content h1,
.md-hero-content h2,
.md-hero-content p,
.md-hero-buttons {
  position: relative;
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: block;
}

.md-hero-content span {
  display: inline-flex;
  color: #f0c98f;
}

.md-hero-content h1,
.md-hero-content h2 {
  font-size: clamp(52px, 3.8vw, 92px);
  line-height: 1.05;
  letter-spacing: -.05em;
  max-width: 760px;
}

.md-hero-content p {
  color: rgba(255, 255, 255, .88);
}

.md-hero-buttons {
  display: flex;
}

.md-hero-buttons a {
  opacity: 1;
  visibility: visible;
}

.md-hero-arrow,
.md-hero-dots {
  z-index: 120;
}

@media(max-width:700px) {

  .md-hero-content h1,
  .md-hero-content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

}

/* Homepage service strip */
.md-service-strip {
  position: relative;
  display: flex;
  width: 100%;
  height: 690px;
  padding: 0;
  margin: 0;
  gap: 0;
  background: #111;
  overflow: hidden;
  isolation: isolate;
}

/* slider ile yumuşak geçiş */
.md-service-strip:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 140px;
  z-index: 10;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .95), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.md-strip-card {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  transition: flex .65s cubic-bezier(.22, .61, .36, 1);
}

.md-service-strip:hover .md-strip-card {
  flex: .82;
}

.md-service-strip .md-strip-card:hover {
  flex: 2.35;
}

.md-strip-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 1s ease, filter .65s ease;
}

.md-strip-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.md-strip-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0, 0, 0, .86) 0%, rgba(0, 0, 0, .40) 46%, rgba(0, 0, 0, .05) 100%);
}

.md-strip-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  color: #fff;
  transform: translateY(24px);
  transition: .45s ease;
}

.md-strip-card:hover .md-strip-content {
  transform: translateY(0);
}

.md-strip-content span {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.md-strip-content h2 {
  color: #fff;
  font-size: clamp(25px, 2.4vw, 48px);
  line-height: 1;
  letter-spacing: -.06em;
  margin: 0 0 12px;
}

.md-strip-content p {
  max-width: 420px;
  color: rgba(255, 255, 255, .84);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: .4s ease;
}

.md-strip-card:hover .md-strip-content p {
  opacity: 1;
  max-height: 120px;
}

/* Homepage service strip responsive */
@media(max-width:900px) {
  .md-service-strip {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
  }

  .md-strip-card {
    height: 430px;
    flex: none;
  }

  .md-service-strip:hover .md-strip-card,
  .md-service-strip .md-strip-card:hover {
    flex: none;
  }

  .md-strip-content {
    transform: none;
  }

  .md-strip-content p {
    opacity: 1;
    max-height: 140px;
  }
}

/* =========================================
   PREMIUM GRID GALLERY
========================================= */

.md-gallery-section {
  position: relative;
  padding: 8px;
  background: #fff;
  overflow: hidden;
}

.md-gallery-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 8px;
  min-height: 940px;
}

/* SOL */
.md-gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 940px;
  background: #111;
}

.md-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* SAĞ */
.md-gallery-right {
  display: grid;
  grid-template-rows: 330px 1fr;
  gap: 8px;
}

/* ÜST 3 */
.md-gallery-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.md-gallery-small {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 330px;
  background: #111;
}

.md-gallery-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* ALT 2 */
.md-gallery-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.md-gallery-wide {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 600px;
  background: #111;
}

.md-gallery-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s ease;
}

/* HOVER */
.md-gallery-main:hover img,
.md-gallery-small:hover img,
.md-gallery-wide:hover img {
  transform: scale(1.06);
}

/* OVERLAY */
.md-gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .35) 45%,
      rgba(0, 0, 0, .05) 100%);
}

/* TEXT */
.md-gallery-text {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  color: #fff;
}

.md-gallery-text span,
.md-gallery-mini-text span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 9px 15px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(10px);

  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.md-gallery-text h2 {
  margin: 18px 0 0;
  font-size: 58px;
  line-height: 1;
  letter-spacing: -.07em;
  color: #fff;
  max-width: 480px;
}

.md-gallery-text.small h3 {
  margin: 16px 0 0;
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.05em;
  color: #fff;
  max-width: 320px;
}

/* KÜÇÜK TEXT */
.md-gallery-mini-text {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
}

/* Gallery responsive */
@media(max-width:1000px) {

  .md-gallery-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .md-gallery-main {
    min-height: 520px;
  }

  .md-gallery-right {
    grid-template-rows: auto auto;
  }

  .md-gallery-top {
    grid-template-columns: 1fr;
  }

  .md-gallery-small {
    min-height: 240px;
  }

  .md-gallery-bottom {
    grid-template-columns: 1fr;
  }

  .md-gallery-wide {
    min-height: 280px;
  }

  .md-gallery-text {
    left: 22px;
    bottom: 22px;
  }

  .md-gallery-text h2 {
    font-size: 40px;
  }

  .md-gallery-text.small h3 {
    font-size: 24px;
  }

}

/* MODERN ABOUT */
.md-about {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(169, 132, 88, .10), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
  overflow: hidden;
}

.md-about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 86px;
  align-items: center;
}

.md-about-visual {
  position: relative;
}

.md-about-photo {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .12);
}

.md-about-photo img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 32px;
}

.md-about-card {
  position: absolute;
  z-index: 3;
  min-width: 190px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .14);
}

.md-about-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.05em;
  color: #111;
  margin-bottom: 8px;
}

.md-about-card span {
  display: block;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}

.md-about-card-top {
  top: 42px;
  right: -34px;
}

.md-about-card-bottom {
  left: -34px;
  bottom: 42px;
}

.md-about-content h2 {
  font-size: clamp(36px, 4.6vw, 66px);
  line-height: 1.03;
  letter-spacing: -.07em;
  margin: 0 0 24px;
  color: #111;
}

.md-about-lead {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  max-width: 760px;
  margin-bottom: 34px;
}

.md-about-story {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.md-about-story div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid #e8e8e8;
  transition: .3s;
}

.md-about-story div:hover {
  transform: translateX(8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .08);
}

.md-about-story b {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.md-about-story p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.75;
}

.md-about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.md-about-tags span {
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e1e1e1;
  color: #333;
  font-size: 13px;
  font-weight: 600;
}

.md-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media(max-width:1000px) {
  .md-about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .md-about-photo img {
    height: 560px;
  }

  .md-about-card-top {
    right: 18px;
  }

  .md-about-card-bottom {
    left: 18px;
  }
}

@media(max-width:700px) {
  .md-about {
    padding: 72px 0;
  }

  .md-about-photo {
    border-radius: 30px;
    padding: 9px;
  }

  .md-about-photo img {
    height: 460px;
    border-radius: 23px;
  }

  .md-about-card {
    min-width: 155px;
    padding: 14px 16px;
  }

  .md-about-card strong {
    font-size: 24px;
  }

  .md-about-content h2 {
    font-size: 38px;
  }

  .md-about-lead {
    font-size: 15px;
  }

  .md-about-story div {
    grid-template-columns: 1fr;
  }

  .md-about-actions .btn {
    width: 100%;
  }
}

/* Detail page: operation template */

/* =========================================
   OPERATION PAGE TEMPLATE
========================================= */

.procedure-page {
  background: #fff;
}

.page-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.page-hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.page-hero-cover {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .84) 0%, rgba(0, 0, 0, .58) 42%, rgba(0, 0, 0, .14) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .45), rgba(0, 0, 0, 0) 58%);
}

.page-hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 126px 0 72px;
  color: #fff;
}

.page-hero .mini-title {
  color: #f0c98f;
}

.page-hero .mini-title:before {
  background: #f0c98f;
}

.page-hero h1 {
  max-width: 860px;
  color: #fff;
  font-size: clamp(58px, 8vw, 126px);
  line-height: .94;
  letter-spacing: -.075em;
  margin: 0 0 22px;
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.6;
  margin: 0;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px);
}

.procedure-intro,
.procedure-suitability,
.procedure-process,
.procedure-recovery,
.procedure-gallery,
.related-procedures,
.procedure-faq,
.page-cta {
  padding: 104px 0;
}

.procedure-suitability,
.procedure-recovery,
.procedure-faq {
  background: #f7f7f7;
}

.procedure-suitability {
  background:
    linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.procedure-recovery {
  background: #fff;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 76px;
  align-items: center;
}

.procedure-copy h2,
.procedure-recovery-box h2,
.procedure-gallery-head h2,
.page-cta-box h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -.065em;
  color: #111;
  margin-bottom: 24px;
}

.procedure-copy p,
.procedure-recovery-list p,
.procedure-gallery-head p,
.procedure-feature-card p,
.procedure-step p,
.page-cta-box p {
  color: #555;
  line-height: 1.82;
  font-size: 15px;
}

.procedure-info-panel {
  position: relative;
  min-height: 620px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

.procedure-info-panel img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.procedure-info-panel:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .68), rgba(0, 0, 0, .04) 60%);
}

.procedure-info-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
}

.procedure-info-card b {
  display: block;
  color: #111;
  font-size: 22px;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}

.procedure-info-card span {
  display: block;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.procedure-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.procedure-feature-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid #dedede;
  border-radius: 30px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: .35s ease;
}

.procedure-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .09);
}

.procedure-feature-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
}

.procedure-feature-card h3,
.procedure-step h3,
.procedure-recovery-list h3 {
  color: #111;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.045em;
  margin-bottom: 12px;
}

.procedure-process {
  background:
    linear-gradient(rgba(17, 17, 17, .86), rgba(17, 17, 17, .86)),
    url("../images/site/web/ameliyathane.jpg") center/cover;
}

.procedure-process .section-title h2 {
  color: #fff;
}

.procedure-process .mini-title {
  color: #f0c98f;
}

.procedure-process .mini-title:before {
  background: #f0c98f;
}

.procedure-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .18);
}

.procedure-step {
  min-height: 330px;
  padding: 34px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.procedure-step b {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 15px;
  margin-bottom: 30px;
}

.procedure-step h3 {
  color: #fff;
}

.procedure-step p {
  color: rgba(255, 255, 255, .78);
}

.procedure-recovery-box {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: start;
  padding: 54px;
  border-radius: 42px;
  background: #f7f7f7;
}

.procedure-recovery-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.procedure-recovery-list article {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid #dedede;
  background: transparent;
}

.procedure-gallery {
  color: #171717;
  background:
    radial-gradient(circle at 18% 18%, rgba(169, 132, 88, .12), transparent 34%),
    linear-gradient(180deg, #fbfaf8 0%, #f3f0eb 100%);
}

.procedure-gallery-head {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 50px;
  align-items: end;
  margin-bottom: 48px;
}

.procedure-gallery-head h2 {
  color: #171717;
  margin-bottom: 0;
}

.procedure-gallery-head p {
  color: #5f5a55;
}

.procedure-gallery .mini-title {
  color: #9d7443;
}

.procedure-gallery .mini-title:before {
  background: #9d7443;
}

.procedure-gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr .78fr;
  grid-template-rows: 360px 360px;
  gap: 16px;
}

.procedure-gallery-card,
.procedure-placeholder-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 300px;
  background: #fff;
  border: 1px solid rgba(169, 132, 88, .18);
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(38, 32, 26, .14);
}

.procedure-gallery-large {
  grid-row: span 2;
}

.procedure-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #f7f3ee;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.procedure-gallery-trigger:focus-visible {
  outline: 3px solid #c99b5f;
  outline-offset: -8px;
}

.procedure-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease, opacity .22s ease;
}

.procedure-gallery-card.is-changing img {
  opacity: .72;
}

.procedure-gallery-card:hover img {
  transform: scale(1.06);
}

.procedure-gallery-card:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, .08) 65%);
  pointer-events: none;
}

.procedure-gallery-content {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  pointer-events: none;
}

.procedure-gallery-kicker {
  display: block;
  color: #f0c98f;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.procedure-gallery-toggle-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.procedure-gallery-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 36px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .35);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.procedure-gallery-toggle:hover,
.procedure-gallery-toggle:focus-visible {
  background: rgba(255, 255, 255, .26);
  border-color: rgba(255, 255, 255, .68);
}

.procedure-gallery-toggle:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.procedure-gallery-toggle.is-active {
  background: #fff;
  border-color: #fff;
  color: #171717;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.procedure-gallery-content strong {
  display: block;
  max-width: 560px;
  color: #fff;
  font-size: clamp(26px, 3vw, 46px);
  line-height: 1.03;
  letter-spacing: -.06em;
  margin: 16px 0 0;
}

.procedure-placeholder-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(247, 243, 238, .92)),
    repeating-linear-gradient(135deg, rgba(169, 132, 88, .13) 0 1px, transparent 1px 22px);
}

.procedure-placeholder-card strong {
  display: block;
  color: #171717;
  font-size: 32px;
  line-height: 1.08;
  letter-spacing: -.055em;
  margin-top: 22px;
}

.procedure-placeholder-card p {
  color: #5f5a55;
  line-height: 1.7;
  margin: 12px 0 0;
}

.related-procedures {
  background: #fff;
}

.related-procedures-grid {
  grid-template-columns: repeat(4, 1fr);
}

.related-procedures .operation-card {
  min-height: 500px;
  border-radius: 34px;
  border-color: #e2e2e2;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .08);
}

.related-procedures .operation-card img,
.related-procedures .operation-card:after {
  border-radius: 34px;
}

.related-procedure-btn {
  margin-top: 16px;
  pointer-events: none;
}

.related-procedures .operation-content {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .78);
  backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, 94vw);
  max-height: 88vh;
  display: grid;
  gap: 16px;
  color: #fff;
}

.lightbox-image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
}

.lightbox-caption {
  margin-top: 12px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Lightbox Before/After Controls */
.procedure-lightbox__controls {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.lightbox.has-controls .procedure-lightbox__controls {
  display: flex;
}

.procedure-lightbox__toggle {
  min-width: 120px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.procedure-lightbox__toggle:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}

.procedure-lightbox__toggle.is-active {
  background: #fff;
  color: #2f2924;
  border-color: #fff;
}

@media (max-width: 768px) {
  .procedure-lightbox__controls {
    margin-top: 20px;
    gap: 10px;
  }

  .procedure-lightbox__toggle {
    min-width: 100px;
    min-height: 40px;
    font-size: 13px;
  }
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
}

.page-cta {
  background: #fff;
}

.page-cta-box {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 70px 34px;
  border-radius: 42px;
  color: #fff;
  background:
    linear-gradient(rgba(17, 17, 17, .78), rgba(17, 17, 17, .82)),
    url("../images/site/web/yuz-planlama.jpg") center/cover;
}

.page-cta-box .mini-title {
  color: #f0c98f;
}

.page-cta-box .mini-title:before {
  background: #f0c98f;
}

.page-cta-box h2 {
  max-width: 850px;
  color: #fff;
}

.page-cta-box p {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
}

@media(max-width:1100px) {

  .content-split,
  .procedure-recovery-box,
  .procedure-gallery-head {
    grid-template-columns: 1fr;
  }

  .procedure-card-grid,
  .procedure-timeline,
  .related-procedures-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .procedure-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .procedure-gallery-card,
  .procedure-placeholder-card {
    min-height: 430px;
  }
}

@media(max-width:700px) {
  .page-hero {
    min-height: 620px;
  }

  .page-hero-content {
    min-height: 620px;
    padding: 112px 0 56px;
  }

  .page-hero h1 {
    font-size: 56px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .page-actions .btn {
    width: 100%;
  }

  .procedure-intro,
  .procedure-suitability,
  .procedure-process,
  .procedure-recovery,
  .procedure-gallery,
  .related-procedures,
  .procedure-faq,
  .page-cta {
    padding: 70px 0;
  }

  .procedure-suitability,
  .related-procedures {
    overflow: hidden;
  }

  .content-split {
    gap: 38px;
  }

  .procedure-info-panel,
  .procedure-info-panel img {
    min-height: 0;
    height: 430px;
    border-radius: 28px;
  }

  .procedure-card-grid,
  .procedure-timeline,
  .procedure-recovery-list,
  .related-procedures-grid {
    grid-template-columns: 1fr;
  }

  .procedure-card-grid,
  .related-procedures-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 4vw 12px;
    margin-left: -4vw;
    margin-right: -4vw;
    scrollbar-width: none;
  }

  .procedure-card-grid::-webkit-scrollbar,
  .related-procedures-grid::-webkit-scrollbar {
    display: none;
  }

  .procedure-feature-card,
  .related-procedures .operation-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }

  .procedure-feature-card,
  .procedure-step {
    min-height: auto;
  }

  .procedure-recovery-box {
    padding: 30px 22px;
    border-radius: 32px;
  }

  .procedure-gallery-card,
  .procedure-placeholder-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .procedure-gallery-head {
    gap: 18px;
    margin-bottom: 30px;
  }

  .procedure-gallery-grid {
    gap: 12px;
  }

  .procedure-gallery-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .procedure-gallery-toggle {
    min-width: 78px;
    min-height: 34px;
    font-size: 10px;
  }

  .procedure-placeholder-card {
    padding: 24px;
  }

  .related-procedures .operation-card {
    min-height: 430px;
    border-radius: 30px;
  }

  .page-cta-box {
    min-height: auto;
    padding: 54px 22px;
    border-radius: 32px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-image {
    max-height: 72vh;
    border-radius: 20px;
  }

  .lightbox-close {
    top: -12px;
    right: -8px;
  }
}

/* =========================================================
   SURGERY LIST PAGE
   ========================================================= */
.surgery-list-section {
  padding: 100px 0;
  background: var(--soft);
}

.surgery-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.page-ameliyatlar .page-hero-cover {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 50%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(to top, rgba(0, 0, 0, .25), rgba(0, 0, 0, 0) 60%);
}

.page-ameliyatlar .surgery-hero__image {
  object-position: center 45%;
}

.surgery-list__image--nose {
  object-position: center center;
}

.surgery-list__image--face {
  object-position: center 20%;
}

.surgery-list__image--neck {
  object-position: center 30%;
}

.surgery-list__image--eyes {
  object-position: center 35%;
}

.surgery-list__item {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #fff;
  border-radius: 40px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.03);
}

.surgery-list__item--reverse {
  flex-direction: row-reverse;
}

.surgery-list__media {
  flex: 1;
  min-width: 0;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  /* Safari overflow fix */
  transform: translateZ(0);
}

.surgery-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.surgery-list__item:hover .surgery-list__media img {
  transform: scale(1.04);
}

.surgery-list__content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.surgery-list__eyebrow {
  display: inline-block;
  padding: 8px 18px;
  background: var(--line);
  color: var(--text);
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.surgery-list__title {
  font-size: 42px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.surgery-list__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.surgery-list__actions {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .surgery-list {
    gap: 60px;
  }

  .surgery-list__item {
    gap: 40px;
    padding: 20px;
    border-radius: 32px;
  }

  .surgery-list__content {
    padding: 20px;
  }

  .surgery-list__title {
    font-size: 34px;
  }
}

@media (max-width: 700px) {
  .surgery-list-section {
    padding: 60px 0;
  }

  .surgery-list {
    gap: 40px;
  }

  .surgery-list__item,
  .surgery-list__item--reverse {
    flex-direction: column;
    padding: 16px;
    border-radius: 28px;
    gap: 0;
  }

  .surgery-list__media {
    border-radius: 24px;
    width: 100%;
  }

  .surgery-list__content {
    padding: 32px 16px 16px;
  }

  .surgery-list__title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .surgery-list__text {
    margin-bottom: 28px;
  }
}

/* =========================================================
   BEFORE / AFTER PAGE
   ========================================================= */

.page-oncesi-sonrasi .results-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 45%, rgba(232, 211, 173, .32), transparent 34%),
    linear-gradient(135deg, #faf7f2 0%, #ffffff 58%, #f4ede3 100%);
  padding: 0;
}

.page-oncesi-sonrasi .results-hero__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 48px;
  width: 100%;
}

.page-oncesi-sonrasi .results-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.page-oncesi-sonrasi .results-hero__visual {
  position: relative;
  min-height: 560px;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}

.page-oncesi-sonrasi .results-hero__image-wrap {
  position: absolute;
  top: 0;
  right: -100px;
  width: calc(100% + 100px);
  height: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.page-oncesi-sonrasi .results-hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 20px 40px rgba(47, 41, 36, 0.12));
}

.page-oncesi-sonrasi .results-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(55, 45, 35, .72);
  font-weight: 700;
}

.page-oncesi-sonrasi .results-hero__title {
  margin: 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.95;
  color: #2f2924;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.page-oncesi-sonrasi .results-hero__text {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.7vw, 19px);
  line-height: 1.6;
  color: rgba(47, 41, 36, .72);
}

.page-oncesi-sonrasi .results-hero__actions {
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .page-oncesi-sonrasi .results-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .page-oncesi-sonrasi .results-hero__image-wrap {
    right: -40px;
    width: calc(100% + 40px);
  }
}

@media (max-width: 900px) {
  .page-oncesi-sonrasi .results-hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

  .page-oncesi-sonrasi .results-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .page-oncesi-sonrasi .results-hero__content {
    padding: 0;
    order: 1;
  }

  .page-oncesi-sonrasi .results-hero__visual {
    min-height: 340px;
    order: 2;
  }

  .page-oncesi-sonrasi .results-hero__image-wrap {
    position: relative;
    right: 0;
    width: 100%;
  }

  .page-oncesi-sonrasi .results-hero__title {
    font-size: clamp(42px, 12vw, 64px);
  }

  .page-oncesi-sonrasi .results-hero__text {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-oncesi-sonrasi .results-filters {
  padding: 18px 0 34px;
  background: #fff;
}

.page-oncesi-sonrasi .results-filters__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.page-oncesi-sonrasi .results-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-oncesi-sonrasi .results-filter {
  border: 1px solid rgba(47, 41, 36, .12);
  background: #fff;
  color: #3f352d;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(40, 30, 20, .05);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.page-oncesi-sonrasi .results-filter:hover {
  transform: translateY(-1px);
}

.page-oncesi-sonrasi .results-filter.is-active {
  background: #e8d3ad;
  border-color: #e8d3ad;
  color: #2f2924;
}

@media (max-width: 768px) {
  .page-oncesi-sonrasi .results-filters {
    padding: 12px 0 24px;
  }

  .page-oncesi-sonrasi .results-filters__inner {
    padding: 0 18px;
  }

  .page-oncesi-sonrasi .results-filters__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .page-oncesi-sonrasi .results-filters__list::-webkit-scrollbar {
    display: none;
  }

  .page-oncesi-sonrasi .results-filter {
    flex: 0 0 auto;
    padding: 12px 17px;
  }
}

.page-oncesi-sonrasi .results-gallery {
  padding: 0 0 72px;
  background: #fff;
}

/* =========================================================
   14. RESULTS ARCHIVE PAGE (oncesi-sonrasi.php) & Home Preview
   ========================================================= */

.results-gallery,
.home-results-preview {
  padding: 88px 0;
  background: #fff;
}

.results-gallery__inner,
.home-results-preview__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.results-gallery__grid,
.home-results-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-results-preview__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.home-results-preview__actions {
  margin-top: 56px;
  text-align: center;
}

.page-oncesi-sonrasi .results-case,
.home-results-preview .results-case {
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 18px 48px rgba(40, 30, 20, .08);
  transition: transform .25s ease, box-shadow .25s ease, opacity .2s ease;
}

.page-oncesi-sonrasi .results-case:hover,
.home-results-preview .results-case:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(40, 30, 20, .12);
}

.page-oncesi-sonrasi .results-case.is-hidden,
.home-results-preview .results-case.is-hidden {
  display: none;
}

.page-oncesi-sonrasi .results-case__media,
.home-results-preview .results-case__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f0eb;
}

.page-oncesi-sonrasi .results-case__open,
.home-results-preview .results-case__open {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.page-oncesi-sonrasi .results-case__image,
.home-results-preview .results-case__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease, transform .55s ease;
}

.page-oncesi-sonrasi .results-case:hover .results-case__image,
.home-results-preview .results-case:hover .results-case__image {
  transform: scale(1.035);
}

.page-oncesi-sonrasi .results-case__image.is-changing,
.home-results-preview .results-case__image.is-changing {
  opacity: .18;
}

.page-oncesi-sonrasi .results-case__badge,
.home-results-preview .results-case__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, .9);
  color: #2f2924;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.page-oncesi-sonrasi .results-case__zoom,
.home-results-preview .results-case__zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(47, 41, 36, 0.85);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.page-oncesi-sonrasi .results-case:hover .results-case__zoom,
.home-results-preview .results-case:hover .results-case__zoom {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {

  .page-oncesi-sonrasi .results-case__zoom,
  .home-results-preview .results-case__zoom {
    opacity: 1;
    transform: none;
    right: 12px;
    bottom: 12px;
    padding: 6px 12px;
    font-size: 12px;
  }
}

.page-oncesi-sonrasi .results-case__body,
.home-results-preview .results-case__body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.page-oncesi-sonrasi .results-case__title,
.home-results-preview .results-case__title {
  margin: 0 0 7px;
  color: #2f2924;
  font-size: 24px;
  line-height: 1.15;
}

.page-oncesi-sonrasi .results-case__text,
.home-results-preview .results-case__text {
  margin: 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.6;
}

.page-oncesi-sonrasi .results-case__controls,
.home-results-preview .results-case__controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.page-oncesi-sonrasi .results-case__toggle,
.home-results-preview .results-case__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(47, 41, 36, .12);
  border-radius: 999px;
  background: #faf7f2;
  color: rgba(47, 41, 36, .72);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.page-oncesi-sonrasi .results-case__toggle:hover,
.home-results-preview .results-case__toggle:hover {
  transform: translateY(-1px);
}

.page-oncesi-sonrasi .results-case__toggle.is-active,
.home-results-preview .results-case__toggle.is-active {
  background: #2f2924;
  border-color: #2f2924;
  color: #fff;
}

@media (max-width: 1100px) {
  .home-results-preview__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .results-gallery__grid,
  .home-results-preview__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 768px) {

  .results-gallery,
  .home-results-preview {
    padding-bottom: 48px;
  }

  .results-gallery__inner,
  .home-results-preview__inner {
    padding: 0 18px;
  }
}

.page-oncesi-sonrasi .results-note {
  padding: 0 0 70px;
  background: #fff;
}

.page-oncesi-sonrasi .results-note__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 30px 34px;
  border-radius: 28px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
}

.page-oncesi-sonrasi .results-note__title {
  margin: 0 0 10px;
  font-size: 22px;
  color: #2f2924;
}

.page-oncesi-sonrasi .results-note__text {
  margin: 0;
  color: rgba(47, 41, 36, .70);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-oncesi-sonrasi .results-note {
    padding: 0 18px 48px;
  }

  .page-oncesi-sonrasi .results-note__inner {
    padding: 24px 20px;
    border-radius: 22px;
  }
}

/* =========================================================
   20. Patient Process Page (Hasta Süreci)
   ========================================================= */

.page-hasta-sureci .patient-hero,
.patient-subpage .patient-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 60px;
  background:
    radial-gradient(circle at 82% 35%, rgba(232, 211, 173, .15), transparent 34%),
    linear-gradient(135deg, #faf7f2 0%, #ffffff 58%, #f4ede3 100%);
}

.page-hasta-sureci .patient-hero__inner,
.patient-subpage .patient-hero__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.page-hasta-sureci .patient-hero__eyebrow,
.patient-subpage .patient-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8b6a3d;
}

.page-hasta-sureci .patient-hero__title,
.patient-subpage .patient-hero__title {
  margin: 0;
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: .96;
  color: #111;
}

.page-hasta-sureci .patient-hero__text,
.patient-subpage .patient-hero__text {
  max-width: 580px;
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.75;
  color: #555;
}

.page-hasta-sureci .patient-hero__actions,
.patient-subpage .patient-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-hasta-sureci .patient-hero__visual,
.patient-subpage .patient-hero__visual {
  position: relative;
  height: 420px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  background: #f3eee7;
}

.page-hasta-sureci .patient-hero__image,
.patient-subpage .patient-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 960px) {

  .page-hasta-sureci .patient-hero,
  .patient-subpage .patient-hero {
    padding: 100px 0 40px;
  }

  .page-hasta-sureci .patient-hero__inner,
  .patient-subpage .patient-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .page-hasta-sureci .patient-hero__visual,
  .patient-subpage .patient-hero__visual {
    height: 300px;
    border-radius: 28px;
  }
}

.page-hasta-sureci .patient-summary,
.patient-subpage .patient-summary {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 0 24px 72px;
}

.page-hasta-sureci .patient-summary__inner,
.patient-subpage .patient-summary__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(47, 41, 36, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 60px rgba(40, 30, 20, .08);
  backdrop-filter: blur(10px);
}

.page-hasta-sureci .patient-summary__item,
.patient-subpage .patient-summary__item {
  padding: 26px 24px;
  border-right: 1px solid rgba(47, 41, 36, .08);
}

.page-hasta-sureci .patient-summary__item:last-child,
.patient-subpage .patient-summary__item:last-child {
  border-right: 0;
}

.page-hasta-sureci .patient-summary__icon,
.patient-subpage .patient-summary__icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f3e7d3;
  color: #8b6a3d;
  font-weight: 900;
}

.page-hasta-sureci .patient-summary__title,
.patient-subpage .patient-summary__title {
  margin: 0 0 8px;
  font-size: 17px;
  color: #2f2924;
}

.page-hasta-sureci .patient-summary__text,
.patient-subpage .patient-summary__text {
  margin: 0;
  color: rgba(47, 41, 36, .64);
  line-height: 1.55;
}

@media (max-width: 900px) {

  .page-hasta-sureci .patient-summary,
  .patient-subpage .patient-summary {
    margin-top: 0;
    padding: 0 18px 50px;
  }

  .page-hasta-sureci .patient-summary__inner,
  .patient-subpage .patient-summary__inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 24px;
  }

  .page-hasta-sureci .patient-summary__item,
  .patient-subpage .patient-summary__item {
    min-width: 250px;
    scroll-snap-align: start;
    border-right: 1px solid rgba(47, 41, 36, .08);
  }
}

.page-hasta-sureci .patient-timeline,
.patient-subpage .patient-timeline {
  padding: 0 0 88px;
  background: #fff;
}

.page-hasta-sureci .patient-timeline__inner,
.patient-subpage .patient-timeline__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  gap: 70px;
  align-items: start;
}

.page-hasta-sureci .patient-timeline__header,
.patient-subpage .patient-timeline__header {
  position: sticky;
  top: 110px;
}

.page-hasta-sureci .patient-timeline__eyebrow,
.patient-subpage .patient-timeline__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 106, 61, .85);
}

.page-hasta-sureci .patient-timeline__title,
.patient-subpage .patient-timeline__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  color: #2f2924;
}

.page-hasta-sureci .patient-timeline__text,
.patient-subpage .patient-timeline__text {
  margin: 20px 0 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
}

.page-hasta-sureci .patient-timeline__list,
.patient-subpage .patient-timeline__list {
  position: relative;
  display: grid;
  gap: 22px;
}

.page-hasta-sureci .patient-timeline__list::before,
.patient-subpage .patient-timeline__list::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(139, 106, 61, .22);
}

.page-hasta-sureci .patient-timeline__item,
.patient-subpage .patient-timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.page-hasta-sureci .patient-timeline__number,
.patient-subpage .patient-timeline__number {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #c8a86f;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 106, 61, .22);
}

.page-hasta-sureci .patient-timeline__content,
.patient-subpage .patient-timeline__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 20px;
  padding: 22px;
  border-radius: 24px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .07);
}

.page-hasta-sureci .patient-timeline__item-title,
.patient-subpage .patient-timeline__item-title {
  margin: 0 0 8px;
  color: #2f2924;
  font-size: 20px;
}

.page-hasta-sureci .patient-timeline__item-text,
.patient-subpage .patient-timeline__item-text {
  margin: 0;
  color: rgba(47, 41, 36, .66);
  line-height: 1.65;
}

.page-hasta-sureci .patient-timeline__thumb,
.patient-subpage .patient-timeline__thumb {
  width: 132px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  background: #eee;
}

.page-hasta-sureci .patient-timeline__thumb img,
.patient-subpage .patient-timeline__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {

  .page-hasta-sureci .patient-timeline,
  .patient-subpage .patient-timeline {
    padding-bottom: 60px;
  }

  .page-hasta-sureci .patient-timeline__inner,
  .patient-subpage .patient-timeline__inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 0 18px;
  }

  .page-hasta-sureci .patient-timeline__header,
  .patient-subpage .patient-timeline__header {
    position: static;
  }

  .page-hasta-sureci .patient-timeline__content,
  .patient-subpage .patient-timeline__content {
    grid-template-columns: 1fr;
  }

  .page-hasta-sureci .patient-timeline__thumb,
  .patient-subpage .patient-timeline__thumb {
    width: 100%;
    height: 150px;
  }
}

.page-hasta-sureci .patient-support,
.patient-subpage .patient-support {
  padding: 0 0 88px;
  background: #fff;
}

.page-hasta-sureci .patient-support__inner,
.patient-subpage .patient-support__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hasta-sureci .patient-support__panel,
.patient-subpage .patient-support__panel {
  display: grid;
  grid-template-columns: minmax(280px, .32fr) minmax(0, .68fr);
  gap: 34px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 211, 173, .28), transparent 30%),
    linear-gradient(135deg, #faf7f2 0%, #fff 100%);
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 22px 60px rgba(40, 30, 20, .07);
}

.page-hasta-sureci .patient-support__header,
.patient-subpage .patient-support__header {
  max-width: 360px;
}

.page-hasta-sureci .patient-support__title,
.patient-subpage .patient-support__title {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.02;
  letter-spacing: -.03em;
  color: #2f2924;
}

.page-hasta-sureci .patient-support__text,
.patient-subpage .patient-support__text {
  margin: 18px 0 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
  font-size: 15px;
}

.page-hasta-sureci .patient-support__grid,
.patient-subpage .patient-support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-hasta-sureci .patient-support__card,
.patient-subpage .patient-support__card {
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(47, 41, 36, .07);
  box-shadow: 0 14px 34px rgba(40, 30, 20, .06);
}

.page-hasta-sureci .patient-support__thumb,
.patient-subpage .patient-support__thumb {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  background: #f3eee7;
}

.page-hasta-sureci .patient-support__thumb img,
.patient-subpage .patient-support__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hasta-sureci .patient-support__card-title,
.patient-subpage .patient-support__card-title {
  margin: 0 0 8px;
  color: #2f2924;
  font-size: 18px;
  font-weight: 600;
}

.page-hasta-sureci .patient-support__card-text,
.patient-subpage .patient-support__card-text {
  margin: 0;
  color: rgba(47, 41, 36, .65);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 900px) {

  .page-hasta-sureci .patient-support,
  .patient-subpage .patient-support {
    padding-bottom: 60px;
  }

  .page-hasta-sureci .patient-support__inner,
  .patient-subpage .patient-support__inner {
    padding: 0 18px;
  }

  .page-hasta-sureci .patient-support__panel,
  .patient-subpage .patient-support__panel {
    grid-template-columns: 1fr;
    padding: 22px;
    border-radius: 28px;
    gap: 28px;
  }

  .page-hasta-sureci .patient-support__header,
  .patient-subpage .patient-support__header {
    max-width: none;
  }

  .page-hasta-sureci .patient-support__grid,
  .patient-subpage .patient-support__grid {
    grid-template-columns: 1fr;
  }
}

.page-hasta-sureci .patient-followup,
.patient-subpage .patient-followup {
  padding: 0 0 88px;
  background: #fff;
}

.page-hasta-sureci .patient-followup__inner,
.patient-subpage .patient-followup__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
  gap: 34px;
  align-items: center;
  border-radius: 34px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
}

.page-hasta-sureci .patient-followup__media,
.patient-subpage .patient-followup__media {
  min-height: 300px;
  border-radius: 26px;
  overflow: hidden;
  background: #eee;
}

.page-hasta-sureci .patient-followup__image,
.patient-subpage .patient-followup__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hasta-sureci .patient-followup__title,
.patient-subpage .patient-followup__title {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  color: #2f2924;
}

.page-hasta-sureci .patient-followup__text,
.patient-subpage .patient-followup__text {
  margin: 16px 0 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
}

.page-hasta-sureci .patient-followup__steps,
.patient-subpage .patient-followup__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.page-hasta-sureci .patient-followup__step,
.patient-subpage .patient-followup__step {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(47, 41, 36, .07);
}

.page-hasta-sureci .patient-followup__step span,
.patient-subpage .patient-followup__step span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8b6a3d;
  font-weight: 900;
}

.page-hasta-sureci .patient-followup__step h3,
.patient-subpage .patient-followup__step h3 {
  margin: 0 0 8px;
  color: #2f2924;
  font-size: 17px;
}

.page-hasta-sureci .patient-followup__step p,
.patient-subpage .patient-followup__step p {
  margin: 0;
  color: rgba(47, 41, 36, .64);
  line-height: 1.55;
}

@media (max-width: 960px) {

  .page-hasta-sureci .patient-followup,
  .patient-subpage .patient-followup {
    padding-bottom: 60px;
  }

  .page-hasta-sureci .patient-followup__inner,
  .patient-subpage .patient-followup__inner {
    grid-template-columns: 1fr;
    padding: 20px;
    margin: 0 18px;
    border-radius: 26px;
  }

  .page-hasta-sureci .patient-followup__steps,
  .patient-subpage .patient-followup__steps {
    grid-template-columns: 1fr;
  }

  .page-hasta-sureci .patient-followup__media,
  .patient-subpage .patient-followup__media {
    min-height: 240px;
  }
}

/* 20.1 Patient Sub-pages Feature Panel */
.patient-subpage .patient-feature-panel {
  padding: 0 0 76px;
  background: #fff;
}

.patient-subpage .patient-feature-panel__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: minmax(0, .56fr) minmax(360px, .44fr);
  gap: 34px;
  align-items: stretch;
  border-radius: 36px;
  background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 20px 54px rgba(40, 30, 20, .07);
}

.patient-subpage .patient-feature-panel__inner.is-reverse {
  grid-template-columns: minmax(360px, .44fr) minmax(0, .56fr);
}

.patient-subpage .patient-feature-panel__inner.is-reverse .patient-feature-panel__media {
  order: -1;
}

.patient-subpage .patient-feature-panel__content {
  align-self: center;
  padding: 18px 10px;
}

.patient-subpage .patient-feature-panel__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 106, 61, .85);
  font-weight: 900;
}

.patient-subpage .patient-feature-panel__title {
  margin: 0;
  max-width: 680px;
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.04;
  letter-spacing: -.04em;
  color: #2f2924;
}

.patient-subpage .patient-feature-panel__text {
  margin: 18px 0 0;
  max-width: 620px;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
  font-size: 16px;
}

.patient-subpage .patient-feature-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.patient-subpage .patient-feature-panel__item {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(47, 41, 36, .08);
  color: #2f2924;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 8px 24px rgba(40, 30, 20, .04);
}

.patient-subpage .patient-feature-panel__media {
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #f3eee7;
  box-shadow: 0 18px 44px rgba(40, 30, 20, .10);
}

.patient-subpage .patient-feature-panel__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .patient-subpage .patient-feature-panel {
    padding-bottom: 56px;
  }

  .patient-subpage .patient-feature-panel__inner,
  .patient-subpage .patient-feature-panel__inner.is-reverse {
    grid-template-columns: 1fr;
    margin: 0 18px;
    padding: 20px;
    border-radius: 28px;
    gap: 22px;
  }

  .patient-subpage .patient-feature-panel__inner.is-reverse .patient-feature-panel__media {
    order: 0;
  }

  .patient-subpage .patient-feature-panel__content {
    padding: 4px 0 0;
  }

  .patient-subpage .patient-feature-panel__media {
    min-height: 280px;
    border-radius: 22px;
  }

  .patient-subpage .patient-feature-panel__list {
    display: grid;
    grid-template-columns: 1fr;
  }

  .patient-subpage .patient-feature-panel__item {
    border-radius: 18px;
  }
}

/* Global FAQ used instead */

/* =========================================================
   20. About Page (.page-hakkimda)
   ========================================================= */

.page-hakkimda .about-hero {
  padding: 112px 0 72px;
  min-height: 680px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 28%, rgba(232, 211, 173, .30), transparent 34%),
    linear-gradient(135deg, #faf7f2 0%, #ffffff 54%, #f4ede3 100%);
}

.page-hakkimda .about-hero__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: 54px;
}

.page-hakkimda .about-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 106, 61, .85);
  font-weight: 600;
}

.page-hakkimda .about-hero__title {
  margin: 0;
  color: #2f2924;
}

.page-hakkimda .about-hero__title span {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
  color: rgba(47, 41, 36, .52);
  letter-spacing: -.04em;
  font-weight: 600;
}

.page-hakkimda .about-hero__title strong {
  display: block;
  font-size: clamp(62px, 7vw, 112px);
  line-height: .88;
  font-weight: 600;
  letter-spacing: -.06em;
}

.page-hakkimda .about-hero__text {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(47, 41, 36, .72);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.7;
}

.page-hakkimda .about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-hakkimda .about-hero__chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(47, 41, 36, .09);
  color: rgba(47, 41, 36, .76);
  font-weight: 600;
  font-size: 13px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .03);
}

.page-hakkimda .about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.page-hakkimda .about-hero__visual {
  position: relative;
  min-height: 580px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(40, 30, 20, .14);
  background: #f3eee7;
}

.page-hakkimda .about-hero__photo-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hakkimda .about-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

.page-hakkimda .about-hero__badge {
  position: absolute;
  left: 32px;
  bottom: 32px;
  max-width: 280px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  color: #2f2924;
  box-shadow: 0 20px 50px rgba(40, 30, 20, .15);
  backdrop-filter: blur(12px);
  font-weight: 600;
  line-height: 1.3;
  border: 1px solid rgba(255, 255, 255, .4);
}

.page-hakkimda .about-hero__badge-sub {
  font-weight: 500;
  opacity: 0.8;
}

@media (max-width: 960px) {
  .page-hakkimda .about-hero {
    min-height: auto;
    padding: 42px 0 36px;
  }

  .page-hakkimda .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 18px;
  }

  .page-hakkimda .about-hero__content {
    order: 1;
  }

  .page-hakkimda .about-hero__visual {
    order: 2;
    display: block;
    min-height: 380px;
    height: 380px;
    margin-top: 4px;
    border-radius: 28px;
    overflow: hidden;
  }

  .page-hakkimda .about-hero__photo-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }

  .page-hakkimda .about-hero__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
  }

  .page-hakkimda .about-hero__actions {
    margin-top: 20px;
  }

  .page-hakkimda .about-hero__badge {
    left: 20px;
    bottom: 20px;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 520px) {
  .page-hakkimda .about-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .page-hakkimda .about-hero__visual {
    height: 340px;
    min-height: 340px;
  }
}

.page-hakkimda .about-bio {
  padding: 88px 0;
  background: #fff;
}

.page-hakkimda .about-bio__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(260px, .36fr) minmax(0, .64fr);
  gap: 56px;
  align-items: start;
}

.page-hakkimda .about-bio__title {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  color: #2f2924;
}

.page-hakkimda .about-bio__content p {
  margin: 0 0 18px;
  color: rgba(47, 41, 36, .70);
  font-size: 18px;
  line-height: 1.75;
}

.page-hakkimda .about-bio__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.page-hakkimda .about-bio__highlight {
  padding: 20px;
  border-radius: 22px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
  color: #2f2924;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}

.page-hakkimda .about-bio__document {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 24px;
  border-radius: 32px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
}

.page-hakkimda .about-bio__document-media {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(40, 30, 20, .08);
}

.page-hakkimda .about-bio__document-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hakkimda .about-bio__document-content h3 {
  margin: 0 0 8px;
  color: #2f2924;
  font-size: 20px;
}

.page-hakkimda .about-bio__document-content p {
  margin: 0;
  color: rgba(47, 41, 36, .66);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .page-hakkimda .about-bio {
    padding: 56px 0;
  }

  .page-hakkimda .about-bio__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 18px;
  }

  .page-hakkimda .about-bio__highlights {
    grid-template-columns: 1fr;
  }

  .page-hakkimda .about-bio__document {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  .page-hakkimda .about-bio__document-media {
    max-width: none;
  }
}

.page-hakkimda .about-timeline {
  padding: 0 0 88px;
  background: #fff;
}

.page-hakkimda .about-timeline__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 56px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 10%, rgba(232, 211, 173, .34), transparent 28%),
    linear-gradient(135deg, #faf7f2 0%, #ffffff 100%);
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 24px 70px rgba(40, 30, 20, .07);
}

.page-hakkimda .about-timeline__header {
  max-width: 760px;
  margin-bottom: 34px;
}

.page-hakkimda .about-timeline__intro {
  margin: 14px 0 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
}

.page-hakkimda .about-timeline__title {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  color: #2f2924;
}

.page-hakkimda .about-timeline__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.page-hakkimda .about-timeline__item {
  grid-column: span 2;
  position: relative;
  min-height: 190px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(47, 41, 36, .07);
  box-shadow: 0 12px 30px rgba(40, 30, 20, .05);
}

.page-hakkimda .about-timeline__item--wide {
  grid-column: span 3;
}

.page-hakkimda .about-timeline__item::before {
  content: "";
  width: 42px;
  height: 3px;
  display: block;
  margin-bottom: 18px;
  border-radius: 999px;
  background: #c8a86f;
}

.page-hakkimda .about-timeline__year {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8b6a3d;
  font-weight: 900;
  font-size: 18px;
}

.page-hakkimda .about-timeline__text {
  margin: 0;
  color: rgba(47, 41, 36, .66);
  line-height: 1.6;
  font-size: 14px;
}

@media (max-width: 960px) {
  .page-hakkimda .about-timeline {
    padding-bottom: 60px;
  }

  .page-hakkimda .about-timeline__inner {
    margin: 0 18px;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .page-hakkimda .about-timeline__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-hakkimda .about-timeline__item,
  .page-hakkimda .about-timeline__item--wide {
    grid-column: auto;
    min-height: auto;
  }
}

.page-hakkimda .about-approach {
  padding: 0 0 88px;
  background: #fff;
}

.page-hakkimda .about-approach__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 42px;
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, .62fr);
  gap: 48px;
  align-items: start;
  border-radius: 42px;
  background: #2f2924;
  color: #fff;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .15);
}

.page-hakkimda .about-approach__main {
  display: flex;
  flex-direction: column;
}

.page-hakkimda .about-approach__title {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
  color: #fff;
}

.page-hakkimda .about-approach__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  font-size: 15px;
}

.page-hakkimda .about-approach__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.page-hakkimda .about-approach__card {
  padding: 16px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: background .3s ease;
}

.page-hakkimda .about-approach__thumb {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 7;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, .08);
}

.page-hakkimda .about-approach__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .85;
}

.page-hakkimda .about-approach__card:hover {
  background: rgba(255, 255, 255, .08);
}

.page-hakkimda .about-approach__card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 17px;
  padding: 0 4px;
}

.page-hakkimda .about-approach__card p {
  margin: 0;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
  font-size: 13px;
  padding: 0 4px 4px;
}

@media (max-width: 900px) {
  .page-hakkimda .about-approach {
    padding-bottom: 60px;
  }

  .page-hakkimda .about-approach__inner {
    grid-template-columns: 1fr;
    margin: 0 18px;
    padding: 42px 24px;
    border-radius: 30px;
  }
}

@media (max-width: 640px) {
  .page-hakkimda .about-approach__grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   İLETİŞİM SAYFASI (page-iletisim)
   ========================================================= */

.page-iletisim .contact-hero,
.page-sss .contact-hero {
  padding: 108px 0 64px;
  min-height: 520px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 28%, rgba(232, 211, 173, .24), transparent 34%),
    linear-gradient(135deg, #faf7f2 0%, #fff 62%, #f4ede3 100%);
}

.page-iletisim .contact-hero__inner,
.page-sss .contact-hero__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  gap: 38px;
  align-items: center;
  width: 100%;
}

.page-iletisim .contact-hero__eyebrow,
.page-sss .contact-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 106, 61, .85);
  font-weight: 600;
}

.page-iletisim .contact-hero__title,
.page-sss .contact-hero__title {
  margin: 0;
  font-size: clamp(44px, 5vw, 74px);
  line-height: .96;
  letter-spacing: -.05em;
  color: #2f2924;
}

.page-iletisim .contact-hero__text,
.page-sss .contact-hero__text {
  max-width: 700px;
  margin: 20px 0 0;
  color: rgba(47, 41, 36, .72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.7;
}

.page-iletisim .contact-hero__actions,
.page-sss .contact-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.page-iletisim .contact-hero__visual,
.page-sss .contact-hero__visual {
  min-height: 380px;
  border-radius: 32px;
  overflow: hidden;
  background: #f3eee7;
  box-shadow: 0 20px 54px rgba(40, 30, 20, .10);
  position: relative;
}

.page-iletisim .contact-hero__image,
.page-sss .contact-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

@media (max-width: 900px) {

  .page-iletisim .contact-hero,
  .page-sss .contact-hero {
    padding: 104px 0 42px;
    min-height: auto;
  }

  .page-iletisim .contact-hero__inner,
  .page-sss .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 18px;
  }

  .page-iletisim .contact-hero__title,
  .page-sss .contact-hero__title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .page-iletisim .contact-hero__visual,
  .page-sss .contact-hero__visual {
    min-height: 280px;
  }
}

/* Harita Alanı */
.page-iletisim .contact-map {
  padding: 0 0 56px;
  background: #fff;
}

.page-iletisim .contact-map__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

.page-iletisim .contact-map__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-iletisim .contact-map__eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(139, 106, 61, .85);
  font-weight: 600;
}

.page-iletisim .contact-map__title {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
  color: #2f2924;
}

.page-iletisim .contact-map__text {
  margin: 14px 0 0;
  color: rgba(47, 41, 36, .68);
  line-height: 1.7;
}

.page-iletisim .contact-map__frame {
  overflow: hidden;
  min-height: 560px;
  border-radius: 36px;
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 22px 60px rgba(40, 30, 20, .08);
  background: #f3eee7;
}

.page-iletisim .contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 560px;
  border: 0;
}

@media (max-width: 768px) {
  .page-iletisim .contact-map {
    padding-bottom: 44px;
  }

  .page-iletisim .contact-map__inner {
    padding: 0 18px;
  }

  .page-iletisim .contact-map__frame {
    min-height: 360px;
    border-radius: 26px;
  }

  .page-iletisim .contact-map__frame iframe {
    height: 360px;
  }
}

/* İletişim Bilgileri Grid */
.page-iletisim .contact-info {
  padding: 0 0 88px;
  background: #fff;
}

.page-iletisim .contact-info__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

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

.page-iletisim .contact-info__card {
  padding: 24px;
  border-radius: 26px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
}

.page-iletisim .contact-info__label {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(47, 41, 36, .48);
  font-weight: 900;
}

.page-iletisim .contact-info__value,
.page-iletisim .contact-info__link {
  color: #2f2924;
  font-weight: 600;
  line-height: 1.55;
  text-decoration: none;
  font-size: 15px;
}

.page-iletisim .contact-info__link:hover {
  color: #8b6a3d;
}

@media (max-width: 1000px) {
  .page-iletisim .contact-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-iletisim .contact-info {
    padding-bottom: 56px;
  }

  .page-iletisim .contact-info__inner {
    padding: 0 18px;
  }

  .page-iletisim .contact-info__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SSS SAYFASI (page-sss)
   ========================================================= */

/* Hub Layout */
.page-sss .faq-hub {
  padding: 58px 0 88px;
  background: #fff;
}

.page-sss .faq-hub__inner {
  max-width: var(--container, 1180px);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.page-sss .faq-categories {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 18px 48px rgba(40, 30, 20, .06);
}

.page-sss .faq-categories__brand {
  padding-bottom: 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(47, 41, 36, .08);
}

.page-sss .faq-categories__brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-sss .faq-categories__logo {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  object-fit: contain;
  border-radius: 12px;
  background: #faf7f2;
  padding: 4px;
}

.page-sss .faq-categories__brand strong {
  display: block;
  color: #2f2924;
  font-size: 18px;
  line-height: 1.25;
}

.page-sss .faq-categories__brand span {
  display: block;
  margin-top: 8px;
  color: rgba(47, 41, 36, .62);
  line-height: 1.55;
  font-size: 14px;
}

.page-sss .faq-categories__list {
  display: grid;
  gap: 8px;
}

.page-sss .faq-category {
  width: 100%;
  min-height: 50px;
  padding: 8px 16px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #2f2924;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-sss .faq-category__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3e7d3;
  color: #8b6a3d;
  transition: all .2s ease;
}

.page-sss .faq-category__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.page-sss .faq-category.is-active {
  background: #2f2924;
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 41, 36, .18);
}

.page-sss .faq-category.is-active .faq-category__icon {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.page-sss .faq-category:hover:not(.is-active) {
  background: #faf7f2;
}

.page-sss .faq-category__label {
  white-space: nowrap;
}

.page-sss .faq-panel {
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(47, 41, 36, .08);
  box-shadow: 0 18px 48px rgba(40, 30, 20, .06);
  height: auto;
  max-height: none;
  overflow: visible;
}

.page-sss .faq-list {
  display: grid;
  gap: 12px;
  height: auto;
  max-height: none;
  overflow: visible;
}

.page-sss .faq-item {
  border: 1px solid rgba(47, 41, 36, .08);
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: all .3s ease;
  height: auto;
  max-height: none;
}

.page-sss .faq-item.is-open {
  border-color: rgba(139, 106, 61, .32);
  background: #fffdf9;
}

.page-sss .faq-item.is-hidden {
  display: none;
}

.page-sss .faq-item__button {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: #2f2924;
  font: inherit;
  position: relative;
}

.page-sss .faq-item__button::after {
  display: none;
}

.page-sss .faq-item__question {
  display: block;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.32;
  font-weight: 900;
}

.page-sss .faq-item__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3e7d3;
  color: #8b6a3d;
  font-weight: 900;
  font-size: 18px;
  transition: all .3s ease;
}

.page-sss .faq-item__icon::after {
  display: none;
}

.page-sss .faq-item.is-open .faq-item__icon {
  background: #2f2924;
  color: #fff;
  transform: none;
}

.page-sss .faq-item__answer {
  height: auto;
  max-height: none;
  display: none;
  padding: 0 24px 24px;
}

.page-sss .faq-item.is-open .faq-item__answer {
  display: block;
}

.page-sss .faq-item__answer p {
  margin: 0;
  max-width: 820px;
  color: rgba(47, 41, 36, .68);
  line-height: 1.75;
  font-size: 16px;
}

@media (max-width: 900px) {
  .page-sss .faq-hub {
    padding: 42px 0 96px;
  }

  .page-sss .faq-hub__inner {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .page-sss .faq-categories {
    position: static;
    padding: 18px;
    border-radius: 24px;
    overflow: hidden;
  }

  .page-sss .faq-categories__list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    padding-bottom: 12px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .page-sss .faq-category {
    flex: 0 0 auto;
    width: auto;
    min-height: 44px;
    white-space: nowrap;
    scroll-snap-align: start;
    padding: 8px 16px;
  }

  .page-sss .faq-panel {
    padding: 14px;
    border-radius: 24px;
    overflow: visible;
  }
}

@media (max-width: 640px) {
  .page-sss .faq-item__button {
    padding: 18px;
  }

  .page-sss .faq-item__answer {
    padding: 0 18px 18px;
  }
}

/* =========================================================
   14. ARTICLE DETAIL PAGE (page-yazi-detay)
   ========================================================= */

.page-yazi-detay .article-hero {
  padding: 126px 0 68px;
  background:
    radial-gradient(circle at 82% 28%, rgba(232, 211, 173, .24), transparent 34%),
    linear-gradient(135deg, #faf7f2 0%, #fff 62%, #f4ede3 100%);
}

.page-yazi-detay .article-hero__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-yazi-detay .article-hero__meta {
  display: inline-flex;
  gap: 10px;
  margin-bottom: 22px;
}

.page-yazi-detay .article-hero__category,
.page-yazi-detay .article-hero__date {
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(47, 41, 36, .08);
  color: #8b6a3d;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-yazi-detay .article-hero__title {
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .96;
  letter-spacing: -.05em;
  color: #1a1612;
}

.page-yazi-detay .article-hero__text {
  max-width: 780px;
  margin: 26px auto 0;
  color: rgba(47, 41, 36, .75);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.page-yazi-detay .article-hero__actions {
  margin-top: 36px;
}

.page-yazi-detay .article-cover {
  padding: 0 0 86px;
  background: #fff;
}

.page-yazi-detay .article-cover__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-yazi-detay .article-cover__media {
  aspect-ratio: 21/9;
  min-height: 480px;
  border-radius: 42px;
  overflow: hidden;
  background: #f3eee7;
  box-shadow: 0 32px 80px rgba(40, 30, 20, .1);
}

.page-yazi-detay .article-cover__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-yazi-detay .article-content {
  padding: 0 0 104px;
  background: #fff;
}

.page-yazi-detay .article-content__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-yazi-detay .article-content__body {
  color: rgba(47, 41, 36, .78);
  font-size: 19px;
  line-height: 1.85;
}

.page-yazi-detay .article-content__lead {
  font-size: 22px;
  font-weight: 500;
  color: #1a1612;
  margin-bottom: 34px;
  border-left: 3px solid #8b6a3d;
  padding-left: 28px;
}

.page-yazi-detay .article-content__list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page-yazi-detay .article-content__list li {
  position: relative;
  padding-left: 32px;
}

.page-yazi-detay .article-content__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: #8b6a3d;
}

.page-yazi-detay .related-articles {
  padding: 96px 0 110px;
  background: #fcfaf7;
  border-top: 1px solid rgba(47, 41, 36, .06);
}

.page-yazi-detay .related-articles__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-yazi-detay .related-articles .section-title {
  margin-bottom: 48px;
}

.page-yazi-detay .blog-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

@media (max-width: 900px) {
  .page-yazi-detay .article-hero {
    padding: 96px 0 52px;
  }

  .page-yazi-detay .article-cover__media {
    min-height: 320px;
    border-radius: 32px;
  }

  .page-yazi-detay .blog-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   15. PATIENT GUIDE CARD (page-hasta-sureci)
   ========================================================= */

.page-hasta-sureci .patient-guide-cta {
  padding: 60px 0 20px;
}

.page-hasta-sureci .patient-guide-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 48px 60px;
  border-radius: 42px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .06);
  position: relative;
  overflow: hidden;
}

.page-hasta-sureci .patient-guide-card:before {
  content: "PDF";
  position: absolute;
  right: -20px;
  top: -20px;
  font-size: 140px;
  font-weight: 900;
  color: rgba(47, 41, 36, .03);
  pointer-events: none;
}

.page-hasta-sureci .patient-guide-card__content {
  flex: 1;
}

.page-hasta-sureci .patient-guide-card__eyebrow {
  display: block;
  color: #8b6a3d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hasta-sureci .patient-guide-card__title {
  margin: 0 0 14px;
  font-size: 32px;
  letter-spacing: -.03em;
  color: #1a1612;
}

.page-hasta-sureci .patient-guide-card__text {
  margin: 0;
  max-width: 580px;
  color: rgba(47, 41, 36, .7);
  font-size: 16px;
  line-height: 1.7;
}

.page-hasta-sureci .patient-guide-card__actions {
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .page-hasta-sureci .patient-guide-card {
    flex-direction: column;
    text-align: center;
    padding: 42px 32px;
    gap: 28px;
  }

  .page-hasta-sureci .patient-guide-card__text {
    margin: 0 auto;
  }
}




/* =========================================================
   18. NAV PDF BADGE
   ========================================================= */

.nav-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #2f2924;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1;
}

/* revision: thinner headings & less cramped titles */
h1, h2, .section-title h2, .md-hero-content h1, .md-hero-content h2,
.page-hero-content h1, .patient-hero__title, .about-hero__title strong {
  font-weight: 600 !important;
  letter-spacing: -0.03em;
}
.md-hero-content h1,
.md-hero-content h2 {
  line-height: 1.12;
  margin-bottom: 18px;
}
.md-hero-content p {
  margin-top: 4px;
}

.about-hero__subtitle {
  margin: 0 0 14px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #6b5a45;
}

/* =========================================================
   TALEP 20260827 — header overlay, logo, BA pairs, gallery
   ========================================================= */

.logo {
  min-width: 0;
  gap: 12px;
}

.logo .logo-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  background: #f6f1ea;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.logo-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.05;
  white-space: nowrap;
  color: #111;
}

.logo-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a7358;
  white-space: nowrap;
}

body:has(.md-hero) .topbar,
body:has(.procedure-hero) .topbar {
  background: linear-gradient(to bottom, rgba(12, 10, 8, .42), rgba(12, 10, 8, 0));
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}

body:has(.md-hero) .topbar.is-scrolled,
body:has(.procedure-hero) .topbar.is-scrolled {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

body:has(.md-hero) .topbar:not(.is-scrolled) .logo-text strong,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .logo-text strong,
body:has(.md-hero) .topbar:not(.is-scrolled) .nav > a,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .nav > a,
body:has(.md-hero) .topbar:not(.is-scrolled) .has-menu > a,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .has-menu > a {
  color: #fff;
}

body:has(.md-hero) .topbar:not(.is-scrolled) .logo-text small,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .logo-text small {
  color: rgba(255, 255, 255, .78);
}

body:has(.md-hero) .topbar:not(.is-scrolled) .hamburger i,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .hamburger i {
  background: #fff;
}

body:has(.md-hero) .topbar:not(.is-scrolled) .lang-switch,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .lang-switch {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
}

body:has(.md-hero) .topbar:not(.is-scrolled) .header-whatsapp,
body:has(.procedure-hero) .topbar:not(.is-scrolled) .header-whatsapp {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .7);
}

@media (max-width: 1100px) {
  body:has(.md-hero) .topbar:not(.is-scrolled) .nav > a,
  body:has(.procedure-hero) .topbar:not(.is-scrolled) .nav > a,
  body:has(.md-hero) .topbar:not(.is-scrolled) .has-menu > a,
  body:has(.procedure-hero) .topbar:not(.is-scrolled) .has-menu > a {
    color: #111;
  }
}

@media (max-width: 700px) {
  .logo-text strong {
    display: block;
    font-size: 16px;
  }

  .logo-text small {
    display: none;
  }

  .logo .logo-mark {
    width: 40px;
    height: 40px;
  }
}

.md-gallery-grid {
  grid-template-columns: .72fr 1.28fr;
}

.md-gallery-main {
  min-height: 720px;
}

.md-gallery-right {
  grid-template-rows: 280px 1fr;
}

.md-gallery-small {
  min-height: 280px;
}

.md-gallery-wide {
  min-height: 430px;
}

.md-strip-card--face img {
  object-position: center 28%;
}

.results-case--pair {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  min-width: 320px;
}

.results-case__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #111;
}

.results-case__shot {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.results-case__shot .results-case__open {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #111;
  cursor: zoom-in;
}

.results-case__shot img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
}

.results-case--pair:hover img,
.results-case__shot:hover img {
  transform: scale(1.06);
}

.results-case__shot figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.results-case--pair .results-case__body {
  padding: 18px 18px 20px;
}

.results-case--pair .results-case__badge {
  position: static;
  display: inline-flex;
  margin-bottom: 10px;
}

.results-case--pair .results-case__controls {
  display: none;
}

.home-results-preview__grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 18px;
  -webkit-overflow-scrolling: touch;
}

.home-results-preview__grid .results-case--pair {
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: start;
}

.page-oncesi-sonrasi .results-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.page-oncesi-sonrasi .results-case--pair {
  min-width: 0;
}

.procedure-gallery-grid {
  grid-template-columns: .9fr 1.05fr 1.05fr;
  grid-template-rows: none;
  align-items: stretch;
}

.procedure-gallery-large {
  grid-row: auto;
}

.procedure-gallery-card.is-pair {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #fff;
}

.procedure-gallery-card.is-pair:after {
  display: none;
}

.procedure-gallery-card.is-pair .ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: #111;
  flex: 1;
}

.procedure-gallery-card.is-pair .ba-pair figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.procedure-gallery-card.is-pair .ba-pair .procedure-gallery-trigger {
  height: 240px;
}

.procedure-gallery-large.is-pair .ba-pair .procedure-gallery-trigger {
  height: 220px;
}

.procedure-gallery-card.is-pair .ba-pair img {
  height: 100%;
  object-fit: cover;
}

.procedure-gallery-card.is-pair .ba-pair figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.procedure-gallery-card.is-pair .procedure-gallery-content {
  position: static;
  color: #171717;
  pointer-events: auto;
  padding: 16px 18px 18px;
}

.procedure-gallery-card.is-pair .procedure-gallery-kicker {
  color: var(--gold);
  margin-bottom: 6px;
}

.procedure-gallery-card.is-pair .procedure-gallery-content strong {
  color: #171717;
  font-size: 17px;
  line-height: 1.35;
  letter-spacing: -.03em;
  margin: 0;
}

.page-hakkimda .about-bio__document {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  padding: 28px;
}

.page-hakkimda .about-bio__document-media img {
  max-height: none;
}

.home-certificate {
  padding: 40px 0 80px;
}

.home-certificate__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 40px;
  align-items: center;
  padding: 36px;
  border-radius: 36px;
  background: #faf7f2;
  border: 1px solid rgba(47, 41, 36, .08);
}

.home-certificate__media {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(40, 30, 20, .08);
}

.home-certificate__media img {
  width: 100%;
  height: auto;
  display: block;
}

.home-certificate h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
}

.page-hasta-sureci .patient-itinerary .patient-summary__inner,
.patient-itinerary .patient-summary__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: visible;
  gap: 0;
}

.page-hasta-sureci .patient-itinerary header {
  grid-column: 1 / -1;
  padding: 22px 22px 8px;
  margin-bottom: 0 !important;
}

.page-hasta-sureci .patient-itinerary .patient-summary__item {
  padding: 16px 16px 22px;
}

.page-hasta-sureci .patient-itinerary .patient-summary__title {
  font-size: 15px;
}

.page-hasta-sureci .patient-itinerary .patient-summary__text {
  font-size: 13px;
  line-height: 1.45;
}

.surgery-list__image--ethnic-nose {
  object-position: 52% 46%;
}

@media (max-width: 1000px) {
  .md-gallery-grid {
    grid-template-columns: 1fr;
  }

  .page-oncesi-sonrasi .results-gallery__grid,
  .procedure-gallery-grid,
  .home-certificate__inner,
  .page-hakkimda .about-bio__document,
  .page-hasta-sureci .patient-itinerary .patient-summary__inner {
    grid-template-columns: 1fr;
  }

  .procedure-gallery-card.is-pair .ba-pair .procedure-gallery-trigger,
  .procedure-gallery-large.is-pair .ba-pair .procedure-gallery-trigger {
    height: 200px;
  }
}

